From f6ff36da3d47c75a4db0f81410d38549242e6354 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 26 Jul 2024 13:50:38 -0700 Subject: [PATCH 01/67] Update default RK methods by order --- include/arkode/arkode_arkstep.h | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/include/arkode/arkode_arkstep.h b/include/arkode/arkode_arkstep.h index f7a6f112f5..960839a805 100644 --- a/include/arkode/arkode_arkstep.h +++ b/include/arkode/arkode_arkstep.h @@ -36,31 +36,33 @@ extern "C" { /* explicit */ static const int ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; -static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_HEUN_EULER_2_1_2; +// TODO(SBR): replace with FSAL Ralston method +static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_EULER_2_1_2; static const int ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; -static const int ARKSTEP_DEFAULT_ERK_4 = ARKODE_ZONNEVELD_5_3_4; -static const int ARKSTEP_DEFAULT_ERK_5 = ARKODE_CASH_KARP_6_4_5; -static const int ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_8_5_6; +static const int ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; +// TODO(SBR): Consider https://doi.org/10.1016/j.camwa.2011.06.002. Needs extension to quad precision +static const int ARKSTEP_DEFAULT_ERK_5 = ARKODE_DORMAND_PRINCE_7_4_5; +static const int ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6; static const int ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7; -static const int ARKSTEP_DEFAULT_ERK_8 = ARKODE_FEHLBERG_13_7_8; +static const int ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8; static const int ARKSTEP_DEFAULT_ERK_9 = ARKODE_VERNER_16_8_9; /* implicit */ static const int ARKSTEP_DEFAULT_DIRK_1 = ARKODE_BACKWARD_EULER_1_1; -static const int ARKSTEP_DEFAULT_DIRK_2 = ARKODE_SDIRK_2_1_2; -static const int ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ARK324L2SA_DIRK_4_2_3; -static const int ARKSTEP_DEFAULT_DIRK_4 = ARKODE_SDIRK_5_3_4; -static const int ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ARK548L2SA_DIRK_8_4_5; +static const int ARKSTEP_DEFAULT_DIRK_2 = ARKODE_ARK2_DIRK_3_1_2; +static const int ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ESDIRK325L2SA_5_2_3; +static const int ARKSTEP_DEFAULT_DIRK_4 = ARKODE_ESDIRK436L2SA_6_3_4; +static const int ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ESDIRK547L2SA2_7_4_5; /* ImEx */ static const int ARKSTEP_DEFAULT_ARK_ETABLE_2 = ARKODE_ARK2_ERK_3_1_2; static const int ARKSTEP_DEFAULT_ARK_ETABLE_3 = ARKODE_ARK324L2SA_ERK_4_2_3; -static const int ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK436L2SA_ERK_6_3_4; -static const int ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SA_ERK_8_4_5; +static const int ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK437L2SA_ERK_7_3_4; +static const int ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SAb_ERK_8_4_5; static const int ARKSTEP_DEFAULT_ARK_ITABLE_2 = ARKODE_ARK2_DIRK_3_1_2; static const int ARKSTEP_DEFAULT_ARK_ITABLE_3 = ARKODE_ARK324L2SA_DIRK_4_2_3; -static const int ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK436L2SA_DIRK_6_3_4; -static const int ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SA_DIRK_8_4_5; +static const int ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK437L2SA_DIRK_7_3_4; +static const int ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SAb_DIRK_8_4_5; /* ------------------- * Exported Functions From 2bc4fb07883a7f1004c6798980521ee16e9ca052 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 26 Jul 2024 16:06:30 -0700 Subject: [PATCH 02/67] Add 5th order ERK of Tsitouras --- include/arkode/arkode_arkstep.h | 3 +- include/arkode/arkode_butcher_erk.h | 3 +- src/arkode/arkode_butcher_erk.def | 53 +++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+), 3 deletions(-) diff --git a/include/arkode/arkode_arkstep.h b/include/arkode/arkode_arkstep.h index 960839a805..c67d81d329 100644 --- a/include/arkode/arkode_arkstep.h +++ b/include/arkode/arkode_arkstep.h @@ -40,8 +40,7 @@ static const int ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_EULER_2_1_2; static const int ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; static const int ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; -// TODO(SBR): Consider https://doi.org/10.1016/j.camwa.2011.06.002. Needs extension to quad precision -static const int ARKSTEP_DEFAULT_ERK_5 = ARKODE_DORMAND_PRINCE_7_4_5; +static const int ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5; static const int ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6; static const int ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7; static const int ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8; diff --git a/include/arkode/arkode_butcher_erk.h b/include/arkode/arkode_butcher_erk.h index c6c0373510..9b210038da 100644 --- a/include/arkode/arkode_butcher_erk.h +++ b/include/arkode/arkode_butcher_erk.h @@ -52,7 +52,8 @@ typedef enum ARKODE_FORWARD_EULER_1_1, ARKODE_RALSTON_EULER_2_1_2, ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2, - ARKODE_MAX_ERK_NUM = ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2 + ARKODE_TSITOURAS_7_4_5, + ARKODE_MAX_ERK_NUM = ARKODE_TSITOURAS_7_4_5 } ARKODE_ERKTableID; /* Accessor routine to load built-in ERK table */ diff --git a/src/arkode/arkode_butcher_erk.def b/src/arkode/arkode_butcher_erk.def index 4da35f9d07..94cb4d6068 100644 --- a/src/arkode/arkode_butcher_erk.def +++ b/src/arkode/arkode_butcher_erk.def @@ -50,6 +50,7 @@ ARKODE_ARK436L2SA_ERK_6_3_4* N ARKODE_ARK437L2SA_ERK_7_3_4* N ARKODE_SAYFY_ABURUB_6_3_4 N + ARKODE_TSITOURAS_7_4_5 Y ARKODE_CASH_KARP_6_4_5 Y ARKODE_FEHLBERG_6_4_5 Y ARKODE_DORMAND_PRINCE_7_4_5 Y @@ -424,6 +425,58 @@ ARK_BUTCHER_TABLE(ARKODE_SAYFY_ABURUB_6_3_4, { /* Sayfy-Aburub-4-3-ERK */ return B; }) +ARK_BUTCHER_TABLE(ARKODE_TSITOURAS_7_4_5, { /* Tsitouras-ERK */ + ARKodeButcherTable B = ARKodeButcherTable_Alloc(7, SUNTRUE); + B->q = 5; + B->p = 4; + B->A[1][0] = SUN_RCONST(0.161); + B->A[2][0] = SUN_RCONST(-0.008480655492356988544426874250230774675121); + B->A[2][1] = SUN_RCONST(0.3354806554923569885444268742502307746751); + B->A[3][0] = SUN_RCONST(2.897153057105493432130432594192938764925); + B->A[3][1] = SUN_RCONST(-6.359448489975074843148159912383825625953); + B->A[3][2] = SUN_RCONST(4.362295432869581411017727318190886861028); + B->A[4][0] = SUN_RCONST(5.325864828439256604428877920840511317836); + B->A[4][1] = SUN_RCONST(-11.74888356406282787774717033978577296189); + B->A[4][2] = SUN_RCONST(7.495539342889836208304604784564358155659); + B->A[4][3] = SUN_RCONST(-0.0924950663617552492565020793320719161135); + B->A[5][0] = SUN_RCONST(5.861455442946420028659251486982647890394); + B->A[5][1] = SUN_RCONST(-12.92096931784710929170611868178335939542); + B->A[5][2] = SUN_RCONST(8.159367898576158643180400794539253485182); + B->A[5][3] = SUN_RCONST(-0.07158497328140099722453054252582973869127); + B->A[5][4] = SUN_RCONST(-0.02826905039406838290900305721271224146718); + B->A[6][0] = SUN_RCONST(0.09646076681806522951816731316512876333712); + B->A[6][1] = SUN_RCONST(0.01); + B->A[6][2] = SUN_RCONST(0.479889650414499574775249532290596519913); + B->A[6][3] = SUN_RCONST(1.379008574103741893192274821856872770756); + B->A[6][4] = SUN_RCONST(-3.290069515436080679901047585711363850116); + B->A[6][5] = SUN_RCONST(2.324710524099773982415355918398765796109); + + B->b[0] = SUN_RCONST(0.09646076681806522951816731316512876333712); + B->b[1] = SUN_RCONST(0.01); + B->b[2] = SUN_RCONST(0.479889650414499574775249532290596519913); + B->b[3] = SUN_RCONST(1.379008574103741893192274821856872770756); + B->b[4] = SUN_RCONST(-3.290069515436080679901047585711363850116); + B->b[5] = SUN_RCONST(2.324710524099773982415355918398765796109); + B->b[6] = SUN_RCONST(0.0); + + B->d[0] = SUN_RCONST(0.09352374858189270663659270466268853095681); + B->d[1] = SUN_RCONST(0.008652883141566367609681000495464767703693); + B->d[2] = SUN_RCONST(0.4928930991314318681922688329502649219068); + B->d[3] = SUN_RCONST(1.140235412267858095755952327702024828167); + B->d[4] = SUN_RCONST(-2.329180192439364558618150528135494254063); + B->d[5] = SUN_RCONST(1.568875049316615520423655662325051205328); + B->d[6] = SUN_RCONST(0.025); + + B->c[0] = SUN_RCONST(0.0); + B->c[1] = SUN_RCONST(0.161); + B->c[2] = SUN_RCONST(0.327); + B->c[3] = SUN_RCONST(0.9); + B->c[4] = SUN_RCONST(0.9800255409045096857298102862870245954942); + B->c[5] = SUN_RCONST(1.0); + B->c[6] = SUN_RCONST(1.0); + return B; + }) + ARK_BUTCHER_TABLE(ARKODE_CASH_KARP_6_4_5, { /* Cash-Karp-ERK */ ARKodeButcherTable B = ARKodeButcherTable_Alloc(6, SUNTRUE); B->q = 5; From 6acabdc7b93648854dc10a4dbf8b54c757421ee1 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 26 Jul 2024 16:20:43 -0700 Subject: [PATCH 03/67] Add FSAL 2nd order Ralston method --- include/arkode/arkode_arkstep.h | 4 ++-- include/arkode/arkode_butcher_erk.h | 1 + src/arkode/arkode_butcher_erk.def | 23 +++++++++++++++++++++++ 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/include/arkode/arkode_arkstep.h b/include/arkode/arkode_arkstep.h index c67d81d329..6124c4670d 100644 --- a/include/arkode/arkode_arkstep.h +++ b/include/arkode/arkode_arkstep.h @@ -36,8 +36,8 @@ extern "C" { /* explicit */ static const int ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; -// TODO(SBR): replace with FSAL Ralston method -static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_EULER_2_1_2; +//TODO(SBR): Check if this is better than ARKODE_HEUN_EULER_2_1_2 +static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2; static const int ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; static const int ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; static const int ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5; diff --git a/include/arkode/arkode_butcher_erk.h b/include/arkode/arkode_butcher_erk.h index 9b210038da..9e079c6a5a 100644 --- a/include/arkode/arkode_butcher_erk.h +++ b/include/arkode/arkode_butcher_erk.h @@ -52,6 +52,7 @@ typedef enum ARKODE_FORWARD_EULER_1_1, ARKODE_RALSTON_EULER_2_1_2, ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2, + ARKODE_RALSTON_3_1_2, ARKODE_TSITOURAS_7_4_5, ARKODE_MAX_ERK_NUM = ARKODE_TSITOURAS_7_4_5 } ARKODE_ERKTableID; diff --git a/src/arkode/arkode_butcher_erk.def b/src/arkode/arkode_butcher_erk.def index 94cb4d6068..e2337b8527 100644 --- a/src/arkode/arkode_butcher_erk.def +++ b/src/arkode/arkode_butcher_erk.def @@ -81,6 +81,29 @@ ARK_BUTCHER_TABLE(ARKODE_FORWARD_EULER_1_1, { /* Euler-ERK */ return B; }) +ARK_BUTCHER_TABLE(ARKODE_RALSTON_3_1_2, { /* Ralston-ERK */ + ARKodeButcherTable B = ARKodeButcherTable_Alloc(3, SUNTRUE); + B->q = 2; + B->p = 1; + + B->A[1][0] = SUN_RCONST(2.0)/SUN_RCONST(3.0); + B->A[2][0] = SUN_RCONST(1.0)/SUN_RCONST(4.0); + B->A[2][1] = SUN_RCONST(3.0)/SUN_RCONST(4.0); + + B->b[0] = SUN_RCONST(1.0)/SUN_RCONST(4.0); + B->b[1] = SUN_RCONST(3.0)/SUN_RCONST(4.0); + B->b[2] = SUN_RCONST(0.0); + + B->d[0] = SUN_RCONST(5.0)/SUN_RCONST(37.0); + B->d[1] = SUN_RCONST(2.0)/SUN_RCONST(3.0); + B->d[2] = SUN_RCONST(22.0)/SUN_RCONST(111.0); + + B->c[1] = SUN_RCONST(2.0)/SUN_RCONST(3.0); + B->c[2] = SUN_RCONST(1.0); + + return B; + }) + ARK_BUTCHER_TABLE(ARKODE_HEUN_EULER_2_1_2, { /* Heun-Euler-ERK */ ARKodeButcherTable B = ARKodeButcherTable_Alloc(2, SUNTRUE); B->q = 2; From c5aeea6f87bd8b8a9c557a95052071ea09cb25c4 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 26 Jul 2024 16:21:54 -0700 Subject: [PATCH 04/67] Add Ralston to table in def file --- src/arkode/arkode_butcher_erk.def | 1 + 1 file changed, 1 insertion(+) diff --git a/src/arkode/arkode_butcher_erk.def b/src/arkode/arkode_butcher_erk.def index e2337b8527..b7daadd20a 100644 --- a/src/arkode/arkode_butcher_erk.def +++ b/src/arkode/arkode_butcher_erk.def @@ -39,6 +39,7 @@ imeth QP --------------------------------------- ARKODE_FORWARD_EULER_1_1 Y + ARKODE_RALSTON_3_1_2 Y ARKODE_HEUN_EULER_2_1_2 Y ARKODE_RALSTON_EULER_2_1_2 Y ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2 Y From 609abba8ad5bbb5d7cde14ead93b379918066828 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 26 Jul 2024 16:27:28 -0700 Subject: [PATCH 05/67] Update Fortran interfaces --- src/arkode/fmod_int32/farkode_arkstep_mod.f90 | 26 +++++++++---------- src/arkode/fmod_int32/farkode_mod.f90 | 7 +++-- src/arkode/fmod_int64/farkode_arkstep_mod.f90 | 26 +++++++++---------- src/arkode/fmod_int64/farkode_mod.f90 | 7 +++-- 4 files changed, 36 insertions(+), 30 deletions(-) diff --git a/src/arkode/fmod_int32/farkode_arkstep_mod.f90 b/src/arkode/fmod_int32/farkode_arkstep_mod.f90 index cc0373f1eb..3708886004 100644 --- a/src/arkode/fmod_int32/farkode_arkstep_mod.f90 +++ b/src/arkode/fmod_int32/farkode_arkstep_mod.f90 @@ -27,27 +27,27 @@ module farkode_arkstep_mod ! DECLARATION CONSTRUCTS integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_2 = ARKODE_HEUN_EULER_2_1_2 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_4 = ARKODE_ZONNEVELD_5_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_5 = ARKODE_CASH_KARP_6_4_5 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_8_5_6 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_8 = ARKODE_FEHLBERG_13_7_8 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_9 = ARKODE_VERNER_16_8_9 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_1 = ARKODE_BACKWARD_EULER_1_1 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_2 = ARKODE_SDIRK_2_1_2 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ARK324L2SA_DIRK_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_4 = ARKODE_SDIRK_5_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ARK548L2SA_DIRK_8_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_2 = ARKODE_ARK2_DIRK_3_1_2 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ESDIRK325L2SA_5_2_3 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_4 = ARKODE_ESDIRK436L2SA_6_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ESDIRK547L2SA2_7_4_5 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_2 = ARKODE_ARK2_ERK_3_1_2 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_3 = ARKODE_ARK324L2SA_ERK_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK436L2SA_ERK_6_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SA_ERK_8_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK437L2SA_ERK_7_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SAb_ERK_8_4_5 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_2 = ARKODE_ARK2_DIRK_3_1_2 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_3 = ARKODE_ARK324L2SA_DIRK_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK436L2SA_DIRK_6_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SA_DIRK_8_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK437L2SA_DIRK_7_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SAb_DIRK_8_4_5 public :: FARKStepCreate public :: FARKStepReInit public :: FARKStepSetExplicit diff --git a/src/arkode/fmod_int32/farkode_mod.f90 b/src/arkode/fmod_int32/farkode_mod.f90 index 366867f40a..70e4d51066 100644 --- a/src/arkode/fmod_int32/farkode_mod.f90 +++ b/src/arkode/fmod_int32/farkode_mod.f90 @@ -362,7 +362,9 @@ module farkode_mod enumerator :: ARKODE_FORWARD_EULER_1_1 enumerator :: ARKODE_RALSTON_EULER_2_1_2 enumerator :: ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2 - enumerator :: ARKODE_MAX_ERK_NUM = ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2 + enumerator :: ARKODE_RALSTON_3_1_2 + enumerator :: ARKODE_TSITOURAS_7_4_5 + enumerator :: ARKODE_MAX_ERK_NUM = ARKODE_TSITOURAS_7_4_5 end enum integer, parameter, public :: ARKODE_ERKTableID = kind(ARKODE_ERK_NONE) public :: ARKODE_ERK_NONE, ARKODE_MIN_ERK_NUM, ARKODE_HEUN_EULER_2_1_2, ARKODE_BOGACKI_SHAMPINE_4_2_3, & @@ -371,7 +373,8 @@ module farkode_mod ARKODE_VERNER_8_5_6, ARKODE_FEHLBERG_13_7_8, ARKODE_KNOTH_WOLKE_3_3, ARKODE_ARK437L2SA_ERK_7_3_4, & ARKODE_ARK548L2SAb_ERK_8_4_5, ARKODE_ARK2_ERK_3_1_2, ARKODE_SOFRONIOU_SPALETTA_5_3_4, ARKODE_SHU_OSHER_3_2_3, & ARKODE_VERNER_9_5_6, ARKODE_VERNER_10_6_7, ARKODE_VERNER_13_7_8, ARKODE_VERNER_16_8_9, ARKODE_FORWARD_EULER_1_1, & - ARKODE_RALSTON_EULER_2_1_2, ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2, ARKODE_MAX_ERK_NUM + ARKODE_RALSTON_EULER_2_1_2, ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2, ARKODE_RALSTON_3_1_2, ARKODE_TSITOURAS_7_4_5, & + ARKODE_MAX_ERK_NUM public :: FARKodeButcherTable_LoadERK public :: FARKodeButcherTable_LoadERKByName public :: FARKodeButcherTable_ERKIDToName diff --git a/src/arkode/fmod_int64/farkode_arkstep_mod.f90 b/src/arkode/fmod_int64/farkode_arkstep_mod.f90 index cc0373f1eb..3708886004 100644 --- a/src/arkode/fmod_int64/farkode_arkstep_mod.f90 +++ b/src/arkode/fmod_int64/farkode_arkstep_mod.f90 @@ -27,27 +27,27 @@ module farkode_arkstep_mod ! DECLARATION CONSTRUCTS integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_2 = ARKODE_HEUN_EULER_2_1_2 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_4 = ARKODE_ZONNEVELD_5_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_5 = ARKODE_CASH_KARP_6_4_5 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_8_5_6 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_8 = ARKODE_FEHLBERG_13_7_8 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ERK_9 = ARKODE_VERNER_16_8_9 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_1 = ARKODE_BACKWARD_EULER_1_1 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_2 = ARKODE_SDIRK_2_1_2 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ARK324L2SA_DIRK_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_4 = ARKODE_SDIRK_5_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ARK548L2SA_DIRK_8_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_2 = ARKODE_ARK2_DIRK_3_1_2 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ESDIRK325L2SA_5_2_3 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_4 = ARKODE_ESDIRK436L2SA_6_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ESDIRK547L2SA2_7_4_5 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_2 = ARKODE_ARK2_ERK_3_1_2 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_3 = ARKODE_ARK324L2SA_ERK_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK436L2SA_ERK_6_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SA_ERK_8_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK437L2SA_ERK_7_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SAb_ERK_8_4_5 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_2 = ARKODE_ARK2_DIRK_3_1_2 integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_3 = ARKODE_ARK324L2SA_DIRK_4_2_3 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK436L2SA_DIRK_6_3_4 - integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SA_DIRK_8_4_5 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK437L2SA_DIRK_7_3_4 + integer(C_INT), parameter, public :: ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SAb_DIRK_8_4_5 public :: FARKStepCreate public :: FARKStepReInit public :: FARKStepSetExplicit diff --git a/src/arkode/fmod_int64/farkode_mod.f90 b/src/arkode/fmod_int64/farkode_mod.f90 index e627472572..cf37c6eb1c 100644 --- a/src/arkode/fmod_int64/farkode_mod.f90 +++ b/src/arkode/fmod_int64/farkode_mod.f90 @@ -362,7 +362,9 @@ module farkode_mod enumerator :: ARKODE_FORWARD_EULER_1_1 enumerator :: ARKODE_RALSTON_EULER_2_1_2 enumerator :: ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2 - enumerator :: ARKODE_MAX_ERK_NUM = ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2 + enumerator :: ARKODE_RALSTON_3_1_2 + enumerator :: ARKODE_TSITOURAS_7_4_5 + enumerator :: ARKODE_MAX_ERK_NUM = ARKODE_TSITOURAS_7_4_5 end enum integer, parameter, public :: ARKODE_ERKTableID = kind(ARKODE_ERK_NONE) public :: ARKODE_ERK_NONE, ARKODE_MIN_ERK_NUM, ARKODE_HEUN_EULER_2_1_2, ARKODE_BOGACKI_SHAMPINE_4_2_3, & @@ -371,7 +373,8 @@ module farkode_mod ARKODE_VERNER_8_5_6, ARKODE_FEHLBERG_13_7_8, ARKODE_KNOTH_WOLKE_3_3, ARKODE_ARK437L2SA_ERK_7_3_4, & ARKODE_ARK548L2SAb_ERK_8_4_5, ARKODE_ARK2_ERK_3_1_2, ARKODE_SOFRONIOU_SPALETTA_5_3_4, ARKODE_SHU_OSHER_3_2_3, & ARKODE_VERNER_9_5_6, ARKODE_VERNER_10_6_7, ARKODE_VERNER_13_7_8, ARKODE_VERNER_16_8_9, ARKODE_FORWARD_EULER_1_1, & - ARKODE_RALSTON_EULER_2_1_2, ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2, ARKODE_MAX_ERK_NUM + ARKODE_RALSTON_EULER_2_1_2, ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2, ARKODE_RALSTON_3_1_2, ARKODE_TSITOURAS_7_4_5, & + ARKODE_MAX_ERK_NUM public :: FARKodeButcherTable_LoadERK public :: FARKodeButcherTable_LoadERKByName public :: FARKodeButcherTable_ERKIDToName From 1d790fe5266c3a81b78435b8870305ceb32b9cf1 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 6 Sep 2024 16:24:06 -0700 Subject: [PATCH 06/67] Set the default ERKStep methods --- include/arkode/arkode_arkstep.h | 1 - include/arkode/arkode_erkstep.h | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/include/arkode/arkode_arkstep.h b/include/arkode/arkode_arkstep.h index 6124c4670d..5e491afb37 100644 --- a/include/arkode/arkode_arkstep.h +++ b/include/arkode/arkode_arkstep.h @@ -36,7 +36,6 @@ extern "C" { /* explicit */ static const int ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; -//TODO(SBR): Check if this is better than ARKODE_HEUN_EULER_2_1_2 static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2; static const int ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; static const int ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; diff --git a/include/arkode/arkode_erkstep.h b/include/arkode/arkode_erkstep.h index ed93a240b9..c8a5b883e6 100644 --- a/include/arkode/arkode_erkstep.h +++ b/include/arkode/arkode_erkstep.h @@ -33,13 +33,13 @@ extern "C" { /* Default Butcher tables for each order */ static const int ERKSTEP_DEFAULT_1 = ARKODE_FORWARD_EULER_1_1; -static const int ERKSTEP_DEFAULT_2 = ARKODE_HEUN_EULER_2_1_2; +static const int ERKSTEP_DEFAULT_2 = ARKODE_RALSTON_3_1_2; static const int ERKSTEP_DEFAULT_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; -static const int ERKSTEP_DEFAULT_4 = ARKODE_ZONNEVELD_5_3_4; -static const int ERKSTEP_DEFAULT_5 = ARKODE_CASH_KARP_6_4_5; -static const int ERKSTEP_DEFAULT_6 = ARKODE_VERNER_8_5_6; +static const int ERKSTEP_DEFAULT_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; +static const int ERKSTEP_DEFAULT_5 = ARKODE_TSITOURAS_7_4_5; +static const int ERKSTEP_DEFAULT_6 = ARKODE_VERNER_9_5_6; static const int ERKSTEP_DEFAULT_7 = ARKODE_VERNER_10_6_7; -static const int ERKSTEP_DEFAULT_8 = ARKODE_FEHLBERG_13_7_8; +static const int ERKSTEP_DEFAULT_8 = ARKODE_VERNER_13_7_8; static const int ERKSTEP_DEFAULT_9 = ARKODE_VERNER_16_8_9; /* ------------------- From 4fee262ff7d770c84dedb5b8ed31e45510ef5240 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 6 Sep 2024 16:53:27 -0700 Subject: [PATCH 07/67] Update swig --- src/arkode/fmod_int32/farkode_erkstep_mod.f90 | 10 +++++----- src/arkode/fmod_int64/farkode_erkstep_mod.f90 | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/arkode/fmod_int32/farkode_erkstep_mod.f90 b/src/arkode/fmod_int32/farkode_erkstep_mod.f90 index 291dc643d5..62e68e1227 100644 --- a/src/arkode/fmod_int32/farkode_erkstep_mod.f90 +++ b/src/arkode/fmod_int32/farkode_erkstep_mod.f90 @@ -27,13 +27,13 @@ module farkode_erkstep_mod ! DECLARATION CONSTRUCTS integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_1 = ARKODE_FORWARD_EULER_1_1 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_2 = ARKODE_HEUN_EULER_2_1_2 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_2 = ARKODE_RALSTON_3_1_2 integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_4 = ARKODE_ZONNEVELD_5_3_4 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_5 = ARKODE_CASH_KARP_6_4_5 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_6 = ARKODE_VERNER_8_5_6 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_5 = ARKODE_TSITOURAS_7_4_5 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_6 = ARKODE_VERNER_9_5_6 integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_7 = ARKODE_VERNER_10_6_7 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_8 = ARKODE_FEHLBERG_13_7_8 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_8 = ARKODE_VERNER_13_7_8 integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_9 = ARKODE_VERNER_16_8_9 public :: FERKStepCreate public :: FERKStepReInit diff --git a/src/arkode/fmod_int64/farkode_erkstep_mod.f90 b/src/arkode/fmod_int64/farkode_erkstep_mod.f90 index 291dc643d5..62e68e1227 100644 --- a/src/arkode/fmod_int64/farkode_erkstep_mod.f90 +++ b/src/arkode/fmod_int64/farkode_erkstep_mod.f90 @@ -27,13 +27,13 @@ module farkode_erkstep_mod ! DECLARATION CONSTRUCTS integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_1 = ARKODE_FORWARD_EULER_1_1 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_2 = ARKODE_HEUN_EULER_2_1_2 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_2 = ARKODE_RALSTON_3_1_2 integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_4 = ARKODE_ZONNEVELD_5_3_4 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_5 = ARKODE_CASH_KARP_6_4_5 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_6 = ARKODE_VERNER_8_5_6 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_5 = ARKODE_TSITOURAS_7_4_5 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_6 = ARKODE_VERNER_9_5_6 integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_7 = ARKODE_VERNER_10_6_7 - integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_8 = ARKODE_FEHLBERG_13_7_8 + integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_8 = ARKODE_VERNER_13_7_8 integer(C_INT), parameter, public :: ERKSTEP_DEFAULT_9 = ARKODE_VERNER_16_8_9 public :: FERKStepCreate public :: FERKStepReInit From 045adb51fb56e5b01f28eef3ca95a7eb9e0e7e89 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 6 Sep 2024 17:11:51 -0700 Subject: [PATCH 08/67] Butcher docs fixes --- doc/arkode/guide/source/Butcher.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 0b7e401a56..82a06dcc1c 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -194,7 +194,7 @@ Accessible via the constant ``ARKODE_HEUN_EULER_2_1_2`` to Accessible via the string ``"ARKODE_HEUN_EULER_2_1_2"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the default 2nd order explicit method. +(primary method from :cite:p:`Runge:95`). .. math:: @@ -227,7 +227,7 @@ Accessible via the constant ``ARKODE_RALSTON_EULER_2_1_2`` to :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_RALSTON_EULER_2_1_2"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or -:c:func:`ARKodeButcherTable_LoadERKByName` +:c:func:`ARKodeButcherTable_LoadERKByName`. (primary method from :cite:p:`Ralston:62`). .. math:: @@ -261,7 +261,7 @@ Accessible via the constant ``ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2`` to :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or -:c:func:`ARKodeButcherTable_LoadERKByName` +:c:func:`ARKodeButcherTable_LoadERKByName`. (primary method from :cite:p:`Runge:95`). .. math:: From fb02b3ec43300619d0b884a40fc4870b02b1e56d Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Sat, 7 Sep 2024 20:53:33 -0700 Subject: [PATCH 09/67] Add Ralson method to docs --- doc/arkode/guide/source/Butcher.rst | 36 ++++++++++++++++++ .../figs/arkode/ralston_stab_region.png | Bin 0 -> 23525 bytes 2 files changed, 36 insertions(+) create mode 100644 doc/shared/figs/arkode/ralston_stab_region.png diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 82a06dcc1c..39ec9b9dba 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -181,6 +181,42 @@ This is the default 1st order explicit method (from :cite:p:`Euler:68`). Linear stability region for the forward Euler method. +.. _Butcher.Ralston: + +Ralston-3-1-2 +^^^^^^^^^^^^^ + +.. index:: Ralston-3-1-2 ERK method + +Accessible via the constant ``ARKODE_RALSTON_3_1_2`` to +:c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or +:c:func:`ARKodeButcherTable_LoadERK`. +Accessible via the string ``"ARKODE_RALSTON_3_1_2"`` to +:c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or +:c:func:`ARKodeButcherTable_LoadERKByName`. +This is the default 2nd order explicit method +(primary method from :cite:p:`Ralston:62`). + +.. math:: + + \renewcommand{\arraystretch}{1.5} + \begin{array}{r|cc} + 0 & 0 & 0 & 0 \\ + \frac{2}{3} & \frac{2}{3} & 0 & 0 \\ + 1 & \frac{1}{4} & \frac{3}{4} & 0 \\ + \hline + 2 & \frac{1}{4} & \frac{3}{4} & 0 \\ + 1 & \frac{5}{37} & \frac{2}{3} & \frac{22}{111} + \end{array} + +.. figure:: /figs/arkode/ralston_stab_region.png + :scale: 50 % + :align: center + + Linear stability region for the Ralston method. The method's + region is outlined in blue; the embedding's region is in red. + + .. _Butcher.Heun_Euler: Heun-Euler-2-1-2 diff --git a/doc/shared/figs/arkode/ralston_stab_region.png b/doc/shared/figs/arkode/ralston_stab_region.png new file mode 100644 index 0000000000000000000000000000000000000000..d224603614b27c4cd9753f22de416073e2b529ce GIT binary patch literal 23525 zcmeFZWmr~gxGwr3D5azVBHf{YfOJa=f`Ej8gtXEE0#Yiaw1S|3fOL1KfPx?m(w!30 zA-SL7WUh7A*=z6f^Xwnn>zbDn{Jt^9`@T=z_j5nv^*v>|OE}~>C=}|Fg1odE3Wfd{ zg*q38bq;=G#7`9ke_`9nKX{5lkrE;Qp_#|`z^71{jtX~WFc-10&QYHmFKf62zhZEd z(RNg~HFJDsurcNk(Haa`sU<8O;R?38F|{DhzCb!o%ulA-t-g_Kx2x9UneS?7btcdN=fe$K34M z$@BTxA(pa{8}P8+_0lm9;ct{S_68yRB}71thC(Hv|NrsB?d+lR-hH`x6?8rU!NFbj z(+(Bm9(xbx>>VAqjYCCAMvvUm_uGzF_mjkRo#Mss%<)GX z&D15tS~)uXDT+}omlF)?JQq6RwxY=>DdVD}2VoWCHP6dz#)O(Qd^}rZCOrt>ur1%q zvK}dY$E>o;^R(nju1Eix=U!DuobZ!VVb{&shgHrQDrw4b7*_`?S*m+~LziTFxW7|?R@&X&y=!YZ&Su|lkuB#^5ZO(s zv0_4c+31I{OIJupzBM(uP>*M6=Dg9qy7V(=`LwaZcA|D}ZZ0vKZu>UJxwXK1_jUb; zJF_O)^bRxk#-FPk=B0gdyK}fXIyx$ERpfc{?DOk*#rKD!-Xx@X_L0rhUhWgM9%fN= z_qw~gMcuaVQDHjxK3qG>&x&N%($v&s3tcOp2_ZFbSGDxE?9YtMn5%5CyN6 zV_JkeeYukD2)59DtDV0;4VRQ-Wune&@XZBze;yXk-PN)Q&&}`5tuswcO<>!*zj|R$ zgy4+E^Nku$jt{psH-Fqn^dB4?^g3QPn2Mox*0^^sLCg~lgx>kfa1<=u#M~U07LQ6q z;K|SI!a{D-gKF2UfKas7@82y4a^sqtii?Zc%<&2us6Dp3k@b31g6()7ADq{+s{b4i zx<3>`DcslWakxt<i}J+DR%eFBg0|zi*%uxusP_`}OPBYkXGsKEaZ-by2iU zn{#db9}ag{pPwG@9dh2D)J+>MFmC=V6NpDCRBYTF^6}P_(#QRoGJzzaqPyB|Zk5iZ zuQ2gDqHo@Ijg5`X7RBYz&aZz?T>WIGEAck6i~LrD_cS$s=02?Y@(L4HI+nyGeze}0 zl~-E{&II2rwI11hfk{QiXB8c9eenpj&Jn66Zs5N0_4_+!@ss@-_=sOEeMIJ9xqXt5 zY4>ND*6{d<2;QgjN)Mg%tv`&ES}&(L++Q6oIc&G}OcGJPdzVtgC4X~&wBjk8>`!M+ z+>J{qb`^SFr-u_-dHN6a^p18044S`vE4A!p5)>5V;o16KwWcYh?QOeGki{N$n?vGZ zrQ=lrJ40_CO#P|x3wRXec2iP2miqeRukgjlTJF^Fdky41%&XpPO}!hVrltnbgU|D5 zU#H|THmzo!zNqbZb&hV?xXVm%oRAZ_xTpK^!H($rQds=xs9s7(Ud8;!A3uKVu8!be z<(7VaadG%{ChFN8Z{dfDdr#3x40rpV%FiZ+imBlTWoKu%w%!rvd2-n6^89eMEOO}W z+qdrR?_y(Dy8C}5k#;~Bs}WAW8^hN=aP;MFp7ZU#7P{(6&&sjiRlh40k8O>N6648x ztDJ1gs;aAx%Ic1-BhLrEe(gHtOIpm6r&Dt0*!IqyH@gP6{VuAWrtD5^vUJK(dqjkV zO%}W#(0_inDt3DM(b{}0$HU5WbAzdVf7W&M`XrHfkKGTYBJ7&kTqbfBSq-_eS@sv$>gBW{QyWN_1sCn0dz2Qrn4fubrha zp|X*&B6AgSQ(`Hl58N_wf)V?RSt1)78_deF_vZ7mv$t<$-=VBvb#H2xz(a*@GB7hg z*HT;*{ye;&p4EZQTEtn~^Fw&8I!U>+rDfekqsx|M$J^`V&qDuedwcuUk+QX}#8)5h z?0jp!mzgzuJ6C5|h~nm>CL+$}P-^^whLXHH3JTqtV-V7a3*fSIkuzRn)stH!}rmkmAwH}9>+1lMD zPqds)ZW@1MIdtpK)NorC3FAKe+|FqHE$Bh1)li{n8+dDKT&>A>qEM~#$9`(~E>7Fp zh_S^9r*#~SJ)5Z6>JU~>Q`Y!&VY3#ipfXc*HdABO@Uiu>q1_ezIkxHP=_4=x^tXG= z^$otbdn-dT-4W5z(E?s4N21SngQ&&zg;gH}?2@ZC`d#X;?Ef7IPG0})^LX6nXK9#w z6=;75sqG_sdelx|sleIh#fg_6x?O)zDD9!4tQ;aVHuFkpM9OYu@aAgN&dZnQ$|N^# zhF!`?Pruhmcj+46{j@AnG-4tmaKu@!EM$Y_srqy8{&~lASB>fMjByml!{RMWB5L#Y zk0~AT@7^UTQ{Q?V!M%~_Po>8ESbUkCoxMaW^_<|P`>rULh%`v^x@ zDB0Xx&tBcCb?eE`>+4Kvk>@ znm*l56E`(CAIN^dv&1}na@+IwK^EnY!E{x6YyTUoEkjsP0%{1mQA4nuYmJl&pqC3t ze|C{dz%F52m`$t7DN8F)GtD9<%7XU>xJYJJ4w zqJ=^5PdXp;NncX^^-p9Wl!;d!#c4g5r)m27b!TO$sI^->u{!ZGWZlqxhf=kPjf`RI6WVlB;nv5R)cK+@~_{VLe7 z?MX3y8gW_uMs=uiA-O|-3^k~5FrE1p{O8XfS65fvQY%&S{mEDO2fM4+T0VzR2)>Pr zTiqBFl7Ns!Rc6+A@=0Ic4KIb9F&ugj7-)PsL4h z!8tW`bcSCOGeg2>M{+>4@G~1v&y#P#*GifdSZrDPpLU9tfj7=Hhq9}5g69P(=#<+T zL9C!Y-EUs_^qiw!##im(3krwIYS@?;q1AZ#4WbajBq{5l7z>MwtFfQ?wwzZd7SQtz zit4BBw=_<&6y7l{8LzFa4-08E-+PYx+n6@&uh(r{&<8uWFLv|hWTQRjL5^5x46^)zQ#=X2}( zSgH>m{5jg{#5}oxpHlhbilOgwGH#QWCwVogVmGc||IyKbS8%B(=5(p&cj5Ej6={L^ zQ-{BtYlKAuIxlIT+aMGdcH2%rK;NY*HWof-%iJ}dbm(=m;3XSMbqtnqaxhSryZOzK zij9qJcWok1%&9_e_^{OFqJ41CRHHvTJ{vnbB)9bOyX^yad5^G6mOt`YXDSQAHFxKR zKlG0!iso6!(c#k8?oZ>^Fm9*TymgvwAzZB!`IIRoh&tl3lXL0PUGQ5TESTw45zi5e z6Z5EalY3&M=K)r6Sh4U)7ZwbW9*(~Z($LP!41z}xpV2s&NBej3ypG$dnl-xk{j%Sl z;_UG`%(g%#$W)2M$k_Yr#Zv4fW<6Z2A?CRJ^TxUJSSD$h$Qjd!O`FTe$h3dF1+F{- z)oO8kBD2b;zLV&hU7R>)i%-vNuUQ9vB)8!(sMT9NuDLQS9Q5Op=pnfD(r3r9IAMYl ze(CVIxSVm#+sEy%A*$DNez4T2avJWP4Z6zH5ig!6A_f2nliEGuMA7<9@9wAT?Ck1Q z=(XEDig07eh^|+q@$Yu8SGjJP&EX`J5#XZ?z%6tj3sHQ7VE?lp@zsI46OH32+MNog zWlg6lAA*v{{Y&FDRR`D5q_9?>Pn;e~`7Nof4iznUWvZ>>9^ZF~^t*H|wFX_n$jAr~ zApLuq63Nq)DE-Y(Q&2yX3pyk_-=U$ldC^u!%0d!qn7MysO+MT?vxIuXA)tdUB{8 z07%MjJ3eZhQfqVV_Y)rfi&sA@i9k73`ho|-A2V|r07EMNH@zVVeNL!-*3hzh&ORf1 zEl+BkaG_@lAV{?VJ86$A^w%Dv+UX}td6!rf70cTEpdtPBZ)f26yBUt&)QolO$xP3FF zZS{sM_&HpyIfOEcg0_`XNdo}rKMDF@GosokxPvdc9k$DeB|(A;_qH-l%e~JUd$H? z)VDo3ejSf`GumyCi!XO2Ho|(TU1teb%XBp$O&ECW^dpgf`1K`n-a&|Y^r0eZb7=|y zyB9j+^NzKk+JnU9wSVx1J!f%oQAO;J2_%c*(oV?7*#>p`e;#NX|Cu1ru(HY?-cZI0 zfBTk5PbC{wmiu&}1EB25s;$@Z#$8cXR?8pJHzBQA_oatBA3%i%MMv&&u2(bVGX$-^ z*R{d^95xO#$cLDiEYTEG6BGB{A@f?#A;AdrdhsM@AO0FADm;L|NxP2=-ClQv9aJCw zuF@@eJSUpW&%t5S5=J{xW;^hAYfRE}yZ&U_olbL()e?L_}0>i?r4T^n~mFx|2|U)Wl!Q_hH%VpLmY?3K5Cldf0JeS|+MZBS|)x z&w3c+nHLVNPurYMmGi1EE@>_}6;!zDYpDLh!a~4!m3p~Qq~2!69Tuix8DH%<8x9{9y|e59KMAwdNiYgEA(>nY7dqM z3yfRS9D#)qv7x>C;v7b8?~bR9ghP{DJVbaXebw~z+@Xpn8;N`S)?viD%+%EM!$Xef zmA$&tnqlLb^mO?eY#zEGN;H&N_-|*u&6d{I&00@D+JO*xFO1<~E`J2Z02UZREnW+t z+4K$=%j@gm%^@gMZ}-7sFR_Y9I0TjO@bHfx*?a`t_tyb@<5P(YLb^j%`%p-F7@%`{ z4fXgX{?U9e3RrcFHiP*iIh6M=3y}}DCnJD^)z%h(l+x4FgNA-#)Uo%jSriruRZpQ;o%;e*2LoZj#Kgpw6MA~GS7+e%D`mLkiMhGC z)}fRlg~rvZSKqUw`QA(MOS%&*<3S$6b}N=Kvu|oux~ciG$VLm&=*N2+*LHN(s>#&&79)mZ2&1$#DQ<#0KLcH<1+aI^9Rdi zpm6_?38|L=?i7cL9Ec9fzI4@pN;VuE9LUeh4i#>@D?_;tg^O^p;5OZRs-8{FnJKBM zd^V#lP+SkcW@Tl4b>WiRcDGzRTjbPi9nZ_T|FYhZRlX{$^a~pWkITlKN1#Az=Qs~H zc3eD!twvD>grZOqbgHVVW~6BSG-9y!*Imd>^wHtsnA7xdEyust{%?Lr z*H=*Z{_;F76vsp%zSN>_j$dA$pK#y0D?ozRh}@=LL-~_Ph5Mh)B)QPX%)f_B}~_*LIw+p`^59OB$r7^;r8uNB-Z_|TrSQN1xN|d2cpre zLj}-E{dop;;4$o{LSVY^KfVMI`SLWf-g9s8*Zm1T7!D-mtOf8Y?7RXvh?2`t0ur1k zj`Q|nH>2Wv3K17BKE6^wRS*etRFnLgMZg2w+uH%MZ{H{z<%R%roBhJnf-D*2TCgb; z%Id_j8Y(l|CRi76t3<@a%l%o*J^_J&y5N&#5(IK-0QBqJb@Gg{5h6>I0hvZ@QClj!tUki*8q&7Z8A97 zB(=^U;nb%fB_$;$e)r)+Ms^Am`Y9;p?moD#odj8vTFy9E$lfKK;dD#?{Pe9q;*Vk9_WPptr5Hh1r zw1EBRP2g&IfdIU9t0W;o;)BEf`V>4lka?d(pKE?7eB94Q+k_Apb4#g8AJiT^_~l$x z2N?*UO!L>Tae_}}Kcpoj&_F1-aU%y}=!Z=>Yg}4L41IGeBW0XSOsU|o6CQhU+@{0D zmN#$SY?8xGT%$+TOMd>GeX!6L_iS9yW>jF#96zjpF<38Kvidv_S}dK(4gXKr_aB9{hUq250V3 zS>ZZ-3z`xO^D(xXsUiqa6xnP6^DVU*%T#h*Eg66^AD-^vj>8`xY+`uABxBA7E3jzq zSLI`x$6G1z5W{J3epjT5ZN_wjH-75c9xr9(MKlALR#sB7>i+!IH8?x_I;}Jf|J<*k zqO@I0U_N{api));WHVZRQ%p?%ZtfdkXC9LR-xbfy$XH@MqAA=7sX%)*lNR5v1BEg) zqB4FI;rwNP-(|IFcGhHvDFoxp{A=uPQLipZ;$1Ah!{Z{pX%Mo_yA>b3}4Y(+#ydaQrJbQ?HN+N1dOuEA@GJ-pQ261ve*$z4&kLU? z(NX;dRAUenirUn!ZX&VLF>$Of6Cu1>YNrWT+`49ifY)NU%)-; zacDt}2H{()&eLP3Zo>0$72qAji?{FIJ$?FgYisM>yLW(_9NKP_VbLP}7I<2K8!@)E zt`M7`+Zfl}(AL^Ya$P$N(nv%^U!B(}WTIa>RRoWqg#-*Ll-RX%?{zQWQ|Zky?Z+>` z4jVwgZs(sEO}%?`#WDTJM&0%JKVs}*lFbf~o!HyWVS0_y#JWF%`~4YaFZ4Z~%& z6TlWru#?u76JEIck@sd5Ec(!k+;%X3%I}&D0TPISGKU5r10y5Yv2vUdbgHBRz_-#; zQW%+-er9Q@U=fm%!tE=suxmCoHxFc}GXoYvT*G0hk99Q*_T(ot-mck{Cn`p902?k9 zPV zcyIkJ=xXaDIIxc&KkCe7mTXh8m5LW1(Tn-{HiojH!hCAPgB2AOVUyL>)p2ofB3S+L zsg+e!@^s4}#hXX6-Wj~3q!bHe1-B{0FyPCeajbIpE;LVbxb1&tKadIlV#}?133?D3 zsn8Fe2RuL|1!NXueaYH?jrfh=myaGjD!$4Q=9(E43e5)fRHcmUY{#lGB<2DRo0*=5 zE=Q705&<1MyW*uLAfh+5voWWWI4;IP1@hLc{i6nS`GBpSyHiX+Co1Xzq&>7NbqY=L zBdde|)dIYB?f^vc6e{P|82~KXOZ{0135HP9#R)&tWD21Y6%rHkYvD$fa_B-@pr2@cc#gDgp zuUxsZJdme#l683#3U)PUQNZ(j&9u%_%g zL0mvD}D(D}Wv7k96;CWQuEFCHzd=Jr133^IEFG5h%wBB<9kExxVCr8$oBeJ^JPhFub1dpb!POp@0EibgHOR z3^zk|ofxU@HA^0SeZ#7r3LKtpjk=1Gl9IFYE<`zsg9c`$=yhOLj}VeGJNvQ}LL#~GSRJ+;A4kZQB z@7!e*d`U7_+D*pmYGPt?nS|uyLmZTykiR>5m0s@A(Gh4bn3$Q%tVeztlQ{%H$_IKh zFd`xX!q$bd-Q&YOYGLPW=+sg*rtEYOe?C1~JN*R2Gf;bAf7Pd1d-v>H66bLLqmJF@ zb|ms<>x$-tt;kAd<~iQbA(^TfVm-o(-}GWN$h4)Br4h=^Dy>!HmK%%&~iYJx|A+4Aa6+-z)Y z9zB`{k8kIoL7{e~og=8x>K+3v3I14)xHvIC6ygBNpdHCscf>6;Y*5x66cp6Z(7+W1 zI;ZHyDP}jnj{7;1uP#sxsbT?B4CT3jzP{(?tb+O-0Jnxh(@A(7QEhV$*tEGdyE;W} z2t>F43tOF_$#@q?VmM}iP3;`G$Rm^q0iZ>9f}#w}7>gD_g}L(s*jJ^-mSt}}=!gJ4 z0MXuUrJxydG+B!xH#fIPsz603$gtked+0plo;KcrX5e<8y2{+b!roH)dHPcL?G|G@)6AaelNK?CN+3K&WPa0~5o4#DKN?tBkUepFXM9bY_=sF_%Gfhu-6BFpio}GCG(&L+sM{2 zHBH$xggR^dbQKC*lR$J7mx_0=k*Ac({reKQw0vLaOen6|qT`)1I-&A2*>3BbC`Z(8 zGNxIw3LZ(TKy0f2Qhht-fqhQvjvKG85dEE2*9kcb1i|CY5MDJ^W}`AKy7&FI1e`Zm z+9Yb%qH!ydDW^&%p9!K!ed-F~)#H2ot-HE7-w^}fovy#0GN!c5uh8=kAK`sNTb%Fe z?IHKo=xbRTSVMnF3h&4Vd2{LXl?E4{iAIesMrszv2(6by z<2{Rlt-Kym4+jLu`{J{1zL#{DQFvO)u2w^Pwgj3VbVL+$*XpggR^zVT9T^PR_G9?x zCRk})=5ixxvbN)bJwDd_#?pMVlCYOPm|t%GP&!N@dnaphn+mBay5S11IoLuC-n_oo z?qe;@_t$zbP-JXYQz7%Rr%Dz<7ds8f3;zi$uY3drh}h0u?jBi*-kag&B7|)<^s#%` ze6d-LlGcItZEjcxa%MhEBBYVnA$|cC0lX}dX9q5U)j*)MIAc+c%CgNVFxT?|Au_x*M_@Dp`ZW*<4ODRVfqgkF>WH!_G{Efa`Wq5;=teE)$Lx zj|o`}zmXWS+bCIc(ci$)+wJ%{t6BG3L}q0dV4LkF~>E# zWwIsBe6RN(yRYvrH@rmalggfK6o_l};Os65lFm*27i+`rwtc>V*qAu2@Mku^hb^hZ z$q$jArLZov)>FSCPB!@0>g`?;pqpBKZ}C{#b4mIq@K3rJm787CHe784#086tYODdv|y-tB0RvWqr_|E$snTMC0Br#O%-rH_B z&y1)UtI^s?pu5pqIgFQI=MwC1?3YCz-iK6)IINNmWDf}7Hx%`Y&T@s&${oIt;mUaS z#VXv}RrHfL_H8d~)xABtLym9an5tb3q1d{y4<2I7hd7EIL=FQQorA zUYLHVa%AlF=zMH!Z*Hp~{Rk2cy>g&c(J}G#DjZ}!sA+3k*o31d&8L2Z@E+IOz2Il9 zwDgFeBF*yvQf2^{qoskoi5y*iB%NyEo_>!^mGeO_=%Rv_0m21Bu6EGVizT3=r*DLN z)~k>aUV75gotgflRg!~!I!Q%Z7PX19U>RA&_XDuY*ENzmA%O!ZLslPQ?FTfM!c6|M z%Jo7G@stW_s7x6+u|UHvw3U~}LraT?WE|rUnJd=ty(eW%$}ciINlTOriMRdP z@B!DyMn;;-CZYrsFsej)s)!^e146|Ra00k&Kv^~383dL=L}+$I=O|Y~CQ3>Uvz4T&(EGmjALnj;KJ4$Ac_0UMGy7b}jY zjR_x{HI(h8zws%I;Ot{XgwvBQ!%g!4Q2O=vd5h~e0s`M7F}cWo6T^@dHi9cOBPz#o z&nNcGu%o44K4n<_&ueVieZ=sj`?AN1@dkX#%&_=Y!k4NqI$+)e_9k-m{AX)XmVW75 ze0B+Gk}sFMzrvzuUY4_A)+3>Z-~q4bIWZQ4ynjD}6P1HD(Z`SZ&y#uwBuJk3MnW5n zTC$}&ZRW)+RXt+1VY9z6D%G?Mk_0c-u{LQ=mp(->O38 z=OuK0Ebgs06G(nhUq05FLH}lX;4Qrvok{JZM|QR+=`62Ev7!UoetLWUHORzw&q{fA zJ${>8PU+u5NwB%2y}PnOh_>EhZC3L^^yhN7@^`t5CXFBPz3&oIPsPkm{Sdx;a6pQx z7y66@0^w=;YHeQs44MAYJ38q{`Bz`ZP%(0l(_nZ|=XiruQk(adTQA8c3T$<|A}Um= zth-MR&-+q^9%CE=O$tlYO5pyY)tz*Q2G2Zy6* z*#D;6j+w#9bQxoY2A@um;t|%|RI8k>BJ~}fqL$A(d3q3?%Utc3Vv^93@?hC(o-+NrsDV?-?lg=_l zQb?U@B;MWDPQFo)oNNN@DIg-L08p%hl6+@*U=1iKAhCi11D{stf&5tvq@K|G0FnX0 z>~k6rdEJ3+xXWti63QlanDRB({&L%In>G>(Wl8sl`18}oAl3p!0G*G#ib_0aw*W?+ z{y{npfSEf$F>~~13y3-p5oj>nalJL2^b{VD03Oi6M+!Q4e;ydm?$qp!R{_>g5kD>- zUSaW(zjFs^6+T-X-T@^q69a=!onyG^(7X5Q`Oj!X@zhYXg%Zn2SA3Thv4^_Z2Gw`X z=14?B?zV*fgv%xE5K7s3Nh+#-d(`-CR;&O`Li+)y80bQQ8dpsGVQ3UvaNP$38z^HtCUKJ82=O#=&U@iTh}U{5=T zJVy7nh2RQz)uYaHc6?dingMCTM98zXTC;ZYqBbJWVrOmAsC>Y`#{K*IY2wGffd9K9 zb&*=^2uLvQDuF4vC;lnnG-xQkNB#ROK4c;;>pQ zjD>n10iabR#o4Qm5-m90+6SY;MJYlf&aZru}O(&Z=ei5QzoO8~==1v@%BJE0+e zi{cuL-Ml>7yXZeR1Ee7nlNmJmpz99Zd}x9n!j*n-gxl}Gz#2(FBSIOHItPTlf$kqm zV}VMnfYD!YY1QVoaTD5Iph(a-S)PkB02V~arwttg1|+g(z=^PEeF7Y|EXgi>J9=A5 zbZb!3S?VO8S9e8B*9v2$1IIt(CbL^xq5g7Gk^Jciv}2WtpE#qLXsM|cLK6buKPc3Y zJ|iOH9AbPK$vTktM-xhAZrozA`Gtj0YVi|jO1l~C13_bAYU*3KR9#(-bOE6I1lZF9 zxV(eCwNrq!(3ob8Foi~{_Q&(nNd(g%b?o@@;|NiQf$Q8C-U2noI4J6X`{ZF}UH~7I z%yR@H1oRisFGGB??qDeknLhw)00MUv8fLHbnV_}Y|G;=r2~1d7xnpm_ixcT-K7mpK z*nALH=m0@9IH(=f<^<>!$QLkuFERK1e7BiTAQw2A!uP^*OTmZv1t?9-I%0>Cf zK_u}Tnmjz_9oc#no2fB2n_D{QZha1~dvnPMO&^xJXbnH2H+-fkphPL=_>Fu+RTV}M zpdANd)zMQcpqYWg0g*Du(Q!>5!n590Rvs_4j&VMSKRsH2IT?^NgRzZvw!IEr_m6v` zS~_T7I*2tGcLh(~zgdp`Qk;UKqApMjuC9NeTrlwbGY5|nEBd_j^Jh9CAt74YsbM%5 zP!>Srnw-~y;GhyZ{XPURF|id5J%}=({@G4}!?2@a|0*XVB_-wj_mB2~1Bgawn@R@s zmu~{|B!g7|ZR7l0O6YFu{3H`1c13!d1k+Jb4@xY=u*Dbwp&D5T_tpnW ziq_LgJ&se(Q_wN+coJQ?k|IJNC2i?h6w)j*Ur<8zHG~zou7ob)gtEzHzm+(U@vv zr{Mj?IaR9Xu|IjZx!og&u&+~4E8e*SB-_avC=fJG_<`At@J&lg!=>$ej>?FTP~1qK$wRk9N&_b^B+z_CP_j0LK(PB`A!_o^Al5t`d~;2teH zKJHCz2U*P;h(6hxADj+&9c#_vnu+v)HXa8ube2XsDG2h=0I_iHVI94gs&X@S2D>uBF3mqX41= zByl!QPW~zy!ltU0B@4G=;_*-vMW@?_Juqg|X;tDv=L#B^FTOmU-T3FEOq!%+j?+3(-Do)D9w-XGeGA-TN!g3RA?x*D;1U6$ zd{Qqj@&hVG1yz?`yCq3vA0(60fdBgi>Tl^sIY%MOldKx?DdZ&(m-Su*)T;rxVX~^P z=!XbTHbT%R8T6`4IXO)HUuL3%itUE9W|N$5uYSusB^ga7?w3SN2E*&*JB;7HKEX`j zH}Nh{gd3qH>~vqX@Y_~t|9KxzN*bMkfPDP+d!+1@O6GrzeqmbYnjwhZS@@~j9O%V_ z@M+b$Mg#KUQUu(8%Vnsa34Ybzy@0B}*Cc1YMW$gqb8pVa+K0iy8^iEflbnTA@-g@O z<5Db5$(I-}0i6Lyyg|HE^LU3MgR;u->t^ExvfJoB-YW<@2t~f!TXNbfuQ`nr^>|S~ zCER^%HRk1M?+R>LjD;uPN1+BO0XB3o@r1Il(nXI{=UpJWO3S13$2;L4xz*zA@%!EW zX7+Oax_ByM_m6OLN3oQD@R-=A>80kEgDJPW(8O2`uf-mr27yI0YGft87e@1ESvj2cT8oB^03B&(DU&a=w374nZSjZ;>-!V+0w})r~i{gzny^VF>{~wM;!o(i? z+Irv_;X+LK2<>k_o>0yi-Ov<4j_BA#U0t=;&Mq45-^;L0T+&Q`20q`(+l4UHp2I>& zx*x_%j8@pw>?lQ0I(QFRpkwg<`>i*85(1y(^pgMKtPJ^NjT$%PgMI?8LkUKQ(_rVK zULry@?5^E&M?PoILScdJLoXxa>iPWhKVPFE<{@IpxZ=%$AbY=_MWP{Ix!d@t8bF>j z#61+T$*pU5&L|*;+syI;ulM+w&S0e48>^QLdFQb7V8%Hg71dS(O%3QT;m|^U5i1Hr zuScUBK`A_CW|$LYyXHV6c2HzD)c{%v{d*_X*||B5`}fmTp7f=ItdH1t?5Ah7k|A-15 zO2-;!qyCb((;W{T^x8l3F~h94{qZ!Y0ImtJv$q9Fp-C|Kb=w`t3Sckw<3;`Z{HD zZQBDVCtQ^*JaacP`3Wt;+H!fsmo!P{jd=C!FeVXhorJU$<2#lu*~@RzhoC9(-tpa{ z3X_oD@c4=o5c*UWa|?yKhKIZt;4im#y&aoU68H13@W#7{q%uEnok5KQ_sKe%Vn zy%xL3K+Jc{b+|)(P(`b=^b&}6*l6{FT1i7T~qK3KhFz7as3z9 zC^?qHO(x+3YqzriGU+1AEI%0e_5i->`EL(qWA9b+af@frXc~reAfi8l!tNKQLO}7Q z#sgsor9mV_t-s^a`^t1<(EH0!LFM^>zj*m=?^p(K{GW$u6TwOYV#!|NfI zIcwU~a}p&Rr^itS|FCs*EvAQ+CJ4a_I854P$0#o_i|!Tx^Mr;%;}Y8LzQ~GyOTdp& zc*)@3>tO_$$&X+wCK+3_rTh~KQKCUMe6yuuX4r}LO2k%)p{4C12+xuzOnQg>M)qC|?WJ}C zpOyp}UIFsTR7lsk28xJHaLErAerj%i89;I(!)xtt`mE@cDZ<;5v5B;YNfE1B1ZBU) z-uNgwbsu@g?gsboAHK=s&nF8A2@8?I))G*K)iu;Cq+;yN#j?)sUH zWe+CX^FxH<$eGeH7Cy7@%aweST2{f%Lm9ray1(fm2|zxV}E%g9iqu-)_pEo9hX`wt zvrT=wb`nf<`OAH?H7qcG&fyiLAom$r{XlPoQ&g0cu$FYC3xtYceteQ|Y3aT%l?h0h zAYXiIKgsz$I^d2U5^B7&XO~GV*$XeoojFk0HQF9K`0@N%FZGI@%m_grRS=R*wQ+*O zzt9Ra2q0fP-%WOv2KOianT={+6)e0n{M=k8M+yivWS6YI2+QFtGcuzSBoY3-RgJ~d zEPL zVe7!*$jZqbx>^4fP8#jEL62T(a-F!Q6XkQ^61j_s9IZ5YY0CD6@K$&=4Wp~qtR2XvaBrYez6a5uWS$*qWf&7dY%oV^!*(w+88Jr zEQj&E?wR7>>%0o?m!XycanAkt(kBDCFp*ESr3Z{2K%~~r&b9umfi-wnLkkH3yk95$ zuSVhjndGMksoDSEdImyH8UU=)0ikr_;s%F(Gd3ZB^d zX8}Q_`*BubAtLt%i7n_%&;bg1V}%v1(HEE7hpKQyK`Ehn#~FDM2QaBajOS4GCt!3y zSf_=G9asQnmkMZ$;tVCb*)UTFgT{cMQ?AZ|dvFnNbTc~%?1IR;`g8=unJpxsvyi}X zpycH;Bfyj0`bq-1gh%= z1gig>hwzp@i+=xA9vg;r<~FGR(A%7S^WW)JKdWAmi3JD;|6b-l1~UHd1N?Z4BSPP~_tTn#?SCj=ZtYO5eFUEDJ zfwUEPYpHE+(P ze~(ATH3=LmH=;U1F$FwwaWC=1qpb8icAK*YkdUVIp$AymQ_k-#Em&R^aO*_m)23csCOWoMk?{!|k~fcm7LgVip^JHsOJO;iAjl*fWGX4!Oq9L3bXQ zzc8!~)!BuGC-Jg!T0F6c5E7Z>ddu}58$1t~2M|i9Jvo7Qt-yke{ck9{O@e=r{=wT`2b)+0*OltqvXTT%Z60;;UP;KG^rr9&fTE?44cuP zrA2z>%ERZYB|scjf@D2trfbFZ>KRH}$=Ljf)IX7#t zY3SU+G>TLJHYsLx6;ZmTH zEr2c_G*@ciB?&O_2X9Ld2PE$diPr0&H~t3)r3gHy-koJ+L=DK?c85hI7?{#RjgFNXq@-SK9oQOB(cIQc#sdM8QNU&f$I|^+{M*7#B>d6yZLCw4DV* zSXkkoKG`@wuxdc+8jiosizm(xChx)Iixk$H0lKDN2g|AN{l&vY$GU_5JW%QS5CDA- z`$#F~E--*4wE;R=D|j6SaK7*it>stAWUxa(o6mOR2F%r=Ff&zQ5I|j3wL4jX_ySA) zb%=IE8Xhm;NeQJ^#%o4=xW8~tCnfcR5*Ox>KpqK_@EM?6kiTH?vprsX;*g!@oINP( zfv(PgXxVz6lni+t2coQ}f>#yA#GsQc!i*9O3=m2MUE}XqDV#hVsXC2jYdZ~{v9-a# zc$s2(IY^DU!;y|&m+d?W7bTl6`{%oHi*M)A7Ptc5Uplyz=6g&Vh#?ajsPu)l?>ZeV zjSnq$lhKcE=V-jBgq!tT0yEoxW==dq)6iq9zsyWEZ*2^;J5B64jW6s{xZ6(*c#QE3 zz;G%p9nzA}s5;Pk%pVHLrtHh6t{y@v+yGbQb-d_v_92djN%Jz^csm03F>K89wfZ!H##Oh!HJ-pVU zd(Lp4oQjHs(AIWMbs+NQUO)sd>4LtNg2HQ|or|)jhhcA8 zCMPE$KV7?aEh#Ap`dDNB`jdTI@&1=*=9iY(=;+NEH1PMcADBcc_@%pUHKF#|O@#XVvx zIx%Ih;Nal*;=`W?+P{BSkiLM4xvJZHnSY6Pb#?U?c`%q4eVNuZm>hCN4QTUv+<}fi z2VGoT+-{ELoBvVCxyChlo?-meIT*Ics7yNr=|Isb6@-8a0hxwFfuKMlN(iI^f}ki6 z%#uP$p-MO}r6@&|i5w~va6qBtP*SxVidw`F8z|!xK>|NWL2%>LU2pfbUz%@_{N5Md zJkNc2?(2Uw#(U*@-0`cbsjbZwiAd=An9YUi-dBIU05#|Q{WzyTWq&fQ!*91_H+s@fg4_@3xLhmJW= zC^F!&@CISQ$_?Z%#-h+pm*?627u-X;WYzHRMcS#U*RwOMFvuyyc>gwuLD%IRv zLP1v(Og$>EZ_7aI0MIt8v#008(W7a7{h;9#3O7%s!cf7X(2g`=6fl~e1_0+=8zvmW2| z^nL5N%L2pAO@VP6NBweYYCA}(l;z8wOoxikI)apaeYqjh$nI+ytS6NC`EmNZtbFf$ zK6Yc?=h5DC3kxnuT1HGv41VG7FBXx)e;CR^qmslu_x6=%Kp@6mZX32uPfu@KTdH{) z%`k}sUsA$-xRXMq{@Bx_LulWZ)c}=+IRCt!?ajB}yoyeZFA!h_CZ_h5lS(;4sHYL2 zVu=1fvaN@%{kQ!f-Lr2Wo>hrTjx>XwZrb07pzdijg&gRR8>&tppX|tPO!8M(S1m0q z)6>$d{{1tOHDF{w7L`dIa3Vo(4%Gpk16}qeaZmpi-;iUKm7fn+Hq#`OBuWT8{uFt1 zYZNTTzHDx8#`T6Xeob%D-tH{fc;E*y&`|FL3joH7vZrosTI2?SQ z%WV>Y74a({fcKv8fcFw#0e=!>m%9*@Ul79x(~?RN*T`3L&@+XaJIDLrcSY4#=qgLodVzOHU& zauV73$?pVFgie8@uVIq>N_t=Ol@6AQz(g`3eaMzdmoYbpjg7^O6((>8x}_JCe<`$) z>C*aU&^jaWmg3q7!HLNXlU)=FnCT{oB-my9MxtQj*7|kBx0aR!308688^y(3Cw5ra5Q6RU^73Prs;@7z69D-a0@nnM=)(;QP7ClSsSS;T;KCw+ z&Aw2|GaxpTgBD{k@&oi7pX>g?*ehA#l6 zDJ(i1otn1&(SRr*j~-~WmDN?!b`97r_6Mv&;Xc$M^Uj4pCVu>*{FBy+x3EIOQdbe- zDB5e-ig*L)m;eV=Xax_SJfP)!9z59clYA?24|79e#oWj!A0;JXQqW^zoo@X6{xYW4jG58O3aG1oS~%83NmH8=b8A7|0`I5;=}i0}IDyN1C`$#SQ2 z62Y+p5w2)^$#pV5%%6)memuXw0Tnb@RAlog)R@{sUOr}KX4mYeKfZc3OB7n)(htHY zTuX5Qn)VuxkbMjxh_op5ovtN>Y!ZB0+lADDF%ZXAGd>R7t0ostrS9O*m`r9wgr?i3 z&D7M?+Cm`z8Z>T2#S3)gFNPVK5k|Td0tPHBe-zWW^$oV$H zj@_D2(b5v+Z-PxK6cRQ1?IJH8?={pG@C|td$K1TJU7#*60a=ByKzG4)!j^w&(U_o| zFo}fCVsp!9M^Zn86&%<}4C*?Hr=qMONz_aKTh%kM**f3gl9UZX{fivVJ5(y^YizTB zzp4q>+P=KBgx>b&`NeI-C6ix{o+zBr9ltS!AP43mm}VD_oLMv H<)r-&5tWPx literal 0 HcmV?d00001 From 6a9a0ff2d485a2708052e4e502d7d1ba1449cb28 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Sat, 7 Sep 2024 22:10:23 -0700 Subject: [PATCH 10/67] Update defaults in docs --- doc/arkode/guide/source/Butcher.rst | 75 ++++++++++++++------------- doc/arkode/guide/source/Constants.rst | 39 +++++++------- 2 files changed, 60 insertions(+), 54 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 39ec9b9dba..b5365c2442 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -513,6 +513,7 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_SOFRONIOU_SPALETTA_5_3_4"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. +This is the default 4th order explicit method (from :cite:p:`Sof:04`). .. math:: @@ -552,7 +553,6 @@ Accessible via the constant ``ARKODE_ZONNEVELD_5_3_4`` to Accessible via the string ``"ARKODE_ZONNEVELD_5_3_4"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName`, or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the default 4th order explicit method (from :cite:p:`Zon:63`). .. math:: @@ -593,8 +593,8 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_ARK436L2SA_ERK_6_3_4"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the explicit portion of the default 4th order additive method (the -explicit portion of the ARK4(3)6L[2]SA method from :cite:p:`KenCarp:03`). +This is the explicit portion of the ARK4(3)6L[2]SA method from +:cite:p:`KenCarp:03`. .. math:: @@ -634,8 +634,8 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_ARK437L2SA_ERK_7_3_4"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the explicit portion of the 4th order additive method (the explicit -portion of the ARK4(3)7L[2]SA method from :cite:p:`KenCarp:19`). +This is the explicit portion of the default 4th order additive method and the +explicit portion of the ARK4(3)7L[2]SA method from :cite:p:`KenCarp:19`. .. only:: html @@ -849,8 +849,8 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_ARK548L2SA_ERK_8_4_5"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the explicit portion of the default 5th order additive method (the -explicit portion of the ARK5(4)8L[2]SA method from :cite:p:`KenCarp:03`). +This is the explicit portion of the ARK5(4)8L[2]SA method from +:cite:p:`KenCarp:03`. .. only:: html @@ -901,7 +901,8 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_ARK548L2SAb_ERK_8_4_5"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the explicit portion of the 5th order ARK5(4)8L[2]SA method from +This is the explicit portion of the default 5th order additive method and the +explicit portion of the 5th order ARK5(4)8L[2]SA method from :cite:p:`KenCarp:19`. .. only:: html @@ -951,7 +952,7 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_VERNER_8_5_6"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the default 6th order explicit method (from :cite:p:`HEJ:76`). +(from :cite:p:`HEJ:76`). .. math:: @@ -992,7 +993,8 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_VERNER_9_5_6"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the 6th order explicit method IIIXb-6(5) from :cite:p:`Ver:10`. +This is the default 6th order explicit method +(method IIIXb-6(5) from :cite:p:`Ver:10`). .. only:: html @@ -1093,7 +1095,7 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_FEHLBERG_13_7_8"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the default 8th order explicit method (from :cite:p:`Butcher:08`). +(from :cite:p:`Butcher:08`). .. math:: @@ -1140,7 +1142,8 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_VERNER_13_7_8"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the 8th order explicit method IIIX-8(7) from :cite:p:`Ver:10`. +This is the default 8th order explicit method +(method IIIX-8(7) from :cite:p:`Ver:10`). .. only:: html @@ -1302,8 +1305,7 @@ Accessible via the constant ``ARKODE_SDIRK_2_1_2`` to Accessible via the string ``"ARKODE_SDIRK_2_1_2"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the default 2nd order implicit method. Both the method and embedding -are A- and B-stable. +Both the method and embedding are A- and B-stable. .. math:: @@ -1337,8 +1339,9 @@ Accessible via the constant ``ARKODE_ARK2_DIRK_3_1_2`` to Accessible via the string ``"ARKODE_ARK2_DIRK_3_1_2"`` to :c:func:`ARKStepSetTableName`, or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the implicit portion of the default 2nd order additive method (the -implicit portion of the ARK2 method from :cite:p:`giraldo2013implicit`). +This is the default 2nd order implicit method and the implicit portion of the +default 2nd order additive method +(the implicit portion of the ARK2 method from :cite:p:`giraldo2013implicit`). .. math:: @@ -1535,7 +1538,8 @@ Accessible via the constant ``ARKODE_ESDIRK325L2SA_5_2_3`` to Accessible via the string ``"ARKODE_ESDIRK325L2SA_5_2_3"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the ESDIRK3(2)5L[2]SA method from :cite:p:`KenCarp:16`. +This is the default 3rd order implicit method and the ESDIRK3(2)5L[2]SA method +from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. .. figure:: /figs/arkode/stab_region_26.png @@ -1624,10 +1628,10 @@ Accessible via the constant ``ARKODE_ARK324L2SA_DIRK_4_2_3`` to Accessible via the string ``"ARKODE_ARK324L2SA_DIRK_4_2_3"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the default 3rd order implicit method, and the implicit portion of the -default 3rd order additive method. Both the method and embedding are A-stable; -additionally the method is L-stable (this is the implicit portion of the -ARK3(2)4L[2]SA method from :cite:p:`KenCarp:03`). +This is the implicit portion of the default 3rd order additive method. Both the +method and embedding are A-stable; additionally the method is L-stable +(this is the implicit portion of the ARK3(2)4L[2]SA method from +:cite:p:`KenCarp:03`). .. math:: @@ -1751,9 +1755,8 @@ Accessible via the constant ``ARKODE_SDIRK_5_3_4`` to Accessible via the string ``"ARKODE_SDIRK_5_3_4"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the default 4th order implicit method. Here, the method is both A- and -L-stable, although the embedding has reduced stability -(from :cite:p:`HaWa:91`). +Here, the method is both A- and L-stable, although the embedding has reduced +stability (from :cite:p:`HaWa:91`). .. math:: @@ -1844,9 +1847,9 @@ Accessible via the constant ``ARKODE_ARK436L2SA_DIRK_6_3_4`` to Accessible via the string ``"ARKODE_ARK436L2SA_DIRK_6_3_4"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the implicit portion of the default 4th order additive method. Both the -method and embedding are A-stable; additionally the method is L-stable (this is -the implicit portion of the ARK4(3)6L[2]SA method from :cite:p:`KenCarp:03`). +Both the method and embedding are A-stable; additionally the method is L-stable +(this is the implicit portion of the ARK4(3)6L[2]SA method from +:cite:p:`KenCarp:03`). .. math:: @@ -1888,7 +1891,8 @@ Accessible via the constant ``ARKODE_ARK437L2SA_DIRK_7_3_4`` to Accessible via the string ``"ARKODE_ARK437L2SA_DIRK_7_3_4"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the implicit portion of the 4th order ARK4(3)7L[2]SA method from +This is the implicit portion of the default 4th order additive method and the +implicit portion of the 4th order ARK4(3)7L[2]SA method from :cite:p:`KenCarp:19`. Both the method and embedding are A- and L-stable. .. math:: @@ -1927,8 +1931,8 @@ Accessible via the constant ``ARKODE_ESDIRK436L2SA_6_3_4`` to Accessible via the string ``"ARKODE_ESDIRK436L2SA_6_3_4"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the ESDIRK4(3)6L[2]SA method from :cite:p:`KenCarp:16`. -Both the method and embedding are A- and L-stable. +This is the default 4th order implicit method and the ESDIRK4(3)6L[2]SA method +from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. .. figure:: /figs/arkode/stab_region_28.png :scale: 50 % @@ -2072,10 +2076,8 @@ Accessible via the constant ``ARKODE_ARK548L2SA_DIRK_8_4_5`` for Accessible via the string ``"ARKODE_ARK548L2SA_DIRK_8_4_5"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the default 5th order implicit method, and the implicit portion of the -default 5th order additive method. Both the method and embedding are A-stable; -additionally the method is L-stable (the implicit portion of the ARK5(4)8L[2]SA -method from :cite:p:`KenCarp:03`). +Both the method and embedding are A-stable; additionally the method is L-stable +(the implicit portion of the ARK5(4)8L[2]SA method from :cite:p:`KenCarp:03`). .. only:: html @@ -2124,6 +2126,7 @@ Accessible via the constant ``ARKODE_ARK548L2SAb_DIRK_8_4_5`` for Accessible via the string ``"ARKODE_ARK548L2SAb_DIRK_8_4_5"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. +This is the implicit portion of the default 5th order additive method. Both the method and embedding are A-stable; additionally the method is L-stable (this is the implicit portion of the 5th order ARK5(4)8L[2]SA method from :cite:p:`KenCarp:19`). @@ -2195,8 +2198,8 @@ Accessible via the constant ``ARKODE_ESDIRK547L2SA2_7_4_5`` to Accessible via the string ``"ARKODE_ESDIRK547L2SA2_7_4_5"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the ESDIRK5(4)7L[2]SA2 method from :cite:p:`KenCarp:19b`. -Both the method and embedding are A- and L-stable. +This is the default 5th order implicit method and the ESDIRK5(4)7L[2]SA2 method +from :cite:p:`KenCarp:19b`. Both the method and embedding are A- and L-stable. .. figure:: /figs/arkode/stab_region_33.png :scale: 50 % diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index 22363ef243..541dd33db4 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -130,25 +130,25 @@ contains the ARKODE output constants. | | (ARKODE_FORWARD_EULER_1_1). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_2` | Use ARKStep's default second-order ERK method | - | | (ARKODE_HEUN_EULER_2_1_2). | + | | (ARKODE_RALSTON_3_1_2). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_3` | Use ARKStep's default third-order ERK method | | | (ARKODE_BOGACKI_SHAMPINE_4_2_3). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_4` | Use ARKStep's default fourth-order ERK method | - | | (ARKODE_ZONNEVELD_5_3_4). | + | | (ARKODE_SOFRONIOU_SPALETTA_5_3_4). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_5` | Use ARKStep's default fifth-order ERK method | - | | (ARKODE_CASH_KARP_6_4_5). | + | | (ARKODE_TSITOURAS_7_4_5). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_6` | Use ARKStep's default sixth-order ERK method | - | | (ARKODE_VERNER_8_5_6). | + | | (ARKODE_VERNER_9_5_6). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_7` | Use ARKStep's default seventh-order ERK method | | | (ARKODE_VERNER_10_6_7). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_8` | Use ARKStep's default eighth-order ERK method | - | | (ARKODE_FEHLBERG_13_7_8). | + | | (ARKODE_VERNER_13_7_8). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ERK_9` | Use ARKStep's default ninth-order ERK method | | | (ARKODE_VERNER_16_8_9). | @@ -157,25 +157,25 @@ contains the ARKODE output constants. | | (ARKODE_FORWARD_EULER_1_1). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_2` | Use ERKStep's default second-order ERK method | - | | (ARKODE_HEUN_EULER_2_1_2). | + | | (ARKODE_RALSTON_3_1_2). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_3` | Use ERKStep's default third-order ERK method | | | (ARKODE_BOGACKI_SHAMPINE_4_2_3). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_4` | Use ERKStep's default fourth-order ERK method | - | | (ARKODE_ZONNEVELD_5_3_4). | + | | (ARKODE_SOFRONIOU_SPALETTA_5_3_4). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_5` | Use ERKStep's default fifth-order ERK method | - | | (ARKODE_CASH_KARP_6_4_5). | + | | (ARKODE_TSITOURAS_7_4_5). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_6` | Use ERKStep's default sixth-order ERK method | - | | (ARKODE_VERNER_8_5_6). | + | | (ARKODE_VERNER_9_5_6). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_7` | Use ERKStep's default seventh-order ERK method | | | (ARKODE_VERNER_10_6_7). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_8` | Use ERKStep's default eighth-order ERK method | - | | (ARKODE_FEHLBERG_13_7_8). | + | | (ARKODE_VERNER_13_7_8). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ERKSTEP_DEFAULT_9` | Use ERKStep's default ninth-order ERK method | | | (ARKODE_VERNER_16_8_9). | @@ -242,16 +242,16 @@ contains the ARKODE output constants. | | (ARKODE_BACKWARD_EULER_1_1). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_DIRK_2` | Use ARKStep's default second-order DIRK method | - | | (ARKODE_SDIRK_2_1_2). | + | | (ARKODE_ARK2_DIRK_3_1_2). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_DIRK_3` | Use ARKStep's default third-order DIRK method | - | | (ARKODE_ARK324L2SA_DIRK_4_2_3). | + | | (ARKODE_ESDIRK325L2SA_5_2_3). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_DIRK_4` | Use ARKStep's default fourth-order DIRK method | - | | (ARKODE_SDIRK_5_3_4). | + | | (ARKODE_ESDIRK436L2SA_6_3_4). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_DIRK_5` | Use ARKStep's default fifth-order DIRK method | - | | (ARKODE_ARK548L2SA_DIRK_8_4_5). | + | | (ARKODE_ESDIRK547L2SA2_7_4_5). | +-----------------------------------------------+------------------------------------------------------------+ | | | +-----------------------------------------------+------------------------------------------------------------+ @@ -275,17 +275,20 @@ contains the ARKODE output constants. | ARKODE_ARK548L2SAb_ERK_8_4_5 & | Use the :index:`ARK-8-4-5b ARK method`. | | ARKODE_ARK548L2SAb_DIRK_8_4_5 | | +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_2` & | Use ARKStep's default second-order ARK method | + | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_2` | (ARKODE_ARK2_ERK_3_1_2 and ARKODE_ARK2_DIRK_3_1_2). | + +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_3` & | Use ARKStep's default third-order ARK method | | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_3` | (ARKODE_ARK324L2SA_ERK_4_2_3 and | | | ARKODE_ARK324L2SA_DIRK_4_2_3). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_4` & | Use ARKStep's default fourth-order ARK method | - | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_4` | (ARKODE_ARK436L2SA_ERK_6_3_4 and | - | | ARKODE_ARK436L2SA_DIRK_6_3_4). | + | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_4` | (ARKODE_ARK437L2SA_ERK_7_3_4 and | + | | ARKODE_ARK437L2SA_DIRK_7_3_4). | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_5` & | Use ARKStep's default fifth-order ARK method | - | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_5` | (ARKODE_ARK548L2SA_ERK_8_4_5 and | - | | ARKODE_ARK548L2SA_DIRK_8_4_5). | + | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_5` | (ARKODE_ARK548L2SAb_ERK_8_4_5 and | + | | ARKODE_ARK548L2SAb_DIRK_8_4_5). | +-----------------------------------------------+------------------------------------------------------------+ | | | +-----------------------------------------------+------------------------------------------------------------+ From f0b32d938c56e766a0755e11403e3f5fb2c1e4bd Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Sat, 7 Sep 2024 22:15:36 -0700 Subject: [PATCH 11/67] Add new methods to constants --- doc/arkode/guide/source/Constants.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index 541dd33db4..a87c1f9b8c 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -78,6 +78,8 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_FORWARD_EULER_1_1` | Use the Forward-Euler-1-1 ERK method. | +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKODE_RALSTON_3_1_2` | Use the Ralston-3-1-2 ERK method. | + +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_HEUN_EULER_2_1_2` | Use the Heun-Euler-2-1-2 ERK method. | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_RALSTON_EULER_2_1_2` | Use the Ralston-Euler-2-1-2 ERK method. | @@ -98,6 +100,8 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_SAYFY_ABURUB_6_3_4` | Use the Sayfy-Aburub-6-3-4 ERK method. | +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKODE_TSITOURAS_7_4_5` | Use the Tsitouras 7-4-5 ERK method. | + +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_CASH_KARP_6_4_5` | Use the Cash-Karp-6-4-5 ERK method. | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_FEHLBERG_6_4_5` | Use the Fehlberg-6-4-5 ERK method. | From b7518b2b7768b8f58422e5d03d99e526c747a58c Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Sat, 7 Sep 2024 22:48:38 -0700 Subject: [PATCH 12/67] Update changelog --- CHANGELOG.md | 19 +++++++++++++++++++ doc/shared/RecentChanges.rst | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a82dd8621..c4b5070932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,25 @@ ### New Features and Enhancements +Added the `ARKODE_RALSTON_3_1_2` and `ARKODE_TSITOURAS_7_4_5` explicit +Runge-Kutta Butcher tables. + +Improved the efficiency of default ARKODE methods with the following changes: + +| Type | Old Default | New Default | +| ------------------ | ---------------------------------------------------------------- | ------------------------------------------------------------------ | +| 2nd Order Explicit | `ARKODE_HEUN_EULER_2_1_2` | `ARKODE_RALSTON_3_1_2` | +| 4th Order Explicit | `ARKODE_ZONNEVELD_5_3_4` | `ARKODE_SOFRONIOU_SPALETTA_5_3_4` | +| 5th Order Explicit | `ARKODE_CASH_KARP_6_4_5` | `ARKODE_TSITOURAS_7_4_5` | +| 6th Order Explicit | `ARKODE_VERNER_8_5_6` | `ARKODE_VERNER_9_5_6` | +| 8th Order Explicit | `ARKODE_FEHLBERG_13_7_8` | `ARKODE_VERNER_13_7_8` | +| 2nd Order Implicit | `ARKODE_SDIRK_2_1_2` | `ARKODE_ARK2_DIRK_3_1_2` | +| 3rd Order Implicit | `ARKODE_ARK324L2SA_DIRK_4_2_3` | `ARKODE_ESDIRK325L2SA_5_2_3` | +| 4th Order Implicit | `ARKODE_SDIRK_5_3_4` | `ARKODE_ESDIRK436L2SA_6_3_4` | +| 5th Order Implicit | `ARKODE_ARK548L2SA_DIRK_8_4_5` | `ARKODE_ESDIRK547L2SA2_7_4_5` | +| 4th Order ARK | `ARKODE_ARK436L2SA_ERK_6_3_4` and `ARKODE_ARK436L2SA_DIRK_6_3_4` | `ARKODE_ARK437L2SA_ERK_7_3_4` and `ARKODE_ARK437L2SA_DIRK_7_3_4` | +| 5th Order ARK | `ARKODE_ARK548L2SA_ERK_8_4_5` and `ARKODE_ARK548L2SA_DIRK_8_4_5` | `ARKODE_ARK548L2SAb_ERK_8_4_5` and `ARKODE_ARK548L2SAb_DIRK_8_4_5` | + The default value of `CMAKE_CUDA_ARCHITECTURES` is no longer set to `70` and is now determined automatically by CMake. The previous default was only valid for Volta GPUs while the automatically selected value will vary across compilers and diff --git a/doc/shared/RecentChanges.rst b/doc/shared/RecentChanges.rst index 0cd3986ee3..f5148946a1 100644 --- a/doc/shared/RecentChanges.rst +++ b/doc/shared/RecentChanges.rst @@ -2,6 +2,40 @@ **New Features and Enhancements** +Added the ``ARKODE_RALSTON_3_1_2`` and ``ARKODE_TSITOURAS_7_4_5`` explicit +Runge-Kutta Butcher tables. + +Improved the efficiency of default ARKODE methods with the following changes: + ++--------------------+-------------------------------------+--------------------------------------+ +| Type | Old Default | New Default | ++====================+=====================================+======================================+ +| 2nd Order Explicit | ``ARKODE_HEUN_EULER_2_1_2`` | ``ARKODE_RALSTON_3_1_2`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 4th Order Explicit | ``ARKODE_ZONNEVELD_5_3_4`` | ``ARKODE_SOFRONIOU_SPALETTA_5_3_4`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 5th Order Explicit | ``ARKODE_CASH_KARP_6_4_5`` | ``ARKODE_TSITOURAS_7_4_5`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 6th Order Explicit | ``ARKODE_VERNER_8_5_6`` | ``ARKODE_VERNER_9_5_6`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 8th Order Explicit | ``ARKODE_FEHLBERG_13_7_8`` | ``ARKODE_VERNER_13_7_8`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 2nd Order Implicit | ``ARKODE_SDIRK_2_1_2`` | ``ARKODE_ARK2_DIRK_3_1_2`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 3rd Order Implicit | ``ARKODE_ARK324L2SA_DIRK_4_2_3`` | ``ARKODE_ESDIRK325L2SA_5_2_3`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 4th Order Implicit | ``ARKODE_SDIRK_5_3_4`` | ``ARKODE_ESDIRK436L2SA_6_3_4`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 5th Order Implicit | ``ARKODE_ARK548L2SA_DIRK_8_4_5`` | ``ARKODE_ESDIRK547L2SA2_7_4_5`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 4th Order ARK | ``ARKODE_ARK436L2SA_ERK_6_3_4`` and | ``ARKODE_ARK437L2SA_ERK_7_3_4`` and | +| | ``ARKODE_ARK436L2SA_DIRK_6_3_4`` | ``ARKODE_ARK437L2SA_DIRK_7_3_4`` | ++--------------------+-------------------------------------+--------------------------------------+ +| 5th Order ARK | ``ARKODE_ARK548L2SA_ERK_8_4_5`` and | ``ARKODE_ARK548L2SAb_ERK_8_4_5`` and | +| | ``ARKODE_ARK548L2SA_DIRK_8_4_5`` | ``ARKODE_ARK548L2SAb_DIRK_8_4_5`` | ++--------------------+-------------------------------------+--------------------------------------+ + + The default value of :cmakeop:`CMAKE_CUDA_ARCHITECTURES` is no longer set to ``70`` and is now determined automatically by CMake. The previous default was only valid for Volta GPUs while the automatically selected value will vary From 3f015dd17154e3270ef8899d62d7798f8bc90428 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Sat, 7 Sep 2024 23:30:29 -0700 Subject: [PATCH 13/67] Add Tsitouras method to docs --- doc/arkode/guide/source/Butcher.rst | 45 +++++++++++++++++- .../figs/arkode/tsitouras_stab_region.png | Bin 0 -> 24936 bytes doc/shared/sundials.bib | 14 ++++++ 3 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 doc/shared/figs/arkode/tsitouras_stab_region.png diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index b5365c2442..00cd563500 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -707,7 +707,50 @@ Accessible via the string ``"ARKODE_SAYFY_ABURUB_6_3_4"`` to region is outlined in blue; the embedding's region is in red. +.. _Butcher.Tsitouras: +Tsitouras-6-4-5 +^^^^^^^^^^^^^^^ + +.. index:: Tsitouras-6-4-5 ERK method + +Accessible via the constant ``ARKODE_TSITOURAS_7_4_5`` to +:c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` +or :c:func:`ARKodeButcherTable_LoadERK`. +Accessible via the string ``"ARKODE_TSITOURAS_7_4_5"`` to +:c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or +:c:func:`ARKodeButcherTable_LoadERKByName`. +This is the default 5th order explicit method (from :cite:p:`Tsitouras:11`). + +.. only:: html + + .. math:: + + \renewcommand{\arraystretch}{1.5} + \begin{array}{r|ccccccc} + 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ + 0.1610000000000000 & 0.1610000000000000 & 0 & 0 & 0 & 0 & 0 & 0 \\ + 0.3270000000000000 & -0.008480655492356989 & 0.3354806554923570 & 0 & 0 & 0 & 0 & 0 \\ + 0.9000000000000000 & 2.897153057105493 & -6.359448489975075 & 4.362295432869581 & 0 & 0 & 0 & 0 \\ + 0.9800255409045097 & 5.325864828439257 & -11.74888356406283 & 7.495539342889836 & -0.09249506636175525 & 0 & 0 & 0 \\ + 1.000000000000000 & 5.861455442946420 & -12.92096931784711 & 8.159367898576159 & -0.07158497328140100 & -0.02826905039406838 & 0 & 0 \\ + 1.000000000000000 & 0.09646076681806523 & 0.01000000000000000 & 0.4798896504144996 & 1.379008574103742 & -3.290069515436081 & 2.324710524099774 & 0 \\ + \hline + 5 & 0.09646076681806523 & 0.01000000000000000 & 0.4798896504144996 & 1.379008574103742 & -3.290069515436081 & 2.324710524099774 & 0 \\ + 4 & 0.09352374858189271 & 0.008652883141566368 & 0.4928930991314319 & 1.140235412267858 & -2.329180192439365 & 1.568875049316616 & 0.02500000000000000 + \end{array} + +.. only:: latex + + The Butcher table is too large to fit in the PDF version of this documentation. Please see the HTML documentation for the table coefficients. + + +.. figure:: /figs/arkode/tsitouras_stab_region.png + :scale: 50 % + :align: center + + Linear stability region for the Tsitouras method. The method's + region is outlined in blue; the embedding's region is in red. .. _Butcher.Cash-Karp: @@ -723,7 +766,7 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_CASH_KARP_6_4_5"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the default 5th order explicit method (from :cite:p:`CashKarp:90`). +(from :cite:p:`CashKarp:90`). .. math:: diff --git a/doc/shared/figs/arkode/tsitouras_stab_region.png b/doc/shared/figs/arkode/tsitouras_stab_region.png new file mode 100644 index 0000000000000000000000000000000000000000..664b69ded3a02bf8b171f3442c5675b32a7dfe14 GIT binary patch literal 24936 zcmc$`XH*nj*DYEEp-I{x0+O2`3X(x`MuI2`5=4m-Bq*7doCF0yf`X_75fA|plqgvd z0YQ+QlLX0>%(8<-o?JT>dqosiCwP6N0o&!Bz z#nsxv-OkC8UC-{0H6kRzf7RNVUqnbmj9o-jT1Z@4NNmQQ?FoXgBbus8dY(xO!(N`W z`e|D$okn58#NWeG2}EKkh*du^#Ae;*#n2Oz#LI{%s+wbsCdW^(e4=)bJ9*yO*+NG> z9TUu;#PWOWNUT1#?mdH80p$%2njm_ml9=CH(T@u{9Q2)vla{7eR%Y|^@}%`mW)ECS zT)kvj31FZzPt5V?Pjj9+b@;)c=u3sH>ukX*#pFe-2^>s#Z`;e;9wdo&kGBQp_U)9xZ zO_5{Tyb&o7J+8yRpCcN{C_Wc&XsW{+%`CM#m0)(RR2J8gD6teo%DVk$`eiXif}q(* zncKAFLX}yKKhNcquCi5@yF)8&D#vDxr5dg29z+a9Df`pi87O)#W~aNnah!&xqod=6 zxI<6H-KF`w3V}v}gXw^S>7E---PO`|9U1&LO0q7$^xv@?<$ory{nc_jA#t(VYjQm3 zVidDfM}c)Sd#_3~t6b6i)@-M`pWVv%*Vu*Y``$Fl85tR>t90qj>7KM|5p$HB>QQ>p zj+2eCHuO9p@R4GK5Wb-vCo9~s~k=oi?Pv%0G&w{MSYlap!S~!^)^QT0t8e>>w@Xt)h zt7vFwyw_)5$@X;CI=cHwqT|fT$%$)_81bAC{UMv)m0aXFJkaHOp1|o*UhU-EWpE*R&50_AQOX*z>jtA2&jH9IiC5@kMubbYxzBIRZ~_pxEK1 zLV$nE3vrpdzt8gWij;R+ufh@mGJIXU@2$({LPAsHE&wjG$K+oRQ0*l`HHWMRwtm5GM#{z|XHosUkV)nD#YU1jaf(n=WLRcn~e+l--n&2hNfQDvmLLSCW3CV2Uwss19$}-WqiNd7L!eFTr%t})yT-WD>`M1a1b4`A`n^hB0GQsqp+S;?vIgQ9V zja0%Q;omD)P0?%L-M?wG@1Yd3&3KPJ=~uZqvzkkFv?jwh1%t ztot>mC#4BiZ>OcD-P~UO`QRwasvLP}>oH}i6Arz3`U&3?B`%jObar;abIlXzb!%05 z`UfV*zBBWYlkk1YljHiHcYK+JZ-$K4Rt*0x9r1Sf`tZc==Hl+}iY0jFtE;ObA|kGC zZcb%Wblh9p`w?w_-q_E4dSvS4tsU3CL@viu7t@+7bBtN?%Ha--dw+i^AYZn%sfkh6 z^Zn}fRld1dYA1Gb!(KK}mx`uh4Y@x@gZzEuZ1^G)`% zv$H`x-x?d+HqWiiDT)Rh_>La6znXcm{V8s>IvN+PypN-muS%6={m~*Znp=JS`gO)h z_fQvi*68W)&qV{azp(8+<%hhN{U$}X*SOlZY)99|CKJ!8^5CexSqHvqmAB&ooBy*H zFXoC95=^}{E3zR_{utD|{~j{h|4G~J!#;Zm4{z-o&r93pbgI)90oZ}7KVQS0s{Qb4 z6cIEj7rUZaL?>vPI~+0Up`9cdn~*@CwLC|*;xjeBcU9bdOf6qRj;E=uJ8dl_gf_!6 z?bSvxk19sT$mrw@|JI04{$?HH+=Dp}MhXgws-u-&Yrh(zSbP>fG*mvlWn;rC@7w2a zbwJ_9J86$O-_>tCP4?abDMHnnvLyKu>7%mm3CGh_tN;9BT4cM0$8XNGr;qw9$<@>} z+#k2RaN&Zswsvox3FQCmN0&~XJc(A0o-Thp7i{uK9bIXkSeg9wE9bSe z^H^YcF%jv}EQb<@UV-g0s)-p{*2_OqoD{7 zBM&e5in))))-@>pcWN?P@Q{0q$0pidsRZ@(9*9@1)HBVkCM6{)I(_^8y^C&lB3hxx zNW11u`w~WI<40Zdy<_rO!*QEA8W%5qZ)s`y_Dv@NlK$<1qHmV6@^gPq>CDuO)NcO@ zI)P=I>UgC>S`+XZ=HMO)6|aDRLGK<^!UO@6oOc^udn*kIrWpt2(U83->K_f5Fw5X` zufEZqtAP5Mezw=2lngi5^RB}8&njebC?5F5f$U~`SabCGDPa zs$5Z9KF(C%Zs+p?Cb}Bp7=rp%Yf`%bKi8>KzXyt&ukKIF%E;WPaFAQk!Nk6Ju>&c{ z4}d^uXy`!Gy+3QyeDgnEDwtJ_8Wq|k%iPVYtQ>kvuC&XYci6ebAC2WuP^fwT-uYnf z&*7TFVWC}TW}`wF4F0T1c@fO;+>T{^q>jA9YuDyBsotx<#tcK1FZ=3|)`>Zd?7>Q( zTmACjSPe|?Wrh7BC$BC(vmfUj*Z-3%UcEg(O-6QRQo}xfKxq-Zl2N56l+}ng7oVq@ zRGWVej;YYl*6#U}Pr*N$AA5Ji>(*e&9n+04J3BkKU*Dm?41RQ(D5B_Iv}Jn1C}x}L zpF7aZE+NsIzBDepb7@@Ivnq6@g@}(`zUg&krR?^0r^`gWUGFicb1_FK=(3i0PoKU* z=j}&ocds>wh_vXiRp88-6+f+oQ@^uwbM*oc^pXOGgRQz(ul`7uq2G)7A}M_*yHdO2 z+?2vf-SLz;g=v_vp1fR9`POH`Dt_6isfs4@-s`s3KZoy*z7y#3ziOzjZ#NjP>>s|n z4@(;|E?d5Y+SI*eX`KCVVl6slHgfBA4TpO_4)si1T3e5HNV9F$$*CP1n%SV+3@3Ll zo{_~Rp1X5>PUQv_ou==4cd8Om{sO}cKVYG)oJXBs=EZW3@5d!1I3&CsHiwug+Hg}i z+$$_F-gT*2Yn2%=8Nv_VnbU%aTQgDEu9H)4kO*%W+n{^r#9DV!fZai@MG|@ zB^28^t)G5FxEjrn&-46|POR4mIP+gWiHQ*c{Do7w4}ib|ip|%rUjh08SSTy6tqrAs zQu+4QRRAV;0NwP~L~dwkYOcH}*7lJo+a4{j?t5<$us?4W|BcYh|Id`;aJk>|XVSU1 z1NmBV?ySk14IK`8L7TlCytg>HxzEcK6hj86p3l1XI}|%G$~8KEruJYx6#MPlw_a19 zcT1}?{@7{`sp+65<`c(xw2do0KS*z)3$H0P57rA0lp`o7Ns=x%xdx-Bzy8`%Jy~`A zri-$v*VG9W&iu8twZg(eK-dMYQx|Zm*49(GMuiU}A|R79*>UIktHeS7WmcW0*z`!6A-(c6Cc0QHtE@8Wu`vB{VX^RSg2t&5rgDYP8cB*`L9PUnf zV5;Q?Rf%6#WA>=kx9%;U*pxb^`ztHUFyB;D^BZ8MVaUvP+%m9fIXQEHZ+j07XAQYX z9oN0re9|IK`9H|xydxQe$6@X6uXkQHe0TkIW)Xl4`L*w&K_epWGi_+q_Jg`VQ0=#i znP>M4O%gWssdubcENLaE`%SleKksj$#6Y3kTpG>biehkwxD2qd^`YZy_e;~j*G<7reDrYs3bqi&&jc`4I!ITwGBE|gHfJt zho0r4$;W_0|3$i@c|NuWn_G%9G)9<}uk>aN{IARg@L5$pTlQwF-Z_}v&SL@(*+K+W zre$00yK}@{#_PJ@8omVJ1VN#dAfP{ZIuvWla{7^o_m~b8t&i8&lVSo6)?QYd6cDy3 zF_c8H$jI+4f0^sdzWOHTYS=FHX&(>3!Tv72 zfN@rJMpwO^&t+Bxf8)iY+Y5z1pv>__((H8Lbvh0d^UP{Y?JC!3zP({nbyvU$-f#7i zy#r~6KN6c})A9mvxFOFby)yAPzK3J$5(3%V$?xaswL1DfcvA_01 z;SiAPv4Yj*pI?eQF>z0yj(E?%Te%oBkhBk!U_I-2?B&8Y8Mi;``#lxwpsor3IEKrNX?W~fxLS@zvj1o?MRi+ylklj^KdMudeKHMTokYkip~3lLbIW55i*>@}`=X_P z0r{<|rg){D`x3ToiZVVWn{?$lk&%>(Nq1uF)T0~H7fW7WxO52xecf;753R`6w|dY zF;4QE9%7rCn#fbw(@(I;vHmFcm=E3}?5J-Tqrc2B%Ebz~@D-X1ANA7Aw!QkY_h)UX zYRhy{;iCSf7h+yNL+M8X4*eEucQ)n&4*pD|AbnI2eN3&-Mb&q8q5lDpU8T5{qsz_3 z-_6<1TN`uTO)MtqeA_x%(3KT!akhT{PMLo^{vf>qGA?wwI}a50KF^Q# zLtg{XsvnvpIJr9%PxB^cEZR+zQ&1EuXh5NT>AM;}DkJk? zfA#_GyJNLzI&pL?n|j*w?#6CZ+9hpmR%!PcI9K_=B&4$O5v!*=^azGplRR8=(4Fz# znJ+83bPg?%wobC100#E<_O^>|j=DDU%itFn&fR{tbm=C*s-@~($2$+WlSgCjGn9`| z`mKH9Fix2}%njlKHmCyP1?YhC;op#hCa0!CB`QL&wTt+CaC39Bl%Tv)1K{ZG;YhNOg>nq;srQV6bm?G~|GxL@2rIzk*Ng2>%!s7` zXVsmf5BbQcC-*u2AnLSh#qe9he0gX-_IEb!4c)zFBDHW?Aq*<4|E$8a%LKlnW`A=K zdNz}f&Nv+IC!l&KfK^>u)-#{deX5|aj=L!*wJhQT_BVP-k1}7Wo`c7*C>~+OOrE;t zExO)9)Je^@F;MRDR^(6_8iMZv6gQ_X2kbl<==6n(J2&(-OjI6&ycfx&>a~Vmh=_zT zD>s)`88Xic6K2(ZxM|3*zB6sFJm!1OXzgq+YFULVpl2MhXY=@zf4GwmX!~&a%dz0? z8P&VP9tn8gFR<3i;BfDax#!ooq*j!WK>oIHt|GLphrwT#|C7;wL@Aexn;Tj!_|MpD zDjsssNRi#~*srv{Sj3#7Oa8v|^4Mo|!e%?Ho8rzi`3`i+1MT}B6RS63I= z@l(%Cu)uk0vCESbI{&PtVmcSerZ5s$Aw+~A*RY)VL^)Ymo}2x*WT23~H55!=>K-ws zKoH63@5%jP(FB*0B-K9NlDCh(I$<4+ahcgW6Rv~zR#mgG<>%o_a1Ne zTpWGOt!0pJDu-XVM&b|Su+`a}8HIjG6nF_yQQ!sh&SvN2=(3*Ha{Ty{L|T;)sowo9 zQy78NF|D-M08G*|FoJWYi?bqewY$);8k3%qoc1c z?l>fgtAm*j#TuIV6-#l$-3Xn4%Rq2?@uPjhxFwK+-%nEm(aVixBS0`Ohj-=6jX#@C zwYo1yY=@nG;zmLm|NVjB+6RiGX5(K*LOX*KDS3WMNyvM(2Nn`{QJ6FLHciL#V_%p(llx14?pmKQTk|y zLy(f2Tr%FW7TmH^ca$1NZB@9eRDiJlbgJuu(r~{p$Aw_ZB&=pk2gl!Q7!GwjiR~HB z+PFj+kF~3OdVGZ%30(e~y_EiWf#K3CJY!Bg(@|CQ{DH_@4X1Bir{TyEbt)%NZ~pep zBFY63GSSwK>OUWNhhgXE)4c~N;XVkWeQM1~c74K(@qU{p6$B4aSTy`A6u6D~U;e>f zR8UX=^c<8q2|A|Hnt;QhGPh%_vJ4TAIOot)Q(ruM_>f!c>B4A@S%ovi_mLw<=6my_ zzp_d=4qdx)o0@$qr^<(0|F6nLZs^9cf$;KI_&u;9(vC|R< znik-EU0vPKkg>HOl(sX1g1vd7w_2HBXO#})Z$R1wT4NV_J2D(FSj@Yfzh1U$eeF*$ z(5P#87PFT_h(tJVmVS6V4V*`&c5=?yKagHQ6}Vnx8yg>A4DE^a&&ZRaA=u-mE?!A_ znvei&sg<>Ld|cdVt<8o0PAFbLTS23vY*gU;#}!wH;- zm*)T~VO&-xHK%5Q>xYT&n#`FQEX~JHy!6{N^7i%y5~65+$fMT;cb973e1;N1&ixWU zrIt;9QB$*B;Co}^6&@E@jnmIXZ$athUiDktuU}lj#6Ew1CImA<7kqcf zMI9zuORy?KpbRP+ki5r_AD8i%%Q!m=I0%~Mh5o{Bk0?+RoPR2(?*@lw`4Jthn zVao%cHZDFB`n-q-4)ZsBD)58+XU=$yhx334m!B&NdQX4hErp$#bjQ*PcoRASZ+O$b zC)W#9r#=?(vFU zPoourF$4nG&Mv$EHG=f7+@Va4H06D4c6}XYn|MgsFfF>S^GUy2C3R%=;KNl zHK#z$o@@RiHU)oQcp1nd0Ob3-TYw$ky{e+Xl{k%>Uc2VGKGW`yS7rl1%l{Z|TUr5n z@ErZOj1rEJWZuZ70e(X>LZXC|_Js?KLgtD<-B*o#gb0EZ4Kc-+2rd2sC?_M(hQl<> z%avj3?lIUxz3D#>DC=<06I2wC#9m|5bkfy8B?%7?hk=0PrE7TY|7Xb)?`-`U8#ZoG>|Vb#1L%QP#4a zGQY(eC(p>SE1?ys;jd57#@9oAASyk zP2NDEzYw2+w}ATeMmxD^$$q4=3?JIjp^K}l+8TN5wgfHQaTG;pR@6R{7|CjJ_U>6> zV(U)h1yu3cPYe2Y>`e%b0S~B#s=kqQYNkYr#vhIS57s>0_vw2|Oaxv9?6Uq`J$z~N zF3{&gg5m><{X^f}YaclH`QHILdLst601T1aZwN@0-6Bw*l*2$R*REI|aLC`^na?lQ zg7uT>Hvst!^2gr1*rnGLVUE;CzUvt@0z41BuY!jA`&S}xNK7$+p za_cEMx#6wX;1+Or>HR2N6D^t0tk}}qSXuqWdKs_~OcO!tpM~&u|Gf`%G=#XRptZHN z-OD+nhJ2tdm3Q@|IJ%E1?2Vn!1T=5rq2Jh|%mXPw^`7DVhj_K{m0v{56-+N*2u1&} z{}pE-uc@gC;LB@k_^zLsu3C}m3@oqB>*M%}co$yp&6JoJ=k*z#`~(5xkEwn+w~~dr zvUE^M$&{jsL!3j&molrMU=@JCXsOdEAXYin%QiN@fHKP0YbH`;=6HNw<(ZR|Zw{NB z(p#Q)uI!t=z(1k$C@6UOq%@0%neWP1NFGI62JfzSXX$Vz`}}Bb9t2rBl!E^8V}B|% z7o02CW`G$jg%gXUnaseTVIjYS-Wp;Wog$$BQC~rR^^QH%*0`Xb zVazMSsX(}2+AY$2atgfw+cD(8B{}kIUei*6j;ZASOsmm#{cYhDTa)mOq06FXOg$p~APc9d|o5UnGmo|$A z1I5xe*Zmem7B8?DkQ(vB>_2Ct2yCenZj@AzB$-~)Q{PY0SiQ4=uZW0<-~&g8hzKm{ z32{m(<%VdsL#VFMOWy#hWMl+B$_qFg$i4YLJJfo^+X4=^0sso6Ln?$sUY*ZarN>oP zM2Ne`1RP8}8AVsr7lb*uiy>g3ydi?;tDB3|t#2_QA;eSuZ69J{V}FVhWVBbAK_k_~ zU&3kJ5Ca&dJJ;x{UpdS=lr!*)?6yP+J>1TUpkant&@nZYH~$p)HotmcfrcRL{`P%Z zk4mbX75iZWwLy$47l-bZE6y<4ki!4uyv-YUZ=nLzB}kj`iJk1Obq(0K9{VYmch`%- z%<^0OZU8$FT&7x9c~d00+|?$F7)6q8_c$(f4%vU)&QE|`(A*`Yq@d0hkPMI52lRf~ zx@BSmmx4KZ^7QF1e1(>l7D^AJ&kB%(J#>PN5;SxKd=Gs{UeycxcB}WCmeQ56qrs}y zKo__%Pydz5dp}nzHVX<1Tli>^2~5=H>*oTxQpo~8 zf36dr;*e)-d##l~Ktxjc=T{<%+c=|TZ{l5$8FRHKJl{^85{r*z{kgMYk#&{di=P@x zQKxPRJrgeEG#{U61v?TflAX@{S(w$=)hY(7sldTb7ZzO)rj^T>SIHDeU@?|?%H@NO zj8zyh)?{dHpa$F>pi=tq55ZD{unfVX%lTv|AvUh}T~rH(Zy97Go}7}k5hdqk1aKWw!sh5Of;Ii}%M0mu{%z zi@1v~TSdOb5qJSj(-+kLxn*IW^Cs&L!F!YG`)4|~sA`?9lbcQg86x~k2aO!Q7Rn!JEBc%lhWwwR#|?0avo zW@$^TeAQ9oODG|+;v#3DZK0Jz@yBZd5huv$GV{q2tD|GEE7Xd5Mg_&!ua%0>8ob`U z{_5YT15bZ&RxEUGH^0+mNOS;`!_Ih?x$Ug6*fl14Dl7tLS#`07KHYoAEyJPvs{Gu4 zM-f=u`Mg+*RHn^kqYa)_+7f5r`)l$qjH(0QQ%Nfln!^21>L$*e-HT{il1r?}u6lLk{uZIGOx97DMZHr@q!6lz+{1SB`{TE6hfum z0g+!g&U~bw8X1q;#wdO{>L#6YJKmMxlay^GiE}K=FL%9I7HTJgf&Bk`+(dzB0~I%E^W&^d=_+AhIz+5dwuIe>%XAafB0|q=en+qSg@ix{ z+t^_6<*oi^E>GwhdIcEK;}5sU3vXo;e0m-h9e8n}e_abtjA+5+vy%?unYd(X?JLU_ z&`E_)bC&kmbl2+>U8!xCWz~@r{LfrR*-V$q%()|;mm2kCGEN8$s) zM0z$?monobGnI3|14mh|EnBaRtB?=0i=wM#K>d@_!pq8q0OFXyA2TNv&(*1aIF~8U2=IVMuOUu$& zt+9ogs;5?}f#BOmSmxBmPRS`Bcso!;YmlFfRSp3C~UF8k>}YA`YUQNf=kyapUO(sP7cO zDryAO)dgW-aw2u?^vn_l!K?Xp%>#r1CW}s4cD0eyyXVKZZ!6b1+<3@Tn_T+a&paSh zq^nk#2da0@b!UARFbzuUp&nmo1U4!|--pdO8#vQ;$<(?$+tQ&iRhWPLMswWK_HRf1 znH0*u&&J%w8-@LE3*(BXw7*9km1b1L?8qx$fO-cIkIi!|2wG~;|4}N^hMu&;xyg6z zdY24gpeUB@9&q4b7DOE((8BBiZUC)9AJ8b2UEB{YAnjELgGdrujhQLziq|6Gzc{9>Tnj7)k_K#il;jKVtGTTLg;OH-bpr&DNPV zGM)f=aI+)_$VTlsp-=7o?cooO*rHGMXM&#gpsaqYE=ET5&-W zo69As`srA-Guda4W3xbT*F6*ad?8qcIA( z$e_LSCC;&XL+;em2r?Eipq?sSkd6(0?u{TpP!*}rKLnzYz|^qlPv@=FskDg@b}VqO z#0~bgB_s$j+(CvqzALq#5y8@|P`h%R^nm%J{AaIqHaFUs$v=^G%>SKd6qXOCH&XDi;JOm3Jg>Z%BvJze_s_+OBMhqgt%DS-8s0nCA_z6woBjOq zKmpn&uoEeVf#y~iK@09> ziI7ivVx|obodzX{O4DJc1X`I9)nI`;*XtUt;m)eDkzo*Xn*5g@-#WP-^}Z)7uq0*> zBSOMB#yJ-Pw~q@KNFeOj!=m5IX3i2IpDw^}LtvA6@vf~$Z^zc zM01c*P<>7yG?zi(IJe#yA(94b>pidTG59Q1-;j+fmLy1ED9pRCyH_M@D>s5d9C7b$``aLU(;%&Y=4$bx0FpmOhwIM;d_VON8Lk#gC3l3TP0ioUNA zX~MyY?DDm@#R>=!b3S+p(Fbj+4_NNZn?)YCue_!}!dS*RzpK=TbKjKudkLWvC*iCL zoO~^p*bO4Y{PKUdjD(y-L*Y{i)bdVjD*+;W-dA-f))8n-(SLdsyF5qr-$Q<(0vM{D zg-NE(L6GgjGK^AIB}M8OSEyHNS>Q1`6OVI_huI4w$U^jX*vC}#us3i4)4vy>{&xZP zZwrJBcwj1_?Up;-TZ7<{0elbCKIj|*Ws{GAa2WNRcm(qbUYqKEYgG?Q5)$N-k}>P< zULG5m)Zqz%{Eex;4yqCCD`4}Uc@-BIw@v%~KOC`!+&o@eaZy945%sM z(wX;@hVc^BHzvZKP}MO7c<4UfdoV(>^5NshZD2o6D1*=6wkOvJ*n!Wz3P6d&){14Q zR4LLPyujT-PZ6bl=IxWcoSgfDJ=^2HL@V`X$#GnVuSy%*o`XZj4;(>g->qz;j#Ksa z-huw46q;`!07S*b#W!CQHf4V6TA3LJd*n#~SY`z)i$a8Pwu zfVO*X!VD)F^@+=q<3Kdrn|qs2jsuPR4;UvB|GsyoPZHjf#xH!l-7kWxgZW7vdQJi- z30p61pAPv5zzA3XBVda`2nA78@yiElCxL{1ZuAg~T{r}+(L(Thqr9YCRe zZo+}V5l`44h%*=Li28~$AwT=nqnL#&&ccaN)-~JD0EmI5wMI}5(h%5G!ri>!os99- zwps?F$D^7im{WdYq_G>bv~; z?=!gs=iVq(@}-5&v|SxI#G2jVrK2D*yG}u0Tm$5g#IXBSkQ%~|^VE*af(b>+qBaCH zqIEFi?EyV{2wP%+-nIdv89dMKeS>jF>*%mc5F*k$~Ubl z$1h$lv}wu6;3^&T1Jw-Jko}GPfZ@Vh(b6tIKxH}Dn^t&G)rnFF-!wNh-f)xt|0w(3Ow6tCMW(uo*AkkuQf4BYY-Dh$5;RcyWq+g z|DwI31D15uP6=ada2JG~S#-+A_HbmP%QXo9?gyfEngubM8b$*2E%KBsiVO8 zgVx~9Z&)syBJ0%=A_80Pt|9-BA5Ik((q8o(zT#fZKJa+WWsOs=XO4wn1upG!M0mQ{D*EQbO! z-&_!uxbAXx35trYfp-CYAGCh3^xwp(s;Sjqy)3t}J9;R8)TdP9^~rcsPmrZz_s1<^ z5Wwbc!ABl>5hwicg_zyyXHvF0Z$Y^1xtle1UtW5Sli}(>o3q6$!E07lH3RCnx?Zz@ zVeng2R#t+xI}9dw{|2MOhJZcwJqk!%W1c0E(a_j|x-JQA3mABS%lloSJh=usKJrO$ z_iF=~l3#)SqiF)9lI`RzonM1j;H|p2{qc!ZrF$V*C^WtxdxGZMB5)K`OydO!cXTV3 zGNvG%>Ix|(5_r5{5S%`FadET->D|J!fL@M5O6voc1mu!rDYyE6$-2>h#RWR2@$m&T zb%lxUQYA~ln80HI7Oq`@HZ4g~YZ5ho9*ugjp^Iue0lYAuRu<^l(6j_QsK{{8H-SY! zux4IpDV^JS+5th5;Hqdx1r0Q1b=2q%*oF|*R{xb1kcEUQQ2)$o+EW-dLV{(Z*1E8z z4s*i(4^@~)S4TrdX95CqG)85ZqSweb`c7NK*XOjeQ=I$(sIzPP`0ivY+7C5Q1a2LZ@1 zpA-k5kCLw{vkn0n61Y#zMlGnPNQjJKfEUnV_;nNs6Gu^rEdVxn6PB_$a6l{Pk8r`$ z|LfC1_s`a`oQMGk1**R@<0?R=%&=%7A_7=lgTQ#eWWi@%R7OwP1W1>yfgVe>LjCKf zK;H*d5r9B|>NC^GWX@^)LIV2$WfA^81Q3}`dKy?6Zoo^7S%Ikc359d72_F-mypyDZ zD4s>3o|uI?6N>IQ0m_l2zXt~v(KzSX`^0cN#ef^R-Gd{~p|}w&NbecS7tS9;aU%)^ zk0rCi!9wGlxew8Uxw)U4AWXmmfDn+Mm4#JypY8a%Fy5$?9q3+W8}KN`l|w252?WZL z1a@vLoi!?$gggP(gW!UUqN1)L4$Y8Lw-MxQc>TP22}nM$HbE8!lB8v!KqDOegpDh^ z4Bx@7{1R#fc*$_8sO9QwEX|{Q>Iqsvz7g9Dl(Fr+VXz7N8VP`M*Uj~EKAUHG| zCA6+ZlF?Xwlyrk`<{#o;(V;zYLf^n3=dwdr7Ipk~*fks}0bWj*zfc!tYG&< z(>>U0IXyj{sB_vlLoZW@)DFu-iC}T#mO`j%4zfqFR@WPFTS%m2#!#l*EsnIKNG6%u&Z^#kUDv(q=@#@w~Z8TUx%?p`` zfrlB!4X=k9-1f`LI)b3yg9e~}5v*37x+L{JyT=$M0aB~t8{!rVD?N+=uJ?%eB<&kg z1WN+vX#?*{I5q?(Gn~9KA!R06q!e6I4LVd(8VFq-W#14njTnM9BAUN#s0dDpq~3@C znSqeD(ug@gUr%LQp-6S9r5jRD)Xm<16M3@fTT z_CJ3RLK7iBL+%y3&I9=a)(b{)$6jOhGAuc0ps~-^2_9<4C}IQ>w3hD@&SKeuQZp{c z{AC1C7T{Im@QKHJKsCT;t;b5LwTDn45I=7}R`;A$Cm9XG4qS=qq(kFVK~W;4k{abRdSfmH6C>Z?_b^Q<;f#w7 zM+*ly7A~c4V5RLQ~dY60Dq5)zev^3rGdnNg)xl4E;wF{ zl$^LO!~msy!l>*{-JdKyj-Xb^o0?JgZ%es~AY=3}ocavA(fBcJ(44UVE+j&WZ57hp z2OcGr5;5G#ta@%)R%vHNc{t8AY2@$dG+{a7vMt61+wANP}x;XJM6-MG9Y%luWdp3 zvr^ZJSQLfv+%>lbmXk)Inba8G9Rn<% z;z{?G{HzSwBYP`Ws#IJc zfQXI#KM7Olja;2?2D=-)=0zIAVtc)zA@BzF5XEHsTce`@pkwBzCnr7mW6PrXYo|Zj z`8{hP4P^OqklP%&eHu&-diwgW<)IGW0l#Kd4}8JF5P*?u#>PWn{!`eWz3hEX>zb;V zl*4s48`=j?phR<3`uA{Oep08dqo=25WRxxcPAC1op)csvzGFe8=NyOnKwbmzQePDq zh^@8jj_FdW6>da1M;%&vdhj^3{JLgjBz3bc3?L#{wEjSI5$V*9upQ00pK+81x&3ha z^y4Q_h^k;@;&2pz0B}_YEnwa{UlGr^S1ZId;aWy)$UphDaXt_zB$$r)1xZlO;kyV5 zwTNv`i|+Q-5cIj+YsSS!7z!o`W~eM$Dx$lz0NeA1NP?XcRJMq9{DX7>*#Zn`_~1oc z=(U17ay<_xHO@JvdM+Q931MJ7yfmIFSE{jke`{q+hwZ?iH=l~Fcz8uDmqhCXk+g+(_Ax9FcLAu)pEfCXWK-G^w&6#xn-^c@x z;q+e?E>Ho^jQxNY z=OUwtO>?DQRsyM!iZ05IPJl7@(&%{=Q~}$@uwOW9Or;sD`pjKV?!V$4@7vY|mEaIz zV?IT5xJbKA_jA9G{8W*zu2W;c?ah8Jci`!rZ_1x<8Vl_A|5fNf2Lu4bKls=q{XOM9 zLy~{<6v$9$b)#hC0x=(snotR1p)Pa-z0>7;6ohR-a3RxNLn^xu?xQ+|@ zX<>W?oaVIfyt2_3M2;x!siv@?!d<&3)hEKUolh^Rlo%TeM2D?E23i}PdGnJ7!GNI$*%c(=ON~A70{4PT4?+yrI$>n#%0`o6S!S%m%=dTBKs7Y54l22g>dthF z(NF&KXp4>5KWB@-nk4p_7$s1Q`>R?Ts<;jv4?LoL7Hp=Zs>l35$$o%;tRX6$)XvoL z6x0mYvJf7%e^Urd$wED!Qhlj>csOoR^{NR=MRdg9YYRVv>wWO`BH-UKf%KnAOQtCPD^$Z< z<+|R+SR)Tn9pQ@bv;W)d!^6j?h529GeIhPW#h%g+tbNeT9pW5r=BUC@dil$gtIij) ze&=>3H_)(vay)=7nBds01R{*^-P0#euEN(X{0Ju44%JLA)Qrh&*OMTZC#;K@R9KI! zJogK>C&Rw{6UxkT-dzg?$Z|tQdwimK z2}O9-P1To=a~6B@*ozSDN1W#5t|p8eb$t)tr5Xrj#O^YqvQ?LDT8)n32VfPh zUw<*UD8SFZzg2UHZXxUe?Fy)m&!h2Ao=g<0{*o^V)ZfNOM6Ng~s1$OhNx29lV3X9I zHK5)Ty|Re^5A0Ut`;UVJGA5hfx(*(XPwnPni#gJ#<~v`2iG5|K&YGRQ(t9gVU*kaK z@?!dFUfvuqn7`}+H<^a-LdWZ7xWN&iSkW(h0jeQfi-4dm(&>i=^_Qe^kLKH}ZGx2~ zZ_O?~Voe-ke*8CZ{*|XwTp`cCXMr~F3E6UP(Jyj0})C%M_$LR-qbBBqR8)L%o{+UO4WIvRL|7Ze`nn; zKNPxlXh~DBk)!u~mr3k#- zr#TSO;rS4uu%;v98^m`J1#nNKRE+MUep}D=d683VgIc<(qU3*AejM+XQ%!X8vm0xi zSxZ|4r~*xgBCMPJzectr$lFzND&a5<)A$sF>{5yobbf|7GlHXlBm-?RDX07l-}n3? z!gNuI+D_ffB`5kM0y!7Vj|5Flv=kDz{$zd&JI7{K6g9fit|wssAA^CS@%AMKX?3Fq z7kCKFdgUGtaueRJ<>3ECr}oe9V$PcUjq`Dt@A_geF)^xYA=g+pZXmfKc3;rFNX>R@ zl|--5z8b^!Phy0QlxP3MODkj56DVQ4i*efVv~g9}`+JPp-Y-8rPIHC|3b7?wDH;p3 zqsLZzTB&m{o_A4i%Iuo`MHVXrNgfH*|624S1{>~-p7;L!wKvkrT#=UJtUzhgfAL~7 z$=eQ78V#gPBt-DkntXlkT>BOF_0wdJ4Q`{=55{u(RzsiOcBsT*G-QuuPmLI~3PBH> z_M)5PB*|KHg>lpJs^stu(h|i{;5?Evvn3+MHoat(G11Q1S5*k1`urOqXR2ydRyRE_ z*<*tKkEn42slE02-0-vSgEK2(5%)r#(bJ&2+{~%kvxFj5O41o=&{LVY4f=INk8_df zf((Y9l3g9`Qms|OuGI7pW<_y3t$$0nfT^mE^P9dPj!YLVwg@xF!51S2MNZUgiiBZK z#1#CUS9z@sKd~bxVo^?9L@J!9tcjfO_D7lH=vT`%1wLuk}YmqBw)s|H1(EVA+jLH$t5G*bG&>Q$=GQB``&nw=1bK0Vk6Hj&b+Mq_pHdZk^78fa!fQ~dA@ zj(l-NhWo~azwyGta51JmJ5aBLMv}E-UPt@y^wFl&cqFf>e@Tuy6d5Wf|m>3`S#8 zE*mFeo7$+w8Jvp1@)m<~wk78g$U?5og z4fOOdxN`T|n|LFb19Mlrp4SOZ#Rm;$hOTE0*S4$0+s>VJO?^*zzjdYk=ClXV3}DX?2gmB@ z-Y*GouOWf9e&u&HGBG`*r4PW&H`wr}T^OF0m z36N`AP)S+@2(eCe4Q;42@Fp`;8@7x5~+QXW~4C6bgqJBMCjj?hVkgw7nhB4o*uG%>B#IF^v? z`%)Akp3j+i-{-pCzu))%$JLeYv)te9_x&sl)<*+*o5-Ont>`Ap9Ka61wf=-0%+f%z z_~OEP*I%a(L|8mJ_Zn-L{f2i=L6*6o&xu$3^?x6J1omQnxEmi2bxkGoStH_youvLF z&m?rWESuE)bhc|L`U^gyIIm9V zs%kdXYGy4f^~R!wXw_mx^R_73eO2-T)$~sZruIQqm2=^GMMG)p+$ z>g^L?%Xq}*rKEgf*ttrMOewuKKR=JXgunk11f3Pt)l*-B;&d14_>QtZEa~|1*XQJi z1Y~4n7~%Z&c$q5yxzMFq8wN+QsE5ZKcn#2nvYg^bKHxocby+0nmtoxsF(V_RZWmQ#BKtQUR|H*MrR|c$* zVE6*56A;d?3kz)*%Wwz=YZcJv0=5wm*PE(HUA^k@^ofmkKg`VF5ba&L1}wzg)pdvJ zPBzIM+?C|ejdcoxgWn`13vuLZg}(U2%wEogUQLskdTmJ?{9^$-mte< z68q=bDo5oh%;0;VkV>I|=j7yMII^*^0B9%^_;`6Cj7@DR<}#E@fPY*n6^MPr^}njf zHa3lFP7Dk^uV(CQx~UnmzV zA61h0tk5U)?xmj}G6&@az#i`|`3UM_5aO|><=7UTQr``b(?mr@5vm7$#GX4^mgnck zQaAGmiTNC2x3^4mvLr$&n$l9N6>Rc=Ndj^&dCS{HvXCOBJ(BT-F`?noP~jApvXb>`a=f6Ub?4Y01w&G+T^2be->Az;ghDUyFo- zsr{0DW*TR;edz$3yE9W)lNaX)bl4o&|BL$7@We`2Q-y&${3zgOS6p07W}M6k29yW( zVuF5FUvtB?*jUAfs+eAgvZr&8wwd)&zHs9&4)6cr{SyqIH-nxHyVmYoAu?V67 zaw^dYA_Ye41+4Z*hldqI*8&(rj}D}r6x_KJnhutb#ORLfv2o8o(suD|CL(Vx`W@_~ zZE+AARS=yRDv7y%eN>aAlA#-S7h5*ECZ*yiWOL0PH}$i?2q&XaKp;9TL2)f#SzMa) zxJM#_pJV{PM%@fpua(l6PALV!`1EFG9pIVFg!(Qf-o01iGhwps1>+r577L3mEY2#9 zOHXS}G54oOMMZ&$fzq~#lQRs6y%Jx`we^x&Vr%7PXQI5_8f|sVXEH*@>~ztP!grUC zHtW+c&O57KQ2>Mvkl@(pxg)BocYEzw!knDi>hc+#5~hcranxDhii*NUP&869X^kCe zB6H(|gEtcsUnDHpm6Bg0u@OIRd)=yoSF-tdctA*82agq6P6!o4pM5>xJN+q-V`(I<>K@USlV4LksNij^%B zS9?1oUsq+!^Gr$g{%$>NF&*Cr%{&HnDm>z7?4V$^{Nj5M>71+(s4B-v=nBLV_wO4v zI}g{GJrGY9v<>*vsUyqhRxn8rhkdB|@rA!gREqDA{w?(hqsqtE`V( zQjGaI@=R4B4+DV+I@~0gLkAD8!UD=kKDn>9=Pw>-RX+2*J#=k`p0P0;UQnTq!Yzkq za~;YtdIid%j*dtJBcXh@`&N#oa5b z-99ZhSN#AUHTy>pjx%m_OpK$YALx93wNDGVQd0K+Q*poUPtdQ0 zLS%e=97EqMMVGX`zK-5hy1JGJkQ@9IfzGRS!I1fzJtVvIC+%UNCqR`C&Tgs~BPPZG z%^GuKTlUly~m&be#dkXw8AXd)+vA#v9%J2t-*J_CQm{MSa!X{q2^q z=0FgAI_1CLjm7WT*%A!LBI~lUG6+Eym#*kB>Wb5lsStpoi$|TUH}j8I5aNN80jyF4 z>tttVXGfKP-&CX^95;%}ET7!a(_>wFIa({?22Mu6m^aP;YYTo74qaJfjcxz8pU%=)m($m+CnPEw-v#MDbDtkRvio@?s4z;th_D?i3Ol9~ohO9kQ$R7FSmf z`7?Y|q9%A{Do7e}aVOZox$%JsDeT#NiLfo>?<$^uUKt`(UoZf8+OnIHSu!zHeFcRQ z5Vm$|6r;C`i9PG-QG+1+S4^K4e5!?PT2ENsQb2ofVTu#qzrQ&}nMQ?}mi4d7cPl}x zpJjsEGT-&aQxT6G92{`*#ML7J;QWgi&eNY@jhAut?~6qIw73|1?HV^PuS7b4pvNOc zthr1P^R0963U(sV7cddHMFZUrlKsk0__!C*f&m>CE%ufjPd2Oy%)+1>gK0(uWwpGz zx;iIk4CF1K%}!5@eSLjFvPU-4Xf&@t%*tTs85CB7z=E}%Hw}eiYJ8mKS3ttM9TM!Co`)m6H%C{u`{tgOS z0~j0-sY5Zk)`VGt1eeqE-XWo>;&bQ}U|Io)=k^UU9FA=U6H6AxKFPq?5cOq@h-oRXp7 z9l^93qccVd&12QDcOzvoFVYKa!QzQTrqsury#rm=cK)}I$SW$a4M2^(JB{LThIrA{ z)zHZ3a5rB67a}^ypn-yN85$Hm}Ro$sT$uoOCDm;X~f7 zTMG(V`gvb_d;5c&io3RLAG_wtfP63iYya_8Zs@H*Va3P_Pk$1cL0>O?5W@xApcln+alHq0I`jjZ7045~&`` zRS*D2o9WGkm9Gk>Ev&88KyBMlrzRz_h^RI;Y2PFgoy_wsSo%VIIpDjNdEemV+q10| zy4!nMV6>P;C1Vw}!Ntpq$PA-UG#=Og^0L35PQ{QID>&{FO_t6HqeTs)dyfnczZ&@r z>y!?@=Nf$>*}Q~j3j|Ptp4H-+60gx{g#`s8`Y&R44Gj!@0v^YwxqL;0)5Y)sQ@F5b zXllxUgjy+44aoxCI(rNwrAc1t7a>!rpZMcM)ymz@V9CbqgA?qUfv2Y@dYWzqIzdcq z>@YW+J*MCXfs1qV=9O>X0)vCMpGNG%dFG516LZ}1!AMO_O@v@Awg^T>MmV)C*Ufen zU!_8XT>}a0f?!{NJ1`VjrCYy-j<%^Hj=qYm1>bQIh3b0Ocmo#~$@hVaa& zuR^|y5w47pI2Tr{*a=z&IG{qdj75h~6pGX?nA*MG>PXGSxeJFxcwjBBug=j2#L@Q2 zmX?7i*F!N$2uD6LYF-hcP8R!KR|*|Y(2)@lyHz~JpeM{K3$^lIUki-W%{V1_Lyi5} zx(rEqW$GZP-$4` Date: Mon, 9 Sep 2024 21:07:45 -0700 Subject: [PATCH 14/67] Update doc/arkode/guide/source/Butcher.rst --- doc/arkode/guide/source/Butcher.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 00cd563500..7cba5e9e67 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -513,7 +513,7 @@ or :c:func:`ARKodeButcherTable_LoadERK`. Accessible via the string ``"ARKODE_SOFRONIOU_SPALETTA_5_3_4"`` to :c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadERKByName`. -This is the default 4th order explicit method +This is the default 4th order explicit method. (from :cite:p:`Sof:04`). .. math:: From d61fb3722b8874a7508a404923ad1584a8341444 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 10 Sep 2024 20:20:00 -0700 Subject: [PATCH 15/67] Apply suggestions from code review Co-authored-by: David Gardner --- doc/arkode/guide/source/Butcher.rst | 104 +++++++++++++++++++++++++++- 1 file changed, 102 insertions(+), 2 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 7cba5e9e67..b227f00921 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -197,6 +197,10 @@ Accessible via the string ``"ARKODE_RALSTON_3_1_2"`` to This is the default 2nd order explicit method (primary method from :cite:p:`Ralston:62`). +.. versionchanged:: x.y.z + + Added as the default 2nd order explicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -232,6 +236,10 @@ Accessible via the string ``"ARKODE_HEUN_EULER_2_1_2"`` to :c:func:`ARKodeButcherTable_LoadERKByName`. (primary method from :cite:p:`Runge:95`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_RALSTON_3_1_2`` as the default 2nd order explicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -516,6 +524,10 @@ Accessible via the string ``"ARKODE_SOFRONIOU_SPALETTA_5_3_4"`` to This is the default 4th order explicit method. (from :cite:p:`Sof:04`). +.. versionchanged:: x.y.z + + Made the default 4th order explicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -555,6 +567,10 @@ Accessible via the string ``"ARKODE_ZONNEVELD_5_3_4"`` to :c:func:`ARKodeButcherTable_LoadERKByName`. (from :cite:p:`Zon:63`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_SOFRONIOU_SPALETTA_5_3_4`` as the default 4th order explicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -596,6 +612,10 @@ Accessible via the string ``"ARKODE_ARK436L2SA_ERK_6_3_4"`` to This is the explicit portion of the ARK4(3)6L[2]SA method from :cite:p:`KenCarp:03`. +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ARK437L2SA_ERK_7_3_4`` as the explicit portion of the default 4th order additive method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -637,6 +657,10 @@ Accessible via the string ``"ARKODE_ARK437L2SA_ERK_7_3_4"`` to This is the explicit portion of the default 4th order additive method and the explicit portion of the ARK4(3)7L[2]SA method from :cite:p:`KenCarp:19`. +.. versionchanged:: x.y.z + + Made the explicit portion of the default 4th order additive method + .. only:: html .. math:: @@ -709,10 +733,10 @@ Accessible via the string ``"ARKODE_SAYFY_ABURUB_6_3_4"`` to .. _Butcher.Tsitouras: -Tsitouras-6-4-5 +Tsitouras-7-4-5 ^^^^^^^^^^^^^^^ -.. index:: Tsitouras-6-4-5 ERK method +.. index:: Tsitouras-7-4-5 ERK method Accessible via the constant ``ARKODE_TSITOURAS_7_4_5`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -722,6 +746,10 @@ Accessible via the string ``"ARKODE_TSITOURAS_7_4_5"`` to :c:func:`ARKodeButcherTable_LoadERKByName`. This is the default 5th order explicit method (from :cite:p:`Tsitouras:11`). +.. versionchanged:: x.y.z + + Added as the default 5th order explicit method + .. only:: html .. math:: @@ -768,6 +796,10 @@ Accessible via the string ``"ARKODE_CASH_KARP_6_4_5"`` to :c:func:`ARKodeButcherTable_LoadERKByName`. (from :cite:p:`CashKarp:90`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_TSITOURAS_7_4_5`` as the default 5th order explicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -895,6 +927,10 @@ Accessible via the string ``"ARKODE_ARK548L2SA_ERK_8_4_5"`` to This is the explicit portion of the ARK5(4)8L[2]SA method from :cite:p:`KenCarp:03`. +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ARK548L2SAb_ERK_8_4_5`` as the explicit portion of the default 5th order additive method + .. only:: html .. math:: @@ -948,6 +984,10 @@ This is the explicit portion of the default 5th order additive method and the explicit portion of the 5th order ARK5(4)8L[2]SA method from :cite:p:`KenCarp:19`. +.. versionchanged:: x.y.z + + Made the explicit portion of the default 5th order additive method + .. only:: html .. math:: @@ -997,6 +1037,10 @@ Accessible via the string ``"ARKODE_VERNER_8_5_6"`` to :c:func:`ARKodeButcherTable_LoadERKByName`. (from :cite:p:`HEJ:76`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_VERNER_9_5_6`` as the default 6th order explicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1039,6 +1083,10 @@ Accessible via the string ``"ARKODE_VERNER_9_5_6"`` to This is the default 6th order explicit method (method IIIXb-6(5) from :cite:p:`Ver:10`). +.. versionchanged:: x.y.z + + Made the default 6th order explicit method + .. only:: html .. math:: @@ -1140,6 +1188,10 @@ Accessible via the string ``"ARKODE_FEHLBERG_13_7_8"`` to :c:func:`ARKodeButcherTable_LoadERKByName`. (from :cite:p:`Butcher:08`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_VERNER_13_7_8`` as the default 8th order explicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1188,6 +1240,10 @@ Accessible via the string ``"ARKODE_VERNER_13_7_8"`` to This is the default 8th order explicit method (method IIIX-8(7) from :cite:p:`Ver:10`). +.. versionchanged:: x.y.z + + Made the default 8th order explicit method + .. only:: html @@ -1350,6 +1406,10 @@ Accessible via the string ``"ARKODE_SDIRK_2_1_2"`` to :c:func:`ARKodeButcherTable_LoadDIRKByName`. Both the method and embedding are A- and B-stable. +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ARK2_DIRK_3_1_2`` as the default 2nd order implicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1386,6 +1446,10 @@ This is the default 2nd order implicit method and the implicit portion of the default 2nd order additive method (the implicit portion of the ARK2 method from :cite:p:`giraldo2013implicit`). +.. versionchanged:: x.y.z + + Made the default 2nd order implicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1585,6 +1649,10 @@ This is the default 3rd order implicit method and the ESDIRK3(2)5L[2]SA method from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. +.. versionchanged:: x.y.z + + Made the default 3rd order implicit method + .. figure:: /figs/arkode/stab_region_26.png :scale: 50 % :align: center @@ -1676,6 +1744,10 @@ method and embedding are A-stable; additionally the method is L-stable (this is the implicit portion of the ARK3(2)4L[2]SA method from :cite:p:`KenCarp:03`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ESDIRK325L2SA_5_2_3`` as the default 3rd order implicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1801,6 +1873,10 @@ Accessible via the string ``"ARKODE_SDIRK_5_3_4"`` to Here, the method is both A- and L-stable, although the embedding has reduced stability (from :cite:p:`HaWa:91`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ESDIRK436L2SA_6_3_4`` as the default 4th order implicit method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1894,6 +1970,10 @@ Both the method and embedding are A-stable; additionally the method is L-stable (this is the implicit portion of the ARK4(3)6L[2]SA method from :cite:p:`KenCarp:03`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ARK437L2SA_DIRK_7_3_4`` as the implicit portion of the default 4th order additive method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1938,6 +2018,10 @@ This is the implicit portion of the default 4th order additive method and the implicit portion of the 4th order ARK4(3)7L[2]SA method from :cite:p:`KenCarp:19`. Both the method and embedding are A- and L-stable. +.. versionchanged:: x.y.z + + Made the implicit portion of the default 4th order additive method + .. math:: \renewcommand{\arraystretch}{1.5} @@ -1977,6 +2061,10 @@ Accessible via the string ``"ARKODE_ESDIRK436L2SA_6_3_4"`` to This is the default 4th order implicit method and the ESDIRK4(3)6L[2]SA method from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. +.. versionchanged:: x.y.z + + Made the default 4th order implicit method + .. figure:: /figs/arkode/stab_region_28.png :scale: 50 % :align: center @@ -2122,6 +2210,10 @@ Accessible via the string ``"ARKODE_ARK548L2SA_DIRK_8_4_5"`` to Both the method and embedding are A-stable; additionally the method is L-stable (the implicit portion of the ARK5(4)8L[2]SA method from :cite:p:`KenCarp:03`). +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ESDIRK547L2SA2_7_4_5`` as the default 5th order implicit method and replaced by ``ARKODE_ARK548L2SAb_DIRK_8_4_5`` as the implicit portion of the default 5th order additive method + .. only:: html .. math:: @@ -2174,6 +2266,10 @@ Both the method and embedding are A-stable; additionally the method is L-stable (this is the implicit portion of the 5th order ARK5(4)8L[2]SA method from :cite:p:`KenCarp:19`). +.. versionchanged:: x.y.z + + Made the implicit portion of the default 5th order additive method + .. only:: html .. math:: @@ -2244,6 +2340,10 @@ Accessible via the string ``"ARKODE_ESDIRK547L2SA2_7_4_5"`` to This is the default 5th order implicit method and the ESDIRK5(4)7L[2]SA2 method from :cite:p:`KenCarp:19b`. Both the method and embedding are A- and L-stable. +.. versionchanged:: x.y.z + + Made the default 5th order implicit method + .. figure:: /figs/arkode/stab_region_33.png :scale: 50 % :align: center From 405355c8f8eb5da40211901f7e9b6cba1df07510 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 10 Sep 2024 20:24:17 -0700 Subject: [PATCH 16/67] Remove trailing 0 from table --- doc/arkode/guide/source/Butcher.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index b227f00921..3c5344146e 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -757,15 +757,15 @@ This is the default 5th order explicit method (from :cite:p:`Tsitouras:11`). \renewcommand{\arraystretch}{1.5} \begin{array}{r|ccccccc} 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ - 0.1610000000000000 & 0.1610000000000000 & 0 & 0 & 0 & 0 & 0 & 0 \\ - 0.3270000000000000 & -0.008480655492356989 & 0.3354806554923570 & 0 & 0 & 0 & 0 & 0 \\ - 0.9000000000000000 & 2.897153057105493 & -6.359448489975075 & 4.362295432869581 & 0 & 0 & 0 & 0 \\ + 0.161 & 0.161 & 0 & 0 & 0 & 0 & 0 & 0 \\ + 0.327 & -0.008480655492356989 & 0.3354806554923570 & 0 & 0 & 0 & 0 & 0 \\ + 0.9 & 2.897153057105493 & -6.359448489975075 & 4.362295432869581 & 0 & 0 & 0 & 0 \\ 0.9800255409045097 & 5.325864828439257 & -11.74888356406283 & 7.495539342889836 & -0.09249506636175525 & 0 & 0 & 0 \\ - 1.000000000000000 & 5.861455442946420 & -12.92096931784711 & 8.159367898576159 & -0.07158497328140100 & -0.02826905039406838 & 0 & 0 \\ - 1.000000000000000 & 0.09646076681806523 & 0.01000000000000000 & 0.4798896504144996 & 1.379008574103742 & -3.290069515436081 & 2.324710524099774 & 0 \\ + 1 & 5.861455442946420 & -12.92096931784711 & 8.159367898576159 & -0.07158497328140100 & -0.02826905039406838 & 0 & 0 \\ + 1 & 0.09646076681806523 & 0.01 & 0.4798896504144996 & 1.379008574103742 & -3.290069515436081 & 2.324710524099774 & 0 \\ \hline - 5 & 0.09646076681806523 & 0.01000000000000000 & 0.4798896504144996 & 1.379008574103742 & -3.290069515436081 & 2.324710524099774 & 0 \\ - 4 & 0.09352374858189271 & 0.008652883141566368 & 0.4928930991314319 & 1.140235412267858 & -2.329180192439365 & 1.568875049316616 & 0.02500000000000000 + 5 & 0.09646076681806523 & 0.01 & 0.4798896504144996 & 1.379008574103742 & -3.290069515436081 & 2.324710524099774 & 0 \\ + 4 & 0.09352374858189271 & 0.008652883141566368 & 0.4928930991314319 & 1.140235412267858 & -2.329180192439365 & 1.568875049316616 & 0.025 \end{array} .. only:: latex From 5bfc505497909e2aa36df5fe4974629e83768659 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 15:08:52 -0700 Subject: [PATCH 17/67] Fix number of columns in table --- doc/arkode/guide/source/Butcher.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 3c5344146e..179db6f54b 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -204,7 +204,7 @@ This is the default 2nd order explicit method .. math:: \renewcommand{\arraystretch}{1.5} - \begin{array}{r|cc} + \begin{array}{r|ccc} 0 & 0 & 0 & 0 \\ \frac{2}{3} & \frac{2}{3} & 0 & 0 \\ 1 & \frac{1}{4} & \frac{3}{4} & 0 \\ From b622b203ebfbfd45eacabc6ae0f0c7ab6e958999 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 15:50:15 -0700 Subject: [PATCH 18/67] Add table of ERK properties --- doc/arkode/guide/source/Butcher.rst | 261 +++++++++++++++++----------- 1 file changed, 162 insertions(+), 99 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 179db6f54b..fac32c06b0 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -141,13 +141,76 @@ Explicit Butcher tables --------------------------- In the category of explicit Runge--Kutta methods, ARKODE includes -methods that have orders 2 through 6, with embeddings that are of -orders 1 through 5. Each of ARKODE's explicit Butcher tables are +methods that have orders 2 through 9, with embeddings that are of +orders 1 through 8. Each of ARKODE's explicit Butcher tables are specified via a unique ID and name: .. c:enum:: ARKODE_ERKTableID with values specified for each method below (e.g., ``ARKODE_HEUN_EULER_2_1_2``). +A summary of the method is given in :numref:`ARKODE.Butcher.ERK_properties`. + +.. _ARKODE.Butcher.ERK_properties: +.. table:: Explicit Butcher tables. The default method for each order is marked + with an asterisk (*). + + +------------------------------------------+--------+----------------+-------+ + | Method ID | Stages | Embedded Order | Order | + +==========================================+========+================+=======+ + | ``ARKODE_FORWARD_EULER_1_1`` | 1 | --- | 1* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_RALSTON_3_1_2`` | 3 | 1 | 2* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_HEUN_EULER_2_1_2`` | 2 | 1 | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_RALSTON_EULER_2_1_2`` | 2 | 1 | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2`` | 2 | 1 | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK2_ERK_3_1_2`` | 3 | 1 | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_BOGACKI_SHAMPINE_4_2_3`` | 4 | 2 | 3* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK324L2SA_ERK_4_2_3`` | 4 | 2 | 3 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_SHU_OSHER_3_2_3`` | 3 | 2 | 3 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_KNOTH_WOLKE_3_3`` | 3 | --- | 3 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_SOFRONIOU_SPALETTA_5_3_4`` | 5 | 3 | 4* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ZONNEVELD_5_3_4`` | 5 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK436L2SA_ERK_6_3_4`` | 6 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK437L2SA_ERK_7_3_4`` | 7 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_SAYFY_ABURUB_6_3_4`` | 6 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_TSITOURAS_7_4_5`` | 7 | 4 | 5* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_CASH_KARP_6_4_5`` | 6 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_FEHLBERG_6_4_5`` | 6 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_DORMAND_PRINCE_7_4_5`` | 7 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK548L2SA_ERK_8_4_5`` | 8 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK548L2SAb_ERK_8_4_5`` | 8 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_VERNER_9_5_6`` | 9 | 5 | 6* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_VERNER_8_5_6`` | 8 | 5 | 6 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_VERNER_10_6_7`` | 10 | 6 | 7* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_VERNER_13_7_8`` | 13 | 7 | 8* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_FEHLBERG_13_7_8`` | 13 | 7 | 8 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_VERNER_16_8_9`` | 16 | 8 | 9* | + +------------------------------------------+--------+----------------+-------+ .. _Butcher.Forward_Euler: @@ -1021,52 +1084,6 @@ explicit portion of the 5th order ARK5(4)8L[2]SA method from - -.. _Butcher.Verner-6-5: - -Verner-8-5-6 -^^^^^^^^^^^^^^ - -.. index:: Verner-8-5-6 ERK method - -Accessible via the constant ``ARKODE_VERNER_8_5_6`` to -:c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` -or :c:func:`ARKodeButcherTable_LoadERK`. -Accessible via the string ``"ARKODE_VERNER_8_5_6"`` to -:c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or -:c:func:`ARKodeButcherTable_LoadERKByName`. -(from :cite:p:`HEJ:76`). - -.. versionchanged:: x.y.z - - Replaced by ``ARKODE_VERNER_9_5_6`` as the default 6th order explicit method - -.. math:: - - \renewcommand{\arraystretch}{1.5} - \begin{array}{r|cccccccc} - 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ - \frac{1}{6} & \frac{1}{6} & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ - \frac{4}{15} & \frac{4}{75} & \frac{16}{75} & 0 & 0 & 0 & 0 & 0 & 0 \\ - \frac{2}{3} & \frac{5}{6} & -\frac{8}{3} & \frac{5}{2} & 0 & 0 & 0 & 0 & 0 \\ - \frac{5}{6} & -\frac{165}{64} & \frac{55}{6} & -\frac{425}{64} & \frac{85}{96} & 0 & 0 & 0 & 0 \\ - 1 & \frac{12}{5} & -8 & \frac{4015}{612} & -\frac{11}{36} & \frac{88}{255} & 0 & 0 & 0 \\ - \frac{1}{15} & -\frac{8263}{15000} & \frac{124}{75} & -\frac{643}{680} & -\frac{81}{250} & \frac{2484}{10625} & 0 & 0 & 0 \\ - 1 & \frac{3501}{1720} & -\frac{300}{43} & \frac{297275}{52632} & -\frac{319}{2322} & \frac{24068}{84065} & 0 & \frac{3850}{26703} & 0 \\ - \hline - 6 & \frac{3}{40} & 0 & \frac{875}{2244} & \frac{23}{72} & \frac{264}{1955} & 0 & \frac{125}{11592} & \frac{43}{616} \\ - 5 & \frac{13}{160} & 0 & \frac{2375}{5984} & \frac{5}{16} & \frac{12}{85} & \frac{3}{44} & 0 & 0 - \end{array} - -.. figure:: /figs/arkode/stab_region_10.png - :scale: 50 % - :align: center - - Linear stability region for the Verner-8-5-6 method. The method's - region is outlined in blue; the embedding's region is in red. - - - .. _Butcher.Verner-6-5b: Verner-9-5-6 @@ -1123,6 +1140,52 @@ This is the default 6th order explicit method + +.. _Butcher.Verner-6-5: + +Verner-8-5-6 +^^^^^^^^^^^^^^ + +.. index:: Verner-8-5-6 ERK method + +Accessible via the constant ``ARKODE_VERNER_8_5_6`` to +:c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` +or :c:func:`ARKodeButcherTable_LoadERK`. +Accessible via the string ``"ARKODE_VERNER_8_5_6"`` to +:c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or +:c:func:`ARKodeButcherTable_LoadERKByName`. +(from :cite:p:`HEJ:76`). + +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_VERNER_9_5_6`` as the default 6th order explicit method + +.. math:: + + \renewcommand{\arraystretch}{1.5} + \begin{array}{r|cccccccc} + 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ + \frac{1}{6} & \frac{1}{6} & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ + \frac{4}{15} & \frac{4}{75} & \frac{16}{75} & 0 & 0 & 0 & 0 & 0 & 0 \\ + \frac{2}{3} & \frac{5}{6} & -\frac{8}{3} & \frac{5}{2} & 0 & 0 & 0 & 0 & 0 \\ + \frac{5}{6} & -\frac{165}{64} & \frac{55}{6} & -\frac{425}{64} & \frac{85}{96} & 0 & 0 & 0 & 0 \\ + 1 & \frac{12}{5} & -8 & \frac{4015}{612} & -\frac{11}{36} & \frac{88}{255} & 0 & 0 & 0 \\ + \frac{1}{15} & -\frac{8263}{15000} & \frac{124}{75} & -\frac{643}{680} & -\frac{81}{250} & \frac{2484}{10625} & 0 & 0 & 0 \\ + 1 & \frac{3501}{1720} & -\frac{300}{43} & \frac{297275}{52632} & -\frac{319}{2322} & \frac{24068}{84065} & 0 & \frac{3850}{26703} & 0 \\ + \hline + 6 & \frac{3}{40} & 0 & \frac{875}{2244} & \frac{23}{72} & \frac{264}{1955} & 0 & \frac{125}{11592} & \frac{43}{616} \\ + 5 & \frac{13}{160} & 0 & \frac{2375}{5984} & \frac{5}{16} & \frac{12}{85} & \frac{3}{44} & 0 & 0 + \end{array} + +.. figure:: /figs/arkode/stab_region_10.png + :scale: 50 % + :align: center + + Linear stability region for the Verner-8-5-6 method. The method's + region is outlined in blue; the embedding's region is in red. + + + .. _Butcher.Verner-7-6: Verner-10-6-7 @@ -1173,57 +1236,6 @@ This is the default 7th order explicit method (from :cite:p:`Ver:10`). -.. _Butcher.Fehlberg-8-7: - -Fehlberg-13-7-8 -^^^^^^^^^^^^^^^^^^ - -.. index:: Fehlberg-13-7-8 ERK method - -Accessible via the constant ``ARKODE_FEHLBERG_13_7_8`` to -:c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` -or :c:func:`ARKodeButcherTable_LoadERK`. -Accessible via the string ``"ARKODE_FEHLBERG_13_7_8"`` to -:c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or -:c:func:`ARKodeButcherTable_LoadERKByName`. -(from :cite:p:`Butcher:08`). - -.. versionchanged:: x.y.z - - Replaced by ``ARKODE_VERNER_13_7_8`` as the default 8th order explicit method - -.. math:: - - \renewcommand{\arraystretch}{1.5} - \begin{array}{r|ccccccccccccc} - 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ - \frac{2}{27}& \frac{2}{27}& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ - \frac{1}{9}& \frac{1}{36}& \frac{1}{12}& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ - \frac{1}{6}& \frac{1}{24}& 0& \frac{1}{8}& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ - \frac{5}{12}& \frac{5}{12}& 0& -\frac{25}{16}& \frac{25}{16}& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ - \frac{1}{2}& \frac{1}{20}& 0& 0& \frac{1}{4}& \frac{1}{5}& 0& 0& 0& 0& 0& 0& 0& 0\\ - \frac{5}{6}& -\frac{25}{108}& 0& 0& \frac{125}{108}& -\frac{65}{27}& \frac{125}{54}& 0& 0& 0& 0& 0& 0& 0\\ - \frac{1}{6}& \frac{31}{300}& 0& 0& 0& \frac{61}{225}& -\frac{2}{9}& \frac{13}{900}& 0& 0& 0& 0& 0& 0\\ - \frac{2}{3}& 2& 0& 0& -\frac{53}{6}& \frac{704}{45}& -\frac{107}{9}& \frac{67}{90}& 3& 0& 0& 0& 0& 0\\ - \frac{1}{3}& -\frac{91}{108}& 0& 0& \frac{23}{108}& -\frac{976}{135}& \frac{311}{54}& -\frac{19}{60}& \frac{17}{6}& -\frac{1}{12}& 0& 0& 0& 0\\ - 1& \frac{2383}{4100}& 0& 0& -\frac{341}{164}& \frac{4496}{1025}& -\frac{301}{82}& \frac{2133}{4100}& \frac{45}{82}& \frac{45}{164}& \frac{18}{41}& 0& 0& 0\\ - 0& \frac{3}{205}& 0& 0& 0& 0& -\frac{6}{41}& -\frac{3}{205}& -\frac{3}{41}& \frac{3}{41}& \frac{6}{41}& 0& 0& 0\\ - 1& -\frac{1777}{4100}& 0& 0& -\frac{341}{164}& \frac{4496}{1025}& -\frac{289}{82}& \frac{2193}{4100}& \frac{51}{82}& \frac{33}{164}& \frac{12}{41}& 0& 1& 0\\ - \hline - 8& 0& 0& 0& 0& 0& \frac{34}{105}& \frac{9}{35}& \frac{9}{35}& \frac{9}{280}& \frac{9}{280}& 0& \frac{41}{840}& \frac{41}{840} \\ - 7& \frac{41}{840}& 0& 0& 0& 0& \frac{34}{105}& \frac{9}{35}& \frac{9}{35}& \frac{9}{280}& \frac{9}{280}& \frac{41}{840}& 0& 0 - \end{array} - - -.. figure:: /figs/arkode/stab_region_23.png - :scale: 50 % - :align: center - - Linear stability region for the Fehlberg-13-7-8 method. The method's - region is outlined in blue; the embedding's region is in red. - - - .. _Butcher.Verner-8-7: Verner-13-7-8 @@ -1283,6 +1295,57 @@ This is the default 8th order explicit method +.. _Butcher.Fehlberg-8-7: + +Fehlberg-13-7-8 +^^^^^^^^^^^^^^^^^^ + +.. index:: Fehlberg-13-7-8 ERK method + +Accessible via the constant ``ARKODE_FEHLBERG_13_7_8`` to +:c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` +or :c:func:`ARKodeButcherTable_LoadERK`. +Accessible via the string ``"ARKODE_FEHLBERG_13_7_8"`` to +:c:func:`ARKStepSetTableName`, :c:func:`ERKStepSetTableName` or +:c:func:`ARKodeButcherTable_LoadERKByName`. +(from :cite:p:`Butcher:08`). + +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_VERNER_13_7_8`` as the default 8th order explicit method + +.. math:: + + \renewcommand{\arraystretch}{1.5} + \begin{array}{r|ccccccccccccc} + 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ + \frac{2}{27}& \frac{2}{27}& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ + \frac{1}{9}& \frac{1}{36}& \frac{1}{12}& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ + \frac{1}{6}& \frac{1}{24}& 0& \frac{1}{8}& 0& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ + \frac{5}{12}& \frac{5}{12}& 0& -\frac{25}{16}& \frac{25}{16}& 0& 0& 0& 0& 0& 0& 0& 0& 0\\ + \frac{1}{2}& \frac{1}{20}& 0& 0& \frac{1}{4}& \frac{1}{5}& 0& 0& 0& 0& 0& 0& 0& 0\\ + \frac{5}{6}& -\frac{25}{108}& 0& 0& \frac{125}{108}& -\frac{65}{27}& \frac{125}{54}& 0& 0& 0& 0& 0& 0& 0\\ + \frac{1}{6}& \frac{31}{300}& 0& 0& 0& \frac{61}{225}& -\frac{2}{9}& \frac{13}{900}& 0& 0& 0& 0& 0& 0\\ + \frac{2}{3}& 2& 0& 0& -\frac{53}{6}& \frac{704}{45}& -\frac{107}{9}& \frac{67}{90}& 3& 0& 0& 0& 0& 0\\ + \frac{1}{3}& -\frac{91}{108}& 0& 0& \frac{23}{108}& -\frac{976}{135}& \frac{311}{54}& -\frac{19}{60}& \frac{17}{6}& -\frac{1}{12}& 0& 0& 0& 0\\ + 1& \frac{2383}{4100}& 0& 0& -\frac{341}{164}& \frac{4496}{1025}& -\frac{301}{82}& \frac{2133}{4100}& \frac{45}{82}& \frac{45}{164}& \frac{18}{41}& 0& 0& 0\\ + 0& \frac{3}{205}& 0& 0& 0& 0& -\frac{6}{41}& -\frac{3}{205}& -\frac{3}{41}& \frac{3}{41}& \frac{6}{41}& 0& 0& 0\\ + 1& -\frac{1777}{4100}& 0& 0& -\frac{341}{164}& \frac{4496}{1025}& -\frac{289}{82}& \frac{2193}{4100}& \frac{51}{82}& \frac{33}{164}& \frac{12}{41}& 0& 1& 0\\ + \hline + 8& 0& 0& 0& 0& 0& \frac{34}{105}& \frac{9}{35}& \frac{9}{35}& \frac{9}{280}& \frac{9}{280}& 0& \frac{41}{840}& \frac{41}{840} \\ + 7& \frac{41}{840}& 0& 0& 0& 0& \frac{34}{105}& \frac{9}{35}& \frac{9}{35}& \frac{9}{280}& \frac{9}{280}& \frac{41}{840}& 0& 0 + \end{array} + + +.. figure:: /figs/arkode/stab_region_23.png + :scale: 50 % + :align: center + + Linear stability region for the Fehlberg-13-7-8 method. The method's + region is outlined in blue; the embedding's region is in red. + + + .. _Butcher.Verner-9-8: Verner-16-8-9 From 7ef8a2af7e02bc1665323e5be70dc965a4d1c462 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 15:53:21 -0700 Subject: [PATCH 19/67] Remove ERK constants --- doc/arkode/guide/source/Constants.rst | 112 -------------------------- 1 file changed, 112 deletions(-) diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index a87c1f9b8c..9d59e23d0c 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -74,118 +74,6 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | | | +-----------------------------------------------+------------------------------------------------------------+ - | **Explicit Butcher table specification** | | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_FORWARD_EULER_1_1` | Use the Forward-Euler-1-1 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_RALSTON_3_1_2` | Use the Ralston-3-1-2 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_HEUN_EULER_2_1_2` | Use the Heun-Euler-2-1-2 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_RALSTON_EULER_2_1_2` | Use the Ralston-Euler-2-1-2 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2` | Use the Explicit-Midpoint-Euler-2-1-2 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK2_ERK_3_1_2` | Use the ARK2-ERK-3-1-2 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_BOGACKI_SHAMPINE_4_2_3` | Use the Bogacki-Shampine-4-2-3 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK324L2SA_ERK_4_2_3` | Use the ARK-4-2-3 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SOFRONIOU_SPALETTA_5_3_4` | Use the Sofroniou-Spaletta-5-3-4 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ZONNEVELD_5_3_4` | Use the Zonneveld-5-3-4 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK436L2SA_ERK_6_3_4` | Use the ARK-6-3-4 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SAYFY_ABURUB_6_3_4` | Use the Sayfy-Aburub-6-3-4 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_TSITOURAS_7_4_5` | Use the Tsitouras 7-4-5 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_CASH_KARP_6_4_5` | Use the Cash-Karp-6-4-5 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_FEHLBERG_6_4_5` | Use the Fehlberg-6-4-5 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_DORMAND_PRINCE_7_4_5` | Use the Dormand-Prince-7-4-5 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK548L2SA_ERK_8_4_5` | Use the ARK-8-4-5 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_VERNER_8_5_6` | Use the Verner-8-5-6 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_FEHLBERG_13_7_8` | Use the Fehlberg-13-7-8 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_KNOTH_WOLKE_3_3` | Use the Knoth-Wolke-3-3 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK437L2SA_ERK_7_3_4` | Use the ARK-7-3-4 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK548L2SAb_ERK_8_4_5` | Use the ARK-8-4-5b ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SHU_OSHER_3_2_3` | Use the Shu-Osher-3-2-3 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_VERNER_9_5_6` | Use the Verner-9-5-6 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_VERNER_10_6_7` | Use the Verner-10-6-7 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_VERNER_13_7_8` | Use the Verner-13-7-8 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_VERNER_16_8_9` | Use the Verner-16-8-9 ERK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_1` | Use ARKStep's default first-order ERK method | - | | (ARKODE_FORWARD_EULER_1_1). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_2` | Use ARKStep's default second-order ERK method | - | | (ARKODE_RALSTON_3_1_2). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_3` | Use ARKStep's default third-order ERK method | - | | (ARKODE_BOGACKI_SHAMPINE_4_2_3). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_4` | Use ARKStep's default fourth-order ERK method | - | | (ARKODE_SOFRONIOU_SPALETTA_5_3_4). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_5` | Use ARKStep's default fifth-order ERK method | - | | (ARKODE_TSITOURAS_7_4_5). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_6` | Use ARKStep's default sixth-order ERK method | - | | (ARKODE_VERNER_9_5_6). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_7` | Use ARKStep's default seventh-order ERK method | - | | (ARKODE_VERNER_10_6_7). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_8` | Use ARKStep's default eighth-order ERK method | - | | (ARKODE_VERNER_13_7_8). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ERK_9` | Use ARKStep's default ninth-order ERK method | - | | (ARKODE_VERNER_16_8_9). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_1` | Use ERKStep's default first-order ERK method | - | | (ARKODE_FORWARD_EULER_1_1). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_2` | Use ERKStep's default second-order ERK method | - | | (ARKODE_RALSTON_3_1_2). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_3` | Use ERKStep's default third-order ERK method | - | | (ARKODE_BOGACKI_SHAMPINE_4_2_3). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_4` | Use ERKStep's default fourth-order ERK method | - | | (ARKODE_SOFRONIOU_SPALETTA_5_3_4). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_5` | Use ERKStep's default fifth-order ERK method | - | | (ARKODE_TSITOURAS_7_4_5). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_6` | Use ERKStep's default sixth-order ERK method | - | | (ARKODE_VERNER_9_5_6). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_7` | Use ERKStep's default seventh-order ERK method | - | | (ARKODE_VERNER_10_6_7). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_8` | Use ERKStep's default eighth-order ERK method | - | | (ARKODE_VERNER_13_7_8). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ERKSTEP_DEFAULT_9` | Use ERKStep's default ninth-order ERK method | - | | (ARKODE_VERNER_16_8_9). | - +-----------------------------------------------+------------------------------------------------------------+ - | | | - +-----------------------------------------------+------------------------------------------------------------+ | **Implicit Butcher table specification** | | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_BACKWARD_EULER_1_1` | Use the Backward-Euler-1-1 SDIRK method. | From 4ca3a50ba6baab0c808908213afc1db841a1ca26 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 17:05:11 -0700 Subject: [PATCH 20/67] Add DIRK table of properties --- doc/arkode/guide/source/Butcher.rst | 282 ++++++++++++++++---------- doc/arkode/guide/source/Constants.rst | 73 ------- 2 files changed, 171 insertions(+), 184 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index fac32c06b0..49c5d310a0 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -1421,6 +1421,69 @@ specified via a unique ID and name: .. c:enum:: ARKODE_DIRKTableID with values specified for each method below (e.g., ``ARKODE_SDIRK_2_1_2``). +A summary of the method is given in :numref:`ARKODE.Butcher.DIRK_properties`. + +.. _ARKODE.Butcher.DIRK_properties: +.. table:: Implicit Butcher tables. The default method for each order is marked + with an asterisk (*). + + +------------------------------------------+--------+----------------+-------+ + | Method ID | Stages | Embedded Order | Order | + +==========================================+========+================+=======+ + | ``ARKODE_BACKWARD_EULER_1_1`` | 1 | --- | 1* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK2_DIRK_3_1_2`` | 3 | 1 | 2* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_SDIRK_2_1_2`` | 2 | 1 | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_IMPLICIT_MIDPOINT_1_2`` | 1 | --- | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_IMPLICIT_TRAPEZOIDAL_2_2`` | 2 | --- | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_BILLINGTON_3_3_2`` | 3 | 3 | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_TRBDF2_3_3_2`` | 3 | 3 | 2 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK325L2SA_5_2_3`` | 5 | 2 | 3* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK324L2SA_4_2_3`` | 4 | 2 | 3 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK32I5L2SA_5_2_3`` | 5 | 2 | 3 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_KVAERNO_4_2_3`` | 4 | 2 | 3 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK324L2SA_DIRK_4_2_3`` | 4 | 2 | 3 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK436L2SA_6_3_4`` | 6 | 3 | 4* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_CASH_5_2_4`` | 5 | 2 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_CASH_5_3_4`` | 5 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_SDIRK_5_3_4`` | 5 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_KVAERNO_5_3_4`` | 5 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK436L2SA_DIRK_6_3_4`` | 6 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK437L2SA_DIRK_7_3_4`` | 7 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK43I6L2SA_6_3_4`` | 6 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_QESDIRK436L2SA_6_3_4`` | 6 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK437L2SA_7_3_4`` | 7 | 3 | 4 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK547L2SA2_7_4_5`` | 7 | 4 | 5* | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_KVAERNO_7_4_5`` | 7 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK548L2SA_DIRK_8_4_5`` | 8 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ARK548L2SAb_DIRK_8_4_5`` | 8 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ + | ``ARKODE_ESDIRK547L2SA_7_4_5`` | 7 | 4 | 5 | + +------------------------------------------+--------+----------------+-------+ .. _Butcher.Backward-Euler: @@ -1454,44 +1517,6 @@ This is the default 1st order implicit method. The method is A-, L-, and B-stab Linear stability region for the backward Euler method. -.. _Butcher.SDIRK-2-1: - -SDIRK-2-1-2 -^^^^^^^^^^^^^^ - -.. index:: SDIRK-2-1-2 method - -Accessible via the constant ``ARKODE_SDIRK_2_1_2`` to -:c:func:`ARKStepSetTableNum` or -:c:func:`ARKodeButcherTable_LoadDIRK`. -Accessible via the string ``"ARKODE_SDIRK_2_1_2"`` to -:c:func:`ARKStepSetTableName` or -:c:func:`ARKodeButcherTable_LoadDIRKByName`. -Both the method and embedding are A- and B-stable. - -.. versionchanged:: x.y.z - - Replaced by ``ARKODE_ARK2_DIRK_3_1_2`` as the default 2nd order implicit method - -.. math:: - - \renewcommand{\arraystretch}{1.5} - \begin{array}{r|cc} - 1 & 1 & 0 \\ - 0 & -1 & 1 \\ - \hline - 2 & \frac{1}{2} & \frac{1}{2} \\ - 1 & 1 & 0 - \end{array} - -.. figure:: /figs/arkode/stab_region_11.png - :scale: 50 % - :align: center - - Linear stability region for the SDIRK-2-1-2 method. The method's - region is outlined in blue; the embedding's region is in red. - - .. _Butcher.ARK2_DIRK: ARK2-DIRK-3-1-2 @@ -1533,6 +1558,44 @@ default 2nd order additive method region is outlined in blue; the embedding's region is in red. +.. _Butcher.SDIRK-2-1: + +SDIRK-2-1-2 +^^^^^^^^^^^^^^ + +.. index:: SDIRK-2-1-2 method + +Accessible via the constant ``ARKODE_SDIRK_2_1_2`` to +:c:func:`ARKStepSetTableNum` or +:c:func:`ARKodeButcherTable_LoadDIRK`. +Accessible via the string ``"ARKODE_SDIRK_2_1_2"`` to +:c:func:`ARKStepSetTableName` or +:c:func:`ARKodeButcherTable_LoadDIRKByName`. +Both the method and embedding are A- and B-stable. + +.. versionchanged:: x.y.z + + Replaced by ``ARKODE_ARK2_DIRK_3_1_2`` as the default 2nd order implicit method + +.. math:: + + \renewcommand{\arraystretch}{1.5} + \begin{array}{r|cc} + 1 & 1 & 0 \\ + 0 & -1 & 1 \\ + \hline + 2 & \frac{1}{2} & \frac{1}{2} \\ + 1 & 1 & 0 + \end{array} + +.. figure:: /figs/arkode/stab_region_11.png + :scale: 50 % + :align: center + + Linear stability region for the SDIRK-2-1-2 method. The method's + region is outlined in blue; the embedding's region is in red. + + .. _Butcher.Implicit_Midpoint: Implicit-Midpoint-1-2 @@ -1672,55 +1735,55 @@ lower-order method (from :cite:p:`Bank:85`). region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK324L2SA: -ESDIRK324L2SA-4-2-3 +.. _Butcher.ESDIRK325L2SA: + +ESDIRK325L2SA-5-2-3 ^^^^^^^^^^^^^^^^^^^^^ -.. index:: ESDIRK324L2SA-4-2-3 method +.. index:: ESDIRK325L2SA-5-2-3 method -Accessible via the constant ``ARKODE_ESDIRK324L2SA_4_2_3`` to +Accessible via the constant ``ARKODE_ESDIRK325L2SA_5_2_3`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. -Accessible via the string ``"ARKODE_ESDIRK324L2SA_4_2_3"`` to +Accessible via the string ``"ARKODE_ESDIRK325L2SA_5_2_3"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the ESDIRK3(2)4L[2]SA method from :cite:p:`KenCarp:19b`. +This is the default 3rd order implicit method and the ESDIRK3(2)5L[2]SA method +from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. -.. figure:: /figs/arkode/stab_region_25.png +.. versionchanged:: x.y.z + + Made the default 3rd order implicit method + +.. figure:: /figs/arkode/stab_region_26.png :scale: 50 % :align: center - Linear stability region for the ESDIRK324L2SA-4-2-3 method method. The method's + Linear stability region for the ESDIRK325L2SA-5-2-3 method method. The method's region is outlined in blue; the embedding's region is in red. +.. _Butcher.ESDIRK324L2SA: -.. _Butcher.ESDIRK325L2SA: - -ESDIRK325L2SA-5-2-3 +ESDIRK324L2SA-4-2-3 ^^^^^^^^^^^^^^^^^^^^^ -.. index:: ESDIRK325L2SA-5-2-3 method +.. index:: ESDIRK324L2SA-4-2-3 method -Accessible via the constant ``ARKODE_ESDIRK325L2SA_5_2_3`` to +Accessible via the constant ``ARKODE_ESDIRK324L2SA_4_2_3`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. -Accessible via the string ``"ARKODE_ESDIRK325L2SA_5_2_3"`` to +Accessible via the string ``"ARKODE_ESDIRK324L2SA_4_2_3"`` to :c:func:`ARKStepSetTableName` or :c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the default 3rd order implicit method and the ESDIRK3(2)5L[2]SA method -from :cite:p:`KenCarp:16`. +This is the ESDIRK3(2)4L[2]SA method from :cite:p:`KenCarp:19b`. Both the method and embedding are A- and L-stable. -.. versionchanged:: x.y.z - - Made the default 3rd order implicit method - -.. figure:: /figs/arkode/stab_region_26.png +.. figure:: /figs/arkode/stab_region_25.png :scale: 50 % :align: center - Linear stability region for the ESDIRK325L2SA-5-2-3 method method. The method's + Linear stability region for the ESDIRK324L2SA-4-2-3 method method. The method's region is outlined in blue; the embedding's region is in red. @@ -1832,8 +1895,31 @@ method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. +.. _Butcher.ESDIRK436L2SA: +ESDIRK436L2SA-6-3-4 +^^^^^^^^^^^^^^^^^^^^ +.. index:: ESDIRK436L2SA-6-3-4 method + +Accessible via the constant ``ARKODE_ESDIRK436L2SA_6_3_4`` to +:c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. +Accessible via the string ``"ARKODE_ESDIRK436L2SA_6_3_4"`` to +:c:func:`ARKStepSetTableName` or +:c:func:`ARKodeButcherTable_LoadDIRKByName`. +This is the default 4th order implicit method and the ESDIRK4(3)6L[2]SA method +from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. + +.. versionchanged:: x.y.z + + Made the default 4th order implicit method + +.. figure:: /figs/arkode/stab_region_28.png + :scale: 50 % + :align: center + + Linear stability region for the ESDIRK436L2SA-6-3-4 method method. The method's + region is outlined in blue; the embedding's region is in red. @@ -2109,33 +2195,6 @@ implicit portion of the 4th order ARK4(3)7L[2]SA method from region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK436L2SA: - -ESDIRK436L2SA-6-3-4 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK436L2SA-6-3-4 method - -Accessible via the constant ``ARKODE_ESDIRK436L2SA_6_3_4`` to -:c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. -Accessible via the string ``"ARKODE_ESDIRK436L2SA_6_3_4"`` to -:c:func:`ARKStepSetTableName` or -:c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the default 4th order implicit method and the ESDIRK4(3)6L[2]SA method -from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. - -.. versionchanged:: x.y.z - - Made the default 4th order implicit method - -.. figure:: /figs/arkode/stab_region_28.png - :scale: 50 % - :align: center - - Linear stability region for the ESDIRK436L2SA-6-3-4 method method. The method's - region is outlined in blue; the embedding's region is in red. - - .. _Butcher.ESDIRK43I6L2SA: ESDIRK43I6L2SA-6-3-4 @@ -2205,6 +2264,31 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. +ESDIRK547L2SA2-7-4-5 +^^^^^^^^^^^^^^^^^^^^ + +.. index:: ESDIRK547L2SA2-7-4-5 method + +Accessible via the constant ``ARKODE_ESDIRK547L2SA2_7_4_5`` to +:c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. +Accessible via the string ``"ARKODE_ESDIRK547L2SA2_7_4_5"`` to +:c:func:`ARKStepSetTableName` or +:c:func:`ARKodeButcherTable_LoadDIRKByName`. +This is the default 5th order implicit method and the ESDIRK5(4)7L[2]SA2 method +from :cite:p:`KenCarp:19b`. Both the method and embedding are A- and L-stable. + +.. versionchanged:: x.y.z + + Made the default 5th order implicit method + +.. figure:: /figs/arkode/stab_region_33.png + :scale: 50 % + :align: center + + Linear stability region for the ESDIRK547L2SA2-7-4-5 method method. The method's + region is outlined in blue; the embedding's region is in red. + + .. _Butcher.Kvaerno_7_4_5: Kvaerno-7-4-5 @@ -2390,30 +2474,6 @@ Both the method and embedding are A- and L-stable. .. _Butcher.ESDIRK547L2SA2: -ESDIRK547L2SA2-7-4-5 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK547L2SA2-7-4-5 method - -Accessible via the constant ``ARKODE_ESDIRK547L2SA2_7_4_5`` to -:c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. -Accessible via the string ``"ARKODE_ESDIRK547L2SA2_7_4_5"`` to -:c:func:`ARKStepSetTableName` or -:c:func:`ARKodeButcherTable_LoadDIRKByName`. -This is the default 5th order implicit method and the ESDIRK5(4)7L[2]SA2 method -from :cite:p:`KenCarp:19b`. Both the method and embedding are A- and L-stable. - -.. versionchanged:: x.y.z - - Made the default 5th order implicit method - -.. figure:: /figs/arkode/stab_region_33.png - :scale: 50 % - :align: center - - Linear stability region for the ESDIRK547L2SA2-7-4-5 method method. The method's - region is outlined in blue; the embedding's region is in red. - diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index 9d59e23d0c..e27a227969 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -74,79 +74,6 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | | | +-----------------------------------------------+------------------------------------------------------------+ - | **Implicit Butcher table specification** | | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_BACKWARD_EULER_1_1` | Use the Backward-Euler-1-1 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SDIRK_2_1_2` | Use the SDIRK-2-1-2 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK2_DIRK_3_1_2` | Use the ARK2-DIRK-3-1-2 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMPLICIT_MIDPOINT_1_2` | Use the Implicit-Midpoint-1-2 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMPLICIT_TRAPEZOIDAL_2_2` | Use the Implicit-Trapezoidal-2-2 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_BILLINGTON_3_3_2` | Use the Billington-3-3-2 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK324L2SA_4_2_3` | Use the ESDIRK324L2SA-4-2-3 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK325L2SA_5_2_3` | Use the ESDIRK325L2SA-5-2-3 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK32I5L2SA_5_2_3` | Use the ESDIRK32I5L2SA-5-2-3 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_TRBDF2_3_3_2` | Use the TRBDF2-3-3-2 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_KVAERNO_4_2_3` | Use the Kvaerno-4-2-3 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK324L2SA_DIRK_4_2_3` | Use the ARK-4-2-3 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_CASH_5_2_4` | Use the Cash-5-2-4 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_CASH_5_3_4` | Use the Cash-5-3-4 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SDIRK_5_3_4` | Use the SDIRK-5-3-4 SDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_KVAERNO_5_3_4` | Use the Kvaerno-5-3-4 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK436L2SA_DIRK_6_3_4` | Use the ARK-6-3-4 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_KVAERNO_7_4_5` | Use the Kvaerno-7-4-5 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK436L2SA_6_3_4` | Use the ESDIRK436L2SA-6-3-4 method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK43I6L2SA_6_3_4` | Use the ESDIRK43I6L2SA-6-3-4 method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_QESDIRK436L2SA_6_3_4` | Use the QESDIRK436L2SA-6-3-4 method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK437L2SA_7_3_4` | Use the ESDIRK437L2SA-7-3-4 method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK548L2SA_DIRK_8_4_5` | Use the ARK-8-4-5 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK437L2SA_DIRK_7_3_4` | Use the ARK-7-3-4 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ARK548L2SAb_DIRK_8_4_5` | Use the ARK-8-4-5b ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK547L2SA_7_4_5` | Use the ESDIRK547L2SA-7-4-5 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_ESDIRK547L2SA2_7_4_5` | Use the ESDIRK547L2SA2-7-4-5 ESDIRK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_DIRK_1` | Use ARKStep's default first-order DIRK method | - | | (ARKODE_BACKWARD_EULER_1_1). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_DIRK_2` | Use ARKStep's default second-order DIRK method | - | | (ARKODE_ARK2_DIRK_3_1_2). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_DIRK_3` | Use ARKStep's default third-order DIRK method | - | | (ARKODE_ESDIRK325L2SA_5_2_3). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_DIRK_4` | Use ARKStep's default fourth-order DIRK method | - | | (ARKODE_ESDIRK436L2SA_6_3_4). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_DIRK_5` | Use ARKStep's default fifth-order DIRK method | - | | (ARKODE_ESDIRK547L2SA2_7_4_5). | - +-----------------------------------------------+------------------------------------------------------------+ - | | | - +-----------------------------------------------+------------------------------------------------------------+ | **ImEx Butcher table specification** | | +-----------------------------------------------+------------------------------------------------------------+ | ARKODE_ARK2_ERK_3_1_2 & | Use the :index:`ARK-3-1-2 ARK method`. | From bc56b9db2bb283a42761100ab5dc9e678613bbe3 Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Mon, 16 Sep 2024 17:34:19 -0700 Subject: [PATCH 21/67] update output files --- .../CXX_parallel/ark_heat2D_p_--np_2_2.out | 68 +-- .../ark_heat2D_hypre_ls_--np_2_2.out | 62 +-- .../ark_heat2D_hypre_pfmg_--np_2_2.out | 70 +-- .../ark_heat2D_hypre_pfmg_mri_--np_2_2.out | 32 +- .../arkode/CXX_serial/ark_analytic_sys.out | 12 +- examples/arkode/CXX_serial/ark_heat2D.out | 68 +-- .../arkode/CXX_serial/ark_kpr_Mt_0_-4.out | 18 +- .../ark_kpr_Mt_0_4_0_-10_0_10_1.out | 220 ++++---- .../ark_kpr_Mt_0_4_0_-10_1_10_1.out | 220 ++++---- .../arkode/CXX_serial/ark_kpr_Mt_0_4_1.out | 216 ++++---- examples/arkode/CXX_serial/ark_kpr_Mt_0_5.out | 220 ++++---- .../CXX_serial/ark_kpr_Mt_1_-3_0_-10_0.out | 18 +- .../arkode/CXX_serial/ark_kpr_Mt_1_-5.out | 18 +- examples/arkode/CXX_serial/ark_kpr_Mt_1_4.out | 222 ++++---- .../CXX_serial/ark_kpr_Mt_2_-5_0_-10.out | 18 +- .../CXX_serial/ark_kpr_Mt_2_4_0_-10_0.out | 214 ++++---- .../CXX_serial/ark_kpr_Mt_2_8_0_-10.out | 204 ++++---- .../ark_brusselator1D_FEM_sludist.out | 184 +++---- ...mg_xbraid_--np_2_1_2_--x_print_level_0.out | 22 +- ..._p_xbraid_--np_2_1_2_--x_print_level_0.out | 20 +- .../ark_heat2D_xbraid_--x_print_level_0.out | 20 +- .../ark_brusselator1D_manyvec.out | 46 +- .../arkode/C_openmp/ark_brusselator1D_omp.out | 160 +++--- examples/arkode/C_openmp/ark_heat1D_omp.out | 10 +- .../C_parallel/ark_diurnal_kry_bbd_p.out | 136 ++--- .../arkode/C_parallel/ark_diurnal_kry_p.out | 66 +-- .../arkode/C_parhyp/ark_diurnal_kry_ph.out | 66 +-- .../arkode/C_serial/ark_KrylovDemo_prec.out | 474 +++++++++--------- .../arkode/C_serial/ark_KrylovDemo_prec_1.out | 474 +++++++++--------- .../arkode/C_serial/ark_KrylovDemo_prec_2.out | 474 +++++++++--------- examples/arkode/C_serial/ark_analytic.out | 14 +- .../arkode/C_serial/ark_analytic_mels.out | 10 +- .../arkode/C_serial/ark_analytic_nonlin.out | 20 +- examples/arkode/C_serial/ark_brusselator.out | 36 +- .../arkode/C_serial/ark_brusselator1D.out | 160 +++--- .../C_serial/ark_brusselator1D_FEM_slu.out | 184 +++---- .../arkode/C_serial/ark_brusselator1D_klu.out | 24 +- .../arkode/C_serial/ark_brusselator_fp.out | 28 +- .../arkode/C_serial/ark_brusselator_fp_1.out | 28 +- .../ark_conserved_exp_entropy_ark_1_0.out | 15 +- .../ark_conserved_exp_entropy_erk_1.out | 19 +- .../ark_dissipated_exp_entropy_1_0.out | 16 +- examples/arkode/C_serial/ark_heat1D.out | 10 +- examples/arkode/C_serial/ark_heat1D_adapt.out | 183 ++----- examples/arkode/C_serial/ark_robertson.out | 230 ++++----- .../C_serial/ark_robertson_constraints.out | 216 ++++---- .../arkode/C_serial/ark_robertson_root.out | 42 +- .../F2003_serial/ark_analytic_f2003.out | 22 +- .../CXX_parallel/ark_test_heat2D_mri_0.out | 6 +- .../CXX_parallel/ark_test_heat2D_mri_1.out | 6 +- .../arkode/CXX_serial/ark_test_butcher.out | 2 + .../ark_test_dahlquist_ark_0_-1_0.out | 70 +++ .../ark_test_dahlquist_ark_0_0_0.out | 70 +++ .../ark_test_dahlquist_ark_0_0_1.out | 70 +++ .../ark_test_dahlquist_ark_0_1_0.out | 70 +++ .../ark_test_dahlquist_ark_0_1_1.out | 70 +++ .../ark_test_dahlquist_ark_1_-1_0.out | 70 +++ .../ark_test_dahlquist_ark_1_0_0.out | 70 +++ .../ark_test_dahlquist_ark_1_0_1.out | 70 +++ .../ark_test_dahlquist_ark_1_1_0.out | 70 +++ .../ark_test_dahlquist_ark_1_1_1.out | 70 +++ .../ark_test_dahlquist_ark_2_-1_0.out | 70 +++ .../ark_test_dahlquist_ark_2_0_0.out | 70 +++ .../ark_test_dahlquist_ark_2_0_1.out | 70 +++ .../ark_test_dahlquist_ark_2_1_0.out | 70 +++ .../ark_test_dahlquist_ark_2_1_1.out | 70 +++ .../CXX_serial/ark_test_dahlquist_erk_-1.out | 70 +++ .../CXX_serial/ark_test_dahlquist_erk_0.out | 70 +++ .../CXX_serial/ark_test_dahlquist_erk_1.out | 70 +++ .../CXX_serial/ark_test_dahlquist_mri_-1.out | 6 +- .../CXX_serial/ark_test_dahlquist_mri_0.out | 6 +- .../CXX_serial/ark_test_dahlquist_mri_1.out | 6 +- .../arkode/CXX_serial/ark_test_getjac.out | 10 +- 73 files changed, 3897 insertions(+), 2714 deletions(-) diff --git a/examples/arkode/CXX_parallel/ark_heat2D_p_--np_2_2.out b/examples/arkode/CXX_parallel/ark_heat2D_p_--np_2_2.out index 015642ed18..c699d8969a 100644 --- a/examples/arkode/CXX_parallel/ark_heat2D_p_--np_2_2.out +++ b/examples/arkode/CXX_parallel/ark_heat2D_p_--np_2_2.out @@ -37,45 +37,45 @@ t ||u||_rms max error ----------------------------------------------------------------------- 0.000000000000000e+00 3.632812500000001e-01 0.000000000000000e+00 - 5.000000000000000e-02 3.551988422773351e-01 2.455482033533629e-03 - 1.000000000000000e-01 3.296234292363186e-01 2.897896070159778e-03 - 1.500000000000000e-01 2.894441908882201e-01 2.832303715537221e-03 - 2.000000000000000e-01 2.387114782162635e-01 2.525801964766261e-03 - 2.500000000000000e-01 1.824256478587985e-01 2.078269197756610e-03 - 3.000000000000000e-01 1.261168083661019e-01 1.580109403207297e-03 - 3.500000000000000e-01 7.529981277589509e-02 1.084790395311314e-03 - 4.000000000000000e-01 3.495180900127044e-02 6.472682226835030e-04 - 4.500000000000000e-01 9.023693955015859e-03 3.135810295420080e-04 - 4.999999999999999e-01 5.528701560828762e-05 1.158664423513919e-04 - 5.499999999999999e-01 8.918915917892657e-03 7.372606708900761e-05 - 6.000000000000000e-01 3.475275193022622e-02 1.914158609587074e-04 - 6.500000000000000e-01 7.502609251490090e-02 4.577116702588202e-04 - 7.000000000000001e-01 1.257965751111169e-01 8.461653361390153e-04 - 7.500000000000001e-01 1.820941861365472e-01 1.318095291393762e-03 - 8.000000000000002e-01 2.384093995701346e-01 1.830603310791989e-03 - 8.500000000000002e-01 2.892274536261998e-01 2.327914469715142e-03 - 9.000000000000002e-01 3.295751200290455e-01 2.764242715480814e-03 - 9.500000000000003e-01 3.555039203482325e-01 3.099492713609875e-03 - 1.000000000000000e+00 3.644737419511721e-01 3.296010382883741e-03 + 5.000000000000000e-02 3.551975186497072e-01 2.451401722563751e-03 + 1.000000000000000e-01 3.296193245542247e-01 2.886719822310813e-03 + 1.500000000000000e-01 2.894394995327852e-01 2.819561275503424e-03 + 2.000000000000000e-01 2.387051236315032e-01 2.508728100702684e-03 + 2.500000000000000e-01 1.824192500474078e-01 2.061018435531359e-03 + 3.000000000000000e-01 1.261114731502070e-01 1.565744344754094e-03 + 3.500000000000000e-01 7.529670538702467e-02 1.076502253154671e-03 + 4.000000000000000e-01 3.495085386661465e-02 6.448406239761145e-04 + 4.500000000000000e-01 9.023288131469501e-03 3.126108214156556e-04 + 4.999999999999999e-01 5.510794368507914e-05 1.154822782246535e-04 + 5.499999999999999e-01 8.918945620517841e-03 7.385136832613326e-05 + 6.000000000000000e-01 3.475329657677299e-02 1.929567559659923e-04 + 6.500000000000000e-01 7.502673187705128e-02 4.594930062402358e-04 + 7.000000000000001e-01 1.257972362776034e-01 8.479937558674155e-04 + 7.500000000000001e-01 1.820950537074953e-01 1.320467993117580e-03 + 8.000000000000002e-01 2.384122561642808e-01 1.838591535529566e-03 + 8.500000000000002e-01 2.892284300226399e-01 2.330589400411087e-03 + 9.000000000000002e-01 3.295763779392321e-01 2.767574885876978e-03 + 9.500000000000003e-01 3.555075593683923e-01 3.109525857063367e-03 + 1.000000000000000e+00 3.644743080794827e-01 3.297333545081771e-03 ----------------------------------------------------------------------- Final integrator statistics: - Steps = 124 - Step attempts = 125 + Steps = 84 + Step attempts = 85 Error test fails = 1 - RHS evals = 753 - NLS iters = 375 + RHS evals = 683 + NLS iters = 340 NLS fails = 0 - LS iters = 12926 - LS fails = 36 - LS setups = 56 - LS RHS evals = 12926 - Jv products = 12926 + LS iters = 10953 + LS fails = 3 + LS setups = 37 + LS RHS evals = 10953 + Jv products = 10953 - Avg NLS iters per step attempt = 3.000000 - Avg LS iters per NLS iter = 34.469333 + Avg NLS iters per step attempt = 4.000000 + Avg LS iters per NLS iter = 32.214706 - Preconditioner setups = 4 - Preconditioner solves = 12926 + Preconditioner setups = 2 + Preconditioner solves = 10953 - Max error = 3.296010382883741e-03 + Max error = 3.297333545081771e-03 diff --git a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_ls_--np_2_2.out b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_ls_--np_2_2.out index b39cea2617..5516288ce6 100644 --- a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_ls_--np_2_2.out +++ b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_ls_--np_2_2.out @@ -39,41 +39,41 @@ t ||u||_rms max error ----------------------------------------------------------------------- 0.000000000000000e+00 3.691406249999997e-01 0.000000000000000e+00 - 5.000000000000000e-02 3.603048616826305e-01 5.947581725728179e-04 - 1.000000000000000e-01 3.341442212752840e-01 7.029488321168564e-04 - 1.500000000000000e-01 2.933129364265377e-01 6.872104657476008e-04 - 2.000000000000000e-01 2.418371828053933e-01 6.138967875570778e-04 - 2.500000000000000e-01 1.847632280574957e-01 5.043531454586581e-04 - 3.000000000000000e-01 1.276840002086280e-01 3.835930415112543e-04 - 3.500000000000000e-01 7.618719032747635e-02 2.636045188839364e-04 - 4.000000000000000e-01 3.531419592900913e-02 1.573064596348678e-04 - 4.500000000000000e-01 9.066519339379787e-03 7.648429036438351e-05 - 4.999999999999999e-01 1.366001182955177e-05 2.823151525618881e-05 - 5.499999999999999e-01 9.040623249804480e-03 1.797011257116676e-05 - 6.000000000000000e-01 3.526521493542879e-02 4.668318201424271e-05 - 6.500000000000000e-01 7.611978800168766e-02 1.113065272941860e-04 - 7.000000000000001e-01 1.276052139795589e-01 2.055077733629229e-04 - 7.500000000000001e-01 1.846816872915429e-01 3.198180091369962e-04 - 8.000000000000002e-01 2.417622665897317e-01 4.436012686840352e-04 - 8.500000000000002e-01 2.932595626759314e-01 5.646812043708094e-04 - 9.000000000000002e-01 3.341325736187309e-01 6.709855218919314e-04 - 9.500000000000003e-01 3.603805168237892e-01 7.524532351735891e-04 - 1.000000000000000e+00 3.694333172786592e-01 7.994041731184121e-04 + 5.000000000000000e-02 3.603050605457244e-01 5.949542919905237e-04 + 1.000000000000000e-01 3.341384725268842e-01 6.872428139877984e-04 + 1.500000000000000e-01 2.933118108140592e-01 6.841988946905131e-04 + 2.000000000000000e-01 2.418329045193057e-01 6.024519870932998e-04 + 2.500000000000000e-01 1.847611021704818e-01 4.987490647692661e-04 + 3.000000000000000e-01 1.276829050921574e-01 3.807788495995834e-04 + 3.500000000000000e-01 7.618579917816400e-02 2.600027995683929e-04 + 4.000000000000000e-01 3.531332131463580e-02 1.550723013370309e-04 + 4.500000000000000e-01 9.066121491604642e-03 7.551344438811239e-05 + 4.999999999999999e-01 1.353803921817276e-05 2.798148703851016e-05 + 5.499999999999999e-01 9.040653419481041e-03 1.808327580855515e-05 + 6.000000000000000e-01 3.526532709799456e-02 4.701644881505151e-05 + 6.500000000000000e-01 7.612055654194419e-02 1.134012380054339e-04 + 7.000000000000001e-01 1.276052252048378e-01 2.055459239037050e-04 + 7.500000000000001e-01 1.846819826297028e-01 3.207203792571778e-04 + 8.000000000000002e-01 2.417630598586837e-01 4.457636102735973e-04 + 8.500000000000002e-01 2.932631800624002e-01 5.744314225956115e-04 + 9.000000000000002e-01 3.341347581886813e-01 6.768394853960968e-04 + 9.500000000000003e-01 3.603810282828733e-01 7.538503163625476e-04 + 1.000000000000000e+00 3.694337373313009e-01 8.004071841360982e-04 ----------------------------------------------------------------------- Final integrator statistics: - Steps = 134 - Step attempts = 135 - Error test fails = 1 - RHS evals = 813 - NLS iters = 405 + Steps = 90 + Step attempts = 90 + Error test fails = 0 + RHS evals = 723 + NLS iters = 360 NLS fails = 0 - LS iters = 2925 + LS iters = 2575 LS fails = 0 - LS setups = 59 - J evals = 4 + LS setups = 43 + J evals = 2 - Avg NLS iters per step attempt = 3.000000 - Avg LS iters per NLS iter = 7.222222 + Avg NLS iters per step attempt = 4.000000 + Avg LS iters per NLS iter = 7.152778 - Max error = 7.994041731184121e-04 + Max error = 8.004071841360982e-04 diff --git a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_--np_2_2.out b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_--np_2_2.out index 3aa6089418..c1e29bbe6e 100644 --- a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_--np_2_2.out +++ b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_--np_2_2.out @@ -40,46 +40,46 @@ t ||u||_rms max error ----------------------------------------------------------------------- 0.000000000000000e+00 3.691406249999997e-01 0.000000000000000e+00 - 5.000000000000000e-02 3.603048619753333e-01 5.947590016540660e-04 - 1.000000000000000e-01 3.341442195764323e-01 7.029443280297532e-04 - 1.500000000000000e-01 2.933129358633914e-01 6.872088817982958e-04 - 2.000000000000000e-01 2.418371813857269e-01 6.138930097124851e-04 - 2.500000000000000e-01 1.847632276239268e-01 5.043519623673109e-04 - 3.000000000000000e-01 1.276839995499893e-01 3.835912864304514e-04 - 3.500000000000000e-01 7.618719105489918e-02 2.636064591631515e-04 - 4.000000000000000e-01 3.531419609803035e-02 1.573069173000513e-04 - 4.500000000000000e-01 9.066519524079126e-03 7.648478735214695e-05 - 4.999999999999999e-01 1.366000892977262e-05 2.823150845772370e-05 - 5.499999999999999e-01 9.040623278407151e-03 1.797019017690110e-05 - 6.000000000000000e-01 3.526521486057654e-02 4.668298068317978e-05 - 6.500000000000000e-01 7.611978811031622e-02 1.113068150605245e-04 - 7.000000000000001e-01 1.276052145445968e-01 2.055092828922023e-04 - 7.500000000000001e-01 1.846816859443554e-01 3.198144283996229e-04 - 8.000000000000002e-01 2.417622651778854e-01 4.435975267760295e-04 - 8.500000000000002e-01 2.932595614654954e-01 5.646779628073473e-04 - 9.000000000000002e-01 3.341325728392148e-01 6.709834145076643e-04 - 9.500000000000003e-01 3.603805172400869e-01 7.524543311739906e-04 - 1.000000000000000e+00 3.694333171606730e-01 7.994038031826634e-04 + 5.000000000000000e-02 3.603050603105894e-01 5.949536547211753e-04 + 1.000000000000000e-01 3.341384722277078e-01 6.872420084500508e-04 + 1.500000000000000e-01 2.933118083957050e-01 6.841924389963117e-04 + 2.000000000000000e-01 2.418329020991048e-01 6.024454764734788e-04 + 2.500000000000000e-01 1.847610999094610e-01 4.987429422280698e-04 + 3.000000000000000e-01 1.276829087160619e-01 3.807886564125562e-04 + 3.500000000000000e-01 7.618579849980092e-02 2.600009957156035e-04 + 4.000000000000000e-01 3.531332097018328e-02 1.550713801812958e-04 + 4.500000000000000e-01 9.066121776386335e-03 7.551421711559161e-05 + 4.999999999999999e-01 1.353803821238967e-05 2.798148454130189e-05 + 5.499999999999999e-01 9.040653262527190e-03 1.808285169141444e-05 + 6.000000000000000e-01 3.526532781704243e-02 4.701840358070641e-05 + 6.500000000000000e-01 7.612055221081775e-02 1.133895251361206e-04 + 7.000000000000001e-01 1.276052097316916e-01 2.055040744969316e-04 + 7.500000000000001e-01 1.846819873529386e-01 3.207331722942519e-04 + 8.000000000000002e-01 2.417630666185325e-01 4.457818996586038e-04 + 8.500000000000002e-01 2.932631795090666e-01 5.744299739853798e-04 + 9.000000000000002e-01 3.341347671827456e-01 6.768638571579277e-04 + 9.500000000000003e-01 3.603810347225249e-01 7.538677468750254e-04 + 1.000000000000000e+00 3.694337374441339e-01 8.004076128652615e-04 ----------------------------------------------------------------------- Final integrator statistics: - Steps = 134 - Step attempts = 135 - Error test fails = 1 - RHS evals = 813 - NLS iters = 405 + Steps = 90 + Step attempts = 90 + Error test fails = 0 + RHS evals = 723 + NLS iters = 360 NLS fails = 0 - LS iters = 2482 + LS iters = 2162 LS fails = 0 - LS setups = 59 - LS RHS evals = 2482 - Jv products = 2482 + LS setups = 43 + LS RHS evals = 2162 + Jv products = 2162 - Avg NLS iters per step attempt = 3.000000 - Avg LS iters per NLS iter = 6.128395 + Avg NLS iters per step attempt = 4.000000 + Avg LS iters per NLS iter = 6.005556 - Preconditioner setups = 59 - Preconditioner solves = 2482 - PFMG iters = 2482 + Preconditioner setups = 43 + Preconditioner solves = 2162 + PFMG iters = 2162 - Max error = 7.994038031826634e-04 + Max error = 8.004076128652615e-04 diff --git a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out index 5c1a518ea8..24f186834b 100644 --- a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out +++ b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out @@ -42,16 +42,16 @@ t ||u||_rms ---------------------------------------------- 0.000000000000000e+00 3.691406249999997e-01 - 1.000000000000000e-01 5.162014241947240e-02 - 2.000000000000000e-01 7.426100187263422e-03 - 3.000000000000000e-01 1.067221316468460e-03 - 4.000000000000000e-01 1.533638016722887e-04 - 5.000000000000000e-01 2.203889954704845e-05 - 6.000000000000000e-01 3.167064268518253e-06 - 7.000000000000000e-01 4.551178805373316e-07 - 7.999999999999999e-01 6.540199603778498e-08 - 8.999999999999999e-01 9.398525782915539e-09 - 1.000000000000000e+00 1.350608880519736e-09 + 1.000000000000000e-01 5.162013348084430e-02 + 2.000000000000000e-01 7.426099611781720e-03 + 3.000000000000000e-01 1.067221239904711e-03 + 4.000000000000000e-01 1.533637906675603e-04 + 5.000000000000000e-01 2.203889796541893e-05 + 6.000000000000000e-01 3.167064041223480e-06 + 7.000000000000000e-01 4.551178478732877e-07 + 7.999999999999999e-01 6.540199134369242e-08 + 8.999999999999999e-01 9.398525108333204e-09 + 1.000000000000000e+00 1.350608783576075e-09 ---------------------------------------------- Final slow integrator statistics: @@ -74,16 +74,16 @@ Final fast integrator statistics: Steps = 3003 Step attempts = 3003 Error test fails = 0 - RHS evals = 29862 - NLS iters = 17842 + RHS evals = 38706 + NLS iters = 23683 NLS fails = 0 - LS iters = 10048 + LS iters = 13067 LS fails = 0 LS setups = 0 - Jv products = 10048 + Jv products = 13067 - Avg NLS iters per step attempt = 5.941392 - Avg LS iters per NLS iter = 0.563166 + Avg NLS iters per step attempt = 7.886447 + Avg LS iters per NLS iter = 0.551746 Preconditioner setups = 0 Preconditioner solves = 0 diff --git a/examples/arkode/CXX_serial/ark_analytic_sys.out b/examples/arkode/CXX_serial/ark_analytic_sys.out index 955ee55f38..cb5cb0156a 100644 --- a/examples/arkode/CXX_serial/ark_analytic_sys.out +++ b/examples/arkode/CXX_serial/ark_analytic_sys.out @@ -6,9 +6,9 @@ Analytical ODE test problem: t y0 y1 y2 -------------------------------------- - 0.0050 0.70328 0.70627 0.41005 + 0.0050 0.70327 0.70627 0.41004 0.0100 0.52267 0.52865 0.05232 - 0.0150 0.41249 0.42145 -0.16456 + 0.0150 0.41249 0.42145 -0.16455 0.0200 0.34504 0.35697 -0.29600 0.0250 0.30350 0.31838 -0.37562 0.0300 0.27767 0.29551 -0.42382 @@ -19,12 +19,12 @@ Analytical ODE test problem: -------------------------------------- Final Solver Statistics: - Internal solver steps = 67 (attempted = 69) - Total RHS evals: Fe = 0, Fi = 348 - Total linear solver setups = 22 + Internal solver steps = 31 (attempted = 33) + Total RHS evals: Fe = 0, Fi = 168 + Total linear solver setups = 14 Total RHS evals for setting up the linear system = 0 Total number of Jacobian evaluations = 3 - Total number of Newton iterations = 345 + Total number of Newton iterations = 165 Total number of linear solver convergence failures = 0 Total number of error test failures = 2 diff --git a/examples/arkode/CXX_serial/ark_heat2D.out b/examples/arkode/CXX_serial/ark_heat2D.out index c7146f1b2b..f4c83a6cef 100644 --- a/examples/arkode/CXX_serial/ark_heat2D.out +++ b/examples/arkode/CXX_serial/ark_heat2D.out @@ -31,45 +31,45 @@ t ||u||_rms max error ----------------------------------------------------------------------- 0.000000000000000e+00 3.632812500000000e-01 0.000000000000000e+00 - 5.000000000000000e-02 3.551988422792973e-01 2.455482048598578e-03 - 1.000000000000000e-01 3.296234292110422e-01 2.897895995286115e-03 - 1.500000000000000e-01 2.894441909307264e-01 2.832303876386777e-03 - 2.000000000000000e-01 2.387114783346062e-01 2.525802281702627e-03 - 2.500000000000000e-01 1.824256479329715e-01 2.078269451951664e-03 - 3.000000000000000e-01 1.261168083582418e-01 1.580109388325313e-03 - 3.500000000000000e-01 7.529981276644941e-02 1.084790361132459e-03 - 4.000000000000000e-01 3.495180902493194e-02 6.472682865382440e-04 - 4.500000000000000e-01 9.023693953952201e-03 3.135810269774553e-04 - 4.999999999999999e-01 5.528701564976438e-05 1.158664424579011e-04 - 5.499999999999999e-01 8.918915918150624e-03 7.372606719366695e-05 - 6.000000000000000e-01 3.475275193254342e-02 1.914158656317888e-04 - 6.500000000000000e-01 7.502609250596767e-02 4.577116486274846e-04 - 7.000000000000001e-01 1.257965751168525e-01 8.461653407310088e-04 - 7.500000000000001e-01 1.820941861476670e-01 1.318095319222168e-03 - 8.000000000000002e-01 2.384093995816105e-01 1.830603307639511e-03 - 8.500000000000002e-01 2.892274536103360e-01 2.327914403585929e-03 - 9.000000000000002e-01 3.295751199825840e-01 2.764242586895782e-03 - 9.500000000000003e-01 3.555039203016255e-01 3.099492598853892e-03 - 1.000000000000000e+00 3.644737419736066e-01 3.296010432179086e-03 + 5.000000000000000e-02 3.551975186501967e-01 2.451401730770408e-03 + 1.000000000000000e-01 3.296193245621059e-01 2.886719892297940e-03 + 1.500000000000000e-01 2.894394995211842e-01 2.819561263145864e-03 + 2.000000000000000e-01 2.387051235998365e-01 2.508727890789042e-03 + 2.500000000000000e-01 1.824192500944068e-01 2.061018727842312e-03 + 3.000000000000000e-01 1.261114731253589e-01 1.565744264899693e-03 + 3.500000000000000e-01 7.529670540740070e-02 1.076502323511613e-03 + 4.000000000000000e-01 3.495085382501724e-02 6.448405075650393e-04 + 4.500000000000000e-01 9.023288112317590e-03 3.126107683404655e-04 + 4.999999999999999e-01 5.510794361957854e-05 1.154822781157859e-04 + 5.499999999999999e-01 8.918945621209672e-03 7.385136918056437e-05 + 6.000000000000000e-01 3.475329657926329e-02 1.929567721377229e-04 + 6.500000000000000e-01 7.502673188280035e-02 4.594930299586242e-04 + 7.000000000000001e-01 1.257972362861438e-01 8.479937554011774e-04 + 7.500000000000001e-01 1.820950537193692e-01 1.320468028305877e-03 + 8.000000000000002e-01 2.384122561794825e-01 1.838591556463820e-03 + 8.500000000000002e-01 2.892284300604713e-01 2.330589494148771e-03 + 9.000000000000002e-01 3.295763778665232e-01 2.767574678415818e-03 + 9.500000000000003e-01 3.555075594185851e-01 3.109526022467723e-03 + 1.000000000000000e+00 3.644743080820197e-01 3.297333552827242e-03 ----------------------------------------------------------------------- Final integrator statistics: - Steps = 124 - Step attempts = 125 + Steps = 84 + Step attempts = 85 Error test fails = 1 - RHS evals = 753 - NLS iters = 375 + RHS evals = 683 + NLS iters = 340 NLS fails = 0 - LS iters = 12927 - LS fails = 36 - LS setups = 56 - LS RHS evals = 12927 - Jv products = 12927 + LS iters = 10957 + LS fails = 3 + LS setups = 37 + LS RHS evals = 10957 + Jv products = 10957 - Avg NLS iters per step attempt = 3.000000 - Avg LS iters per NLS iter = 34.472000 + Avg NLS iters per step attempt = 4.000000 + Avg LS iters per NLS iter = 32.226471 - Preconditioner setups = 4 - Preconditioner solves = 12927 + Preconditioner setups = 2 + Preconditioner solves = 10957 - Max error = 3.296010432179086e-03 + Max error = 3.297333552827242e-03 diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_0_-4.out b/examples/arkode/CXX_serial/ark_kpr_Mt_0_-4.out index 8a2bebd177..b97f6efdd1 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_0_-4.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_0_-4.out @@ -11,13 +11,13 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: Fixed-step runs: ----------------------------------------------------- - h = 5.000e-01, error = 7.947e-05 - h = 2.500e-01, error = 3.984e-05, order = 1.00 - h = 1.250e-01, error = 1.367e-05, order = 1.54 - h = 6.250e-02, error = 3.085e-06, order = 2.15 - h = 3.125e-02, error = 4.714e-07, order = 2.71 - h = 1.562e-02, error = 5.337e-08, order = 3.14 - h = 7.812e-03, error = 4.828e-09, order = 3.47 - h = 3.906e-03, error = 3.726e-10, order = 3.70 + h = 5.000e-01, error = 3.413e-04 + h = 2.500e-01, error = 8.325e-05, order = 2.04 + h = 1.250e-01, error = 2.270e-05, order = 1.87 + h = 6.250e-02, error = 3.679e-06, order = 2.63 + h = 3.125e-02, error = 3.525e-07, order = 3.38 + h = 1.562e-02, error = 2.499e-08, order = 3.82 + h = 7.812e-03, error = 1.597e-09, order = 3.97 + h = 3.906e-03, error = 9.844e-11, order = 4.02 ----------------------------------------------------- - Order: max = 3.70, avg = 2.53, overall = 2.57 [SUCCESS] + Order: max = 4.02, avg = 3.10, overall = 3.13 [SUCCESS] diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_0_10_1.out b/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_0_10_1.out index 25d972ace0..45f23d1702 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_0_10_1.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_0_10_1.out @@ -12,117 +12,117 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: t u v uerr verr ------------------------------------------------------ -3.000000 0.710636 1.363407 0.00e+00 0.00e+00 - -2.900000 0.717301 1.326933 2.70e-07 3.73e-08 - -2.800000 0.727249 1.290351 1.13e-06 1.93e-06 - -2.700000 0.740247 1.254036 1.07e-06 5.17e-06 - -2.600000 0.756014 1.218395 7.58e-07 4.79e-06 - -2.500000 0.774228 1.183857 4.73e-07 4.46e-06 - -2.400000 0.794546 1.150881 3.10e-07 4.15e-06 - -2.300000 0.816616 1.119949 1.90e-07 3.86e-06 - -2.200000 0.840089 1.091557 7.29e-08 3.57e-06 - -2.100000 0.864625 1.066201 5.01e-08 3.31e-06 - -2.000000 0.889902 1.044364 2.51e-07 2.98e-06 - -1.900000 0.915617 1.026496 7.41e-07 2.44e-06 - -1.800000 0.941484 1.012992 3.21e-06 4.66e-07 - -1.700000 0.967244 1.004159 8.82e-06 3.48e-08 - -1.600000 0.992667 1.000213 5.91e-06 1.67e-07 - -1.500000 1.017525 1.001250 6.01e-06 1.73e-06 - -1.400000 1.041618 1.007250 7.55e-06 6.60e-07 - -1.300000 1.064770 1.018056 7.07e-06 1.39e-06 - -1.200000 1.086812 1.033423 8.15e-06 1.14e-06 - -1.100000 1.107603 1.052993 6.37e-06 1.16e-06 - -1.000000 1.127003 1.076350 6.54e-06 5.97e-07 - -0.900000 1.144897 1.103030 7.12e-06 1.12e-06 - -0.800000 1.161181 1.132540 5.65e-06 1.73e-06 - -0.700000 1.175759 1.164384 5.09e-06 3.04e-06 - -0.600000 1.188551 1.198067 6.35e-06 3.20e-06 - -0.500000 1.199490 1.233118 5.85e-06 1.93e-06 - -0.400000 1.208519 1.269088 5.00e-06 5.89e-07 - -0.300000 1.215588 1.305555 6.04e-06 2.25e-06 - -0.200000 1.220662 1.342131 6.84e-06 5.78e-06 - -0.100000 1.223719 1.378457 6.01e-06 7.95e-06 - 0.000000 1.224739 1.414204 5.62e-06 9.85e-06 - 0.100000 1.223718 1.449068 7.07e-06 1.25e-05 - 0.200000 1.220662 1.482778 6.74e-06 1.28e-05 - 0.300000 1.215588 1.515084 5.72e-06 1.31e-05 - 0.400000 1.208518 1.545760 5.96e-06 1.46e-05 - 0.500000 1.199489 1.574603 6.91e-06 1.62e-05 - 0.600000 1.188551 1.601433 6.09e-06 1.67e-05 - 0.700000 1.175759 1.626088 5.28e-06 1.69e-05 - 0.800000 1.161180 1.648423 5.98e-06 1.75e-05 - 0.900000 1.144898 1.668313 5.87e-06 1.77e-05 - 1.000000 1.127005 1.685649 4.85e-06 1.72e-05 - 1.100000 1.107605 1.700338 4.37e-06 1.67e-05 - 1.200000 1.086816 1.712303 4.71e-06 1.64e-05 - 1.300000 1.064773 1.721483 3.98e-06 1.56e-05 - 1.400000 1.041622 1.727831 3.10e-06 1.45e-05 - 1.500000 1.017528 1.731314 2.71e-06 1.35e-05 - 1.600000 0.992671 1.731915 2.16e-06 1.23e-05 - 1.700000 0.967251 1.729632 1.35e-06 1.10e-05 - 1.800000 0.941487 1.724475 4.26e-07 9.77e-06 - 1.900000 0.915622 1.716469 5.05e-06 1.00e-05 - 2.000000 0.889909 1.705658 6.21e-06 8.62e-06 - 2.100000 0.864636 1.692092 1.05e-05 1.02e-05 - 2.200000 0.840099 1.675847 1.03e-05 9.88e-06 - 2.300000 0.816629 1.657008 1.24e-05 9.44e-06 - 2.400000 0.794555 1.635676 9.06e-06 8.49e-06 - 2.500000 0.774235 1.611970 7.64e-06 7.70e-06 - 2.600000 0.756021 1.586026 7.63e-06 7.67e-06 - 2.700000 0.740253 1.557998 6.87e-06 7.15e-06 - 2.800000 0.727253 1.528060 5.82e-06 7.10e-06 - 2.900000 0.717306 1.496405 4.89e-06 7.26e-06 - 3.000000 0.710640 1.463249 4.17e-06 7.32e-06 - 3.100000 0.707416 1.428831 3.60e-06 7.55e-06 - 3.200000 0.707712 1.393413 3.07e-06 8.92e-06 - 3.300000 0.711522 1.357287 2.62e-06 9.53e-06 - 3.400000 0.718752 1.320772 2.24e-06 7.95e-06 - 3.500000 0.729229 1.284212 1.93e-06 6.49e-06 - 3.600000 0.742713 1.247985 1.62e-06 5.13e-06 - 3.700000 0.758915 1.212499 1.32e-06 3.88e-06 - 3.800000 0.777507 1.178192 1.01e-06 2.73e-06 - 3.900000 0.798145 1.145526 7.18e-07 1.69e-06 - 4.000000 0.820475 1.114987 4.41e-07 7.68e-07 - 4.100000 0.844149 1.087071 1.85e-07 3.81e-08 - 4.200000 0.868832 1.062274 5.04e-08 7.17e-07 - 4.300000 0.894204 1.041075 2.64e-07 1.26e-06 - 4.400000 0.919963 1.023915 9.20e-07 2.28e-06 - 4.500000 0.945828 1.011177 6.19e-06 4.81e-06 - 4.600000 0.971553 1.003152 4.72e-06 1.97e-06 - 4.700000 0.996891 1.000041 7.14e-06 2.29e-06 - 4.800000 1.021634 1.001919 6.39e-06 3.05e-06 - 4.900000 1.045581 1.008736 7.54e-06 9.35e-07 - 5.000000 1.068557 1.020334 7.55e-06 2.47e-06 - 5.100000 1.090402 1.036431 5.68e-06 1.83e-06 - 5.200000 1.110965 1.056670 7.01e-06 2.46e-06 - 5.300000 1.130120 1.080619 6.62e-06 2.63e-06 - 5.400000 1.147752 1.107809 5.22e-06 2.51e-06 - 5.500000 1.163753 1.137747 5.96e-06 3.76e-06 - 5.600000 1.178036 1.169935 6.19e-06 6.46e-06 - 5.700000 1.190523 1.203881 5.11e-06 5.99e-06 - 5.800000 1.201144 1.239116 4.94e-06 4.32e-06 - 5.900000 1.209845 1.275199 6.25e-06 3.31e-06 - 6.000000 1.216582 1.311713 5.78e-06 2.19e-06 - 6.100000 1.221320 1.348274 4.88e-06 1.47e-06 - 6.200000 1.224033 1.384526 5.58e-06 8.06e-07 - 6.300000 1.224710 1.420146 6.33e-06 9.33e-08 - 6.400000 1.223348 1.454836 5.45e-06 7.00e-07 - 6.500000 1.219952 1.488327 4.87e-06 1.03e-06 - 6.600000 1.214538 1.520374 6.04e-06 1.49e-06 - 6.700000 1.207136 1.550752 6.18e-06 5.85e-06 - 6.800000 1.197784 1.579267 5.34e-06 8.88e-06 - 6.900000 1.186528 1.605740 5.46e-06 1.20e-05 - 7.000000 1.173429 1.630011 6.48e-06 1.55e-05 + -2.900000 0.717302 1.326933 6.11e-07 3.32e-08 + -2.800000 0.727253 1.290352 5.34e-06 1.02e-06 + -2.700000 0.740279 1.254037 3.29e-05 4.05e-06 + -2.600000 0.756043 1.218398 3.04e-05 1.70e-06 + -2.500000 0.774246 1.183859 1.90e-05 1.94e-06 + -2.400000 0.794560 1.150884 1.39e-05 8.79e-07 + -2.300000 0.816638 1.119952 2.16e-05 1.14e-06 + -2.200000 0.840132 1.091558 4.27e-05 2.21e-06 + -2.100000 0.864656 1.066202 3.06e-05 2.05e-06 + -2.000000 0.889915 1.044371 1.20e-05 4.24e-06 + -1.900000 0.915629 1.026496 1.19e-05 2.37e-06 + -1.800000 0.941492 1.012991 4.11e-06 6.73e-07 + -1.700000 0.967246 1.004169 6.69e-06 1.04e-05 + -1.600000 0.992667 1.000210 6.59e-06 2.93e-06 + -1.500000 1.017521 1.001259 1.01e-05 7.11e-06 + -1.400000 1.041604 1.007259 2.13e-05 9.77e-06 + -1.300000 1.064761 1.018056 1.53e-05 2.16e-06 + -1.200000 1.086799 1.033429 2.15e-05 6.70e-06 + -1.100000 1.107578 1.052996 3.15e-05 3.36e-06 + -1.000000 1.126990 1.076350 1.95e-05 3.16e-07 + -0.900000 1.144872 1.103030 3.18e-05 1.34e-06 + -0.800000 1.161151 1.132540 3.56e-05 1.01e-06 + -0.700000 1.175739 1.164379 2.51e-05 1.43e-06 + -0.600000 1.188515 1.198063 4.19e-05 1.17e-06 + -0.500000 1.199463 1.233117 3.29e-05 9.88e-07 + -0.400000 1.208487 1.269084 3.72e-05 2.82e-06 + -0.300000 1.215537 1.305557 5.68e-05 4.97e-07 + -0.200000 1.220635 1.342136 3.42e-05 5.64e-07 + -0.100000 1.223683 1.378462 4.20e-05 3.45e-06 + 0.000000 1.224697 1.414213 4.78e-05 1.09e-07 + 0.100000 1.223697 1.449078 2.76e-05 2.53e-06 + 0.200000 1.220632 1.482788 3.68e-05 3.15e-06 + 0.300000 1.215564 1.515097 2.98e-05 6.63e-07 + 0.400000 1.208504 1.545771 2.02e-05 3.64e-06 + 0.500000 1.199472 1.574617 2.42e-05 2.57e-06 + 0.600000 1.188542 1.601448 1.51e-05 1.80e-06 + 0.700000 1.175741 1.626102 2.29e-05 3.22e-06 + 0.800000 1.161159 1.648440 2.74e-05 8.89e-07 + 0.900000 1.144886 1.668329 1.75e-05 1.96e-06 + 1.000000 1.126983 1.685664 2.66e-05 2.15e-06 + 1.100000 1.107586 1.700355 2.27e-05 2.46e-07 + 1.200000 1.086803 1.712318 1.75e-05 2.21e-06 + 1.300000 1.064754 1.721497 2.29e-05 1.33e-06 + 1.400000 1.041612 1.727845 1.39e-05 7.19e-07 + 1.500000 1.017516 1.731325 1.46e-05 2.39e-06 + 1.600000 0.992659 1.731927 1.47e-05 7.75e-07 + 1.700000 0.967244 1.729641 8.20e-06 1.53e-06 + 1.800000 0.941480 1.724482 7.98e-06 2.44e-06 + 1.900000 0.915613 1.716478 4.45e-06 6.32e-07 + 2.000000 0.889901 1.705664 1.50e-06 2.49e-06 + 2.100000 0.864629 1.692100 3.46e-06 2.42e-06 + 2.200000 0.840093 1.675856 4.10e-06 1.15e-06 + 2.300000 0.816627 1.657013 1.08e-05 3.55e-06 + 2.400000 0.794564 1.635682 1.84e-05 2.38e-06 + 2.500000 0.774251 1.611974 2.31e-05 4.18e-06 + 2.600000 0.756096 1.586019 8.33e-05 1.39e-05 + 2.700000 0.740378 1.557990 1.32e-04 1.49e-05 + 2.800000 0.727354 1.528060 1.07e-04 7.15e-06 + 2.900000 0.717378 1.496404 7.71e-05 8.36e-06 + 3.000000 0.710757 1.463244 1.21e-04 1.28e-05 + 3.100000 0.707527 1.428831 1.15e-04 8.20e-06 + 3.200000 0.707777 1.393416 6.75e-05 6.81e-06 + 3.300000 0.711614 1.357286 9.41e-05 1.03e-05 + 3.400000 0.718834 1.320774 8.44e-05 6.00e-06 + 3.500000 0.729281 1.284212 5.38e-05 6.50e-06 + 3.600000 0.742788 1.247983 7.64e-05 7.63e-06 + 3.700000 0.758972 1.212500 5.85e-05 2.65e-06 + 3.800000 0.777545 1.178189 3.88e-05 5.57e-06 + 3.900000 0.798193 1.145520 4.91e-05 7.88e-06 + 4.000000 0.820501 1.114982 2.68e-05 5.68e-06 + 4.100000 0.844165 1.087068 1.53e-05 3.10e-06 + 4.200000 0.868849 1.062269 1.63e-05 4.55e-06 + 4.300000 0.894208 1.041075 3.74e-06 1.41e-06 + 4.400000 0.919960 1.023918 3.50e-06 4.92e-06 + 4.500000 0.945832 1.011169 1.82e-06 3.42e-06 + 4.600000 0.971548 1.003161 9.24e-06 1.12e-05 + 4.700000 0.996883 1.000044 1.48e-05 5.98e-06 + 4.800000 1.021627 1.001922 1.40e-05 6.15e-06 + 4.900000 1.045520 1.008796 6.88e-05 6.00e-05 + 5.000000 1.068431 1.020406 1.34e-04 7.52e-05 + 5.100000 1.090257 1.036463 1.50e-04 3.43e-05 + 5.200000 1.110889 1.056673 8.32e-05 6.19e-06 + 5.300000 1.130046 1.080629 8.11e-05 1.18e-05 + 5.400000 1.147620 1.107823 1.37e-04 1.65e-05 + 5.500000 1.163599 1.137759 1.60e-04 1.58e-05 + 5.600000 1.177954 1.169938 8.79e-05 9.27e-06 + 5.700000 1.190428 1.203872 1.00e-04 3.09e-06 + 5.800000 1.200979 1.239109 1.70e-04 2.93e-06 + 5.900000 1.209660 1.275204 1.91e-04 8.84e-06 + 6.000000 1.216488 1.311716 9.91e-05 5.63e-06 + 6.100000 1.221227 1.348266 9.81e-05 6.18e-06 + 6.200000 1.223887 1.384523 1.51e-04 2.78e-06 + 6.300000 1.224559 1.420155 1.57e-04 9.73e-06 + 6.400000 1.223274 1.454841 7.92e-05 4.29e-06 + 6.500000 1.219860 1.488324 9.67e-05 4.35e-06 + 6.600000 1.214400 1.520375 1.43e-04 4.82e-07 + 6.700000 1.207015 1.550765 1.27e-04 6.78e-06 + 6.800000 1.197721 1.579276 6.79e-05 1.60e-07 + 6.900000 1.186439 1.605749 9.46e-05 3.21e-06 + 7.000000 1.173309 1.630030 1.26e-04 3.39e-06 ------------------------------------------------------ Final Solver Statistics: - Internal solver steps = 80 (attempted = 82) + Internal solver steps = 37 (attempted = 39) Total number of error test failures = 2 - Total RHS evals: Fe = 493, Fi = 1082 - Total mass matrix setups = 413 - Total mass matrix solves = 574 - Total mass times evals = 1079 - Total number of Jacobian evaluations = 12 - Total linear solver setups = 21 - Total number of Nonlinear iterations = 999 - Total number of Nonlinear convergence failures = 11 - Errors: u = 5.44891e-06, v = 7.96021e-06, total = 6.82113e-06 + Total RHS evals: Fe = 274, Fi = 638 + Total mass matrix setups = 237 + Total mass matrix solves = 312 + Total mass times evals = 635 + Total number of Jacobian evaluations = 7 + Total linear solver setups = 15 + Total number of Nonlinear iterations = 598 + Total number of Nonlinear convergence failures = 6 + Errors: u = 6.90737e-05, v = 1.16531e-05, total = 4.95327e-05 diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_1_10_1.out b/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_1_10_1.out index e28c955d6b..645abfd1ea 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_1_10_1.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_0_-10_1_10_1.out @@ -12,117 +12,117 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: t u v uerr verr ------------------------------------------------------ -3.000000 0.710636 1.363407 0.00e+00 0.00e+00 - -2.900000 0.717302 1.326933 5.18e-07 6.29e-08 - -2.800000 0.727249 1.290354 1.76e-06 3.00e-07 - -2.700000 0.740248 1.254042 1.77e-06 6.52e-07 - -2.600000 0.756015 1.218401 2.05e-06 1.18e-06 - -2.500000 0.774229 1.183863 1.80e-06 1.67e-06 - -2.400000 0.794548 1.150887 1.78e-06 2.26e-06 - -2.300000 0.816618 1.119956 1.73e-06 2.88e-06 - -2.200000 0.840091 1.091561 2.35e-06 9.16e-07 - -2.100000 0.864627 1.066206 1.41e-06 1.78e-06 - -2.000000 0.889903 1.044369 7.08e-07 1.83e-06 - -1.900000 0.915617 1.026506 8.72e-08 7.10e-06 - -1.800000 0.941487 1.013000 3.27e-07 8.36e-06 - -1.700000 0.967250 1.004167 2.68e-06 8.25e-06 - -1.600000 0.992670 1.000223 3.57e-06 9.84e-06 - -1.500000 1.017527 1.001259 3.97e-06 7.51e-06 - -1.400000 1.041619 1.007259 6.46e-06 9.78e-06 - -1.300000 1.064772 1.018066 5.08e-06 8.29e-06 - -1.200000 1.086813 1.033430 7.23e-06 8.10e-06 - -1.100000 1.107603 1.053000 6.59e-06 8.19e-06 - -1.000000 1.127004 1.076357 5.43e-06 7.25e-06 - -0.900000 1.144897 1.103036 7.08e-06 7.19e-06 - -0.800000 1.161180 1.132545 6.46e-06 6.66e-06 - -0.700000 1.175759 1.164387 5.27e-06 6.15e-06 - -0.600000 1.188551 1.198070 6.33e-06 6.04e-06 - -0.500000 1.199489 1.233121 6.80e-06 5.48e-06 - -0.400000 1.208518 1.269092 5.71e-06 4.92e-06 - -0.300000 1.215588 1.305562 5.38e-06 4.74e-06 - -0.200000 1.220662 1.342141 6.93e-06 4.44e-06 - -0.100000 1.223718 1.378469 6.52e-06 3.81e-06 - 0.000000 1.224739 1.414217 5.45e-06 3.44e-06 - 0.100000 1.223719 1.449083 6.01e-06 3.25e-06 - 0.200000 1.220662 1.482794 6.90e-06 2.72e-06 - 0.300000 1.215588 1.515100 5.89e-06 2.20e-06 - 0.400000 1.208519 1.545776 5.12e-06 1.91e-06 - 0.500000 1.199490 1.574621 6.23e-06 1.56e-06 - 0.600000 1.188551 1.601451 5.98e-06 9.90e-07 - 0.700000 1.175759 1.626106 4.83e-06 5.92e-07 - 0.800000 1.161182 1.648441 4.59e-06 3.18e-07 - 0.900000 1.144899 1.668330 5.22e-06 1.80e-07 - 1.000000 1.127005 1.685666 4.37e-06 6.52e-07 - 1.100000 1.107606 1.700354 3.45e-06 9.25e-07 - 1.200000 1.086817 1.712319 3.52e-06 1.26e-06 - 1.300000 1.064774 1.721497 3.17e-06 1.75e-06 - 1.400000 1.041623 1.727843 2.27e-06 2.05e-06 - 1.500000 1.017529 1.731325 1.62e-06 2.23e-06 - 1.600000 0.992672 1.731925 1.09e-06 2.62e-06 - 1.700000 0.967252 1.729640 2.98e-07 2.96e-06 - 1.800000 0.941488 1.724482 3.06e-07 3.07e-06 - 1.900000 0.915619 1.716476 1.21e-06 3.20e-06 - 2.000000 0.889905 1.705663 2.67e-06 3.54e-06 - 2.100000 0.864629 1.692098 3.20e-06 3.66e-06 - 2.200000 0.840092 1.675853 3.55e-06 3.60e-06 - 2.300000 0.816622 1.657013 5.76e-06 3.73e-06 - 2.400000 0.794553 1.635680 7.17e-06 3.89e-06 - 2.500000 0.774234 1.611974 6.62e-06 3.74e-06 - 2.600000 0.756019 1.586030 6.45e-06 3.52e-06 - 2.700000 0.740253 1.558002 7.30e-06 3.40e-06 - 2.800000 0.727255 1.528064 7.08e-06 3.25e-06 - 2.900000 0.717306 1.496410 4.96e-06 2.49e-06 - 3.000000 0.710640 1.463255 3.65e-06 1.95e-06 - 3.100000 0.707417 1.428837 4.78e-06 1.61e-06 - 3.200000 0.707713 1.393421 3.79e-06 1.41e-06 - 3.300000 0.711524 1.357296 4.13e-06 1.09e-06 - 3.400000 0.718753 1.320779 3.08e-06 9.90e-07 - 3.500000 0.729230 1.284218 3.50e-06 7.02e-07 - 3.600000 0.742714 1.247989 2.37e-06 7.15e-07 - 3.700000 0.758915 1.212502 9.93e-07 1.30e-06 - 3.800000 0.777507 1.178192 2.56e-07 1.98e-06 - 3.900000 0.798144 1.145525 2.27e-07 2.69e-06 - 4.000000 0.820474 1.114984 5.91e-07 3.44e-06 - 4.100000 0.844148 1.087067 8.85e-07 4.17e-06 - 4.200000 0.868831 1.062268 1.12e-06 4.90e-06 - 4.300000 0.894202 1.041068 1.31e-06 5.58e-06 - 4.400000 0.919963 1.023910 1.35e-06 3.31e-06 - 4.500000 0.945833 1.011171 9.17e-07 1.79e-06 - 4.600000 0.971554 1.003150 2.99e-06 5.83e-07 - 4.700000 0.996895 1.000039 2.92e-06 8.52e-07 - 4.800000 1.021636 1.001916 4.52e-06 5.99e-07 - 4.900000 1.045583 1.008738 5.49e-06 2.78e-06 - 5.000000 1.068560 1.020333 4.65e-06 1.94e-06 - 5.100000 1.090401 1.036432 6.80e-06 2.61e-06 - 5.200000 1.110966 1.056670 6.28e-06 3.13e-06 - 5.300000 1.130122 1.080620 5.31e-06 2.82e-06 - 5.400000 1.147750 1.107810 6.97e-06 3.23e-06 - 5.500000 1.163752 1.137746 6.56e-06 3.16e-06 - 5.600000 1.178037 1.169932 5.39e-06 3.04e-06 - 5.700000 1.190522 1.203878 6.25e-06 3.28e-06 - 5.800000 1.201142 1.239115 6.96e-06 3.08e-06 - 5.900000 1.209845 1.275198 5.92e-06 2.78e-06 - 6.000000 1.216582 1.311713 5.43e-06 2.82e-06 - 6.100000 1.221318 1.348275 6.97e-06 2.77e-06 - 6.200000 1.224032 1.384528 6.70e-06 2.33e-06 - 6.300000 1.224710 1.420148 5.59e-06 2.09e-06 - 6.400000 1.223347 1.454839 5.89e-06 2.04e-06 - 6.500000 1.219950 1.488330 6.96e-06 1.68e-06 - 6.600000 1.214538 1.520377 6.02e-06 1.24e-06 - 6.700000 1.207137 1.550759 5.14e-06 1.04e-06 - 6.800000 1.197783 1.579277 6.12e-06 7.99e-07 - 6.900000 1.186528 1.605752 6.04e-06 3.04e-07 - 7.000000 1.173431 1.630027 4.89e-06 4.45e-08 + -2.900000 0.717304 1.326933 3.33e-06 2.07e-07 + -2.800000 0.727254 1.290354 6.10e-06 1.90e-07 + -2.700000 0.740252 1.254042 6.43e-06 6.84e-07 + -2.600000 0.756035 1.218398 2.24e-05 1.71e-06 + -2.500000 0.774251 1.183861 2.38e-05 6.05e-08 + -2.400000 0.794564 1.150885 1.77e-05 5.83e-07 + -2.300000 0.816638 1.119953 2.17e-05 1.23e-07 + -2.200000 0.840100 1.091562 1.10e-05 1.50e-06 + -2.100000 0.864638 1.066205 1.28e-05 1.33e-06 + -2.000000 0.889909 1.044370 6.55e-06 2.53e-06 + -1.900000 0.915621 1.026504 3.45e-06 5.07e-06 + -1.800000 0.941490 1.012993 2.62e-06 1.54e-06 + -1.700000 0.967250 1.004168 3.17e-06 8.91e-06 + -1.600000 0.992670 1.000215 3.12e-06 1.33e-06 + -1.500000 1.017529 1.001256 1.68e-06 4.32e-06 + -1.400000 1.041625 1.007256 6.18e-07 6.82e-06 + -1.300000 1.064766 1.018072 1.05e-05 1.44e-05 + -1.200000 1.086804 1.033431 1.68e-05 8.80e-06 + -1.100000 1.107597 1.053000 1.25e-05 7.98e-06 + -1.000000 1.126988 1.076358 2.20e-05 8.42e-06 + -0.900000 1.144889 1.103034 1.51e-05 5.42e-06 + -0.800000 1.161165 1.132543 2.11e-05 4.73e-06 + -0.700000 1.175741 1.164386 2.34e-05 5.16e-06 + -0.600000 1.188539 1.198067 1.80e-05 2.63e-06 + -0.500000 1.199469 1.233119 2.70e-05 3.35e-06 + -0.400000 1.208507 1.269090 1.70e-05 2.95e-06 + -0.300000 1.215569 1.305559 2.49e-05 1.31e-06 + -0.200000 1.220647 1.342140 2.23e-05 3.47e-06 + -0.100000 1.223704 1.378466 2.05e-05 6.89e-07 + 0.000000 1.224718 1.414216 2.72e-05 2.34e-06 + 0.100000 1.223707 1.449081 1.72e-05 1.22e-06 + 0.200000 1.220644 1.482792 2.56e-05 8.16e-07 + 0.300000 1.215575 1.515099 1.85e-05 1.90e-06 + 0.400000 1.208503 1.545774 2.09e-05 5.60e-08 + 0.500000 1.199472 1.574621 2.38e-05 1.66e-06 + 0.600000 1.188541 1.601450 1.63e-05 1.21e-07 + 0.700000 1.175741 1.626106 2.32e-05 4.93e-07 + 0.800000 1.161171 1.648441 1.50e-05 2.87e-07 + 0.900000 1.144882 1.668327 2.17e-05 3.75e-06 + 1.000000 1.126989 1.685662 2.09e-05 4.63e-06 + 1.100000 1.107594 1.700349 1.53e-05 5.74e-06 + 1.200000 1.086802 1.712315 1.81e-05 4.56e-06 + 1.300000 1.064766 1.721494 1.10e-05 4.61e-06 + 1.400000 1.041612 1.727841 1.39e-05 4.78e-06 + 1.500000 1.017521 1.731324 9.77e-06 3.57e-06 + 1.600000 0.992664 1.731923 9.16e-06 4.71e-06 + 1.700000 0.967244 1.729639 8.50e-06 3.52e-06 + 1.800000 0.941482 1.724481 5.17e-06 4.15e-06 + 1.900000 0.915613 1.716475 4.24e-06 4.18e-06 + 2.000000 0.889901 1.705663 1.75e-06 3.40e-06 + 2.100000 0.864626 1.692097 7.95e-07 4.68e-06 + 2.200000 0.840093 1.675854 3.68e-06 3.38e-06 + 2.300000 0.816619 1.657013 2.63e-06 3.81e-06 + 2.400000 0.794547 1.635680 1.61e-06 4.01e-06 + 2.500000 0.774234 1.611973 6.15e-06 4.83e-06 + 2.600000 0.756021 1.586029 8.35e-06 3.99e-06 + 2.700000 0.740258 1.558001 1.17e-05 4.03e-06 + 2.800000 0.727261 1.528065 1.32e-05 2.27e-06 + 2.900000 0.717318 1.496409 1.64e-05 2.78e-06 + 3.000000 0.710654 1.463255 1.78e-05 1.53e-06 + 3.100000 0.707432 1.428837 1.96e-05 2.42e-06 + 3.200000 0.707731 1.393421 2.17e-05 1.71e-06 + 3.300000 0.711540 1.357294 2.03e-05 2.83e-06 + 3.400000 0.718773 1.320777 2.35e-05 2.69e-06 + 3.500000 0.729246 1.284215 1.89e-05 3.26e-06 + 3.600000 0.742735 1.247988 2.32e-05 2.56e-06 + 3.700000 0.758931 1.212501 1.70e-05 2.02e-06 + 3.800000 0.777529 1.178195 2.30e-05 8.60e-08 + 3.900000 0.798158 1.145529 1.43e-05 1.47e-06 + 4.000000 0.820493 1.114991 1.82e-05 3.60e-06 + 4.100000 0.844160 1.087077 1.02e-05 5.73e-06 + 4.200000 0.868845 1.062281 1.22e-05 7.62e-06 + 4.300000 0.894210 1.041084 6.23e-06 1.02e-05 + 4.400000 0.919970 1.023925 6.18e-06 1.19e-05 + 4.500000 0.945837 1.011187 2.54e-06 1.42e-05 + 4.600000 0.971558 1.003165 6.07e-07 1.59e-05 + 4.700000 0.996899 1.000053 5.05e-07 1.45e-05 + 4.800000 1.021641 1.001932 6.10e-07 1.58e-05 + 4.900000 1.045583 1.008757 5.50e-06 2.15e-05 + 5.000000 1.068550 1.020350 1.49e-05 1.93e-05 + 5.100000 1.090398 1.036443 9.92e-06 1.39e-05 + 5.200000 1.110953 1.056683 1.84e-05 1.58e-05 + 5.300000 1.130110 1.080628 1.68e-05 1.10e-05 + 5.400000 1.147715 1.107817 4.17e-05 1.01e-05 + 5.500000 1.163658 1.137754 1.01e-04 1.13e-05 + 5.600000 1.177918 1.169943 1.24e-04 1.42e-05 + 5.700000 1.190461 1.203885 6.68e-05 1.02e-05 + 5.800000 1.201073 1.239112 7.62e-05 6.63e-07 + 5.900000 1.209734 1.275199 1.17e-04 3.67e-06 + 6.000000 1.216485 1.311722 1.03e-04 1.13e-05 + 6.100000 1.221263 1.348274 6.16e-05 2.39e-06 + 6.200000 1.223942 1.384524 9.73e-05 1.79e-06 + 6.300000 1.224594 1.420152 1.22e-04 5.98e-06 + 6.400000 1.223284 1.454842 6.88e-05 5.92e-06 + 6.500000 1.219885 1.488326 7.19e-05 1.85e-06 + 6.600000 1.214434 1.520376 1.10e-04 2.74e-07 + 6.700000 1.207042 1.550764 1.00e-04 6.33e-06 + 6.800000 1.197733 1.579276 5.66e-05 1.63e-07 + 6.900000 1.186451 1.605749 8.30e-05 2.89e-06 + 7.000000 1.173331 1.630029 1.05e-04 2.11e-06 ------------------------------------------------------ Final Solver Statistics: - Internal solver steps = 83 (attempted = 83) + Internal solver steps = 48 (attempted = 51) Total number of error test failures = 0 - Total RHS evals: Fe = 501, Fi = 1738 - Total mass matrix setups = 418 - Total mass matrix solves = 585 - Total mass times evals = 1735 - Total number of Jacobian evaluations = 145 - Total linear solver setups = 150 - Total number of Nonlinear iterations = 1652 - Total number of Nonlinear convergence failures = 144 - Errors: u = 4.76925e-06, v = 3.83012e-06, total = 4.32525e-06 + Total RHS evals: Fe = 353, Fi = 1469 + Total mass matrix setups = 308 + Total mass matrix solves = 402 + Total mass times evals = 1466 + Total number of Jacobian evaluations = 190 + Total linear solver setups = 201 + Total number of Nonlinear iterations = 1418 + Total number of Nonlinear convergence failures = 189 + Errors: u = 4.0374e-05, v = 6.80345e-06, total = 2.89512e-05 diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_1.out b/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_1.out index a662ca0306..3a3e5327ca 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_1.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_0_4_1.out @@ -12,117 +12,117 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: t u v uerr verr ------------------------------------------------------ -3.000000 0.710636 1.363407 0.00e+00 0.00e+00 - -2.900000 0.717301 1.326933 4.49e-10 2.27e-12 - -2.800000 0.727247 1.290353 4.71e-10 2.40e-12 - -2.700000 0.740246 1.254042 4.75e-10 2.42e-12 - -2.600000 0.756013 1.218400 4.81e-10 2.45e-12 - -2.500000 0.774227 1.183861 4.86e-10 2.53e-12 - -2.400000 0.794546 1.150885 4.63e-10 2.35e-12 - -2.300000 0.816616 1.119953 4.77e-10 2.40e-12 - -2.200000 0.840089 1.091560 4.63e-10 2.29e-12 - -2.100000 0.864625 1.066204 4.49e-10 1.91e-12 - -2.000000 0.889903 1.044367 4.35e-10 2.22e-12 - -1.900000 0.915617 1.026499 1.65e-10 5.44e-12 - -1.800000 0.941488 1.012992 2.06e-09 3.81e-11 - -1.700000 0.967253 1.004159 8.28e-10 5.15e-12 - -1.600000 0.992673 1.000213 2.51e-08 1.04e-10 - -1.500000 1.017531 1.001252 7.18e-08 1.15e-09 - -1.400000 1.041625 1.007249 7.22e-10 3.60e-11 - -1.300000 1.064777 1.018058 7.17e-10 3.30e-11 - -1.200000 1.086821 1.033422 6.98e-10 2.85e-11 - -1.100000 1.107609 1.052992 7.02e-10 2.53e-11 - -1.000000 1.127010 1.076350 7.44e-10 2.17e-11 - -0.900000 1.144904 1.103029 7.25e-10 1.91e-11 - -0.800000 1.161186 1.132539 7.50e-10 1.63e-11 - -0.700000 1.175764 1.164381 7.38e-10 1.40e-11 - -0.600000 1.188557 1.198064 7.71e-10 1.19e-11 - -0.500000 1.199496 1.233116 8.00e-10 9.72e-12 - -0.400000 1.208524 1.269087 7.82e-10 8.43e-12 - -0.300000 1.215594 1.305557 7.61e-10 6.91e-12 - -0.200000 1.220669 1.342137 8.22e-10 5.38e-12 - -0.100000 1.223725 1.378465 1.64e-07 8.46e-10 - 0.000000 1.224745 1.414214 7.74e-08 3.69e-10 - 0.100000 1.223724 1.449080 1.98e-07 9.71e-10 - 0.200000 1.220669 1.482791 2.35e-07 1.13e-09 - 0.300000 1.215594 1.515097 2.41e-07 1.12e-09 - 0.400000 1.208524 1.545774 8.88e-10 9.81e-11 - 0.500000 1.199496 1.574619 7.62e-10 8.75e-11 - 0.600000 1.188557 1.601450 8.07e-10 7.72e-11 - 0.700000 1.175764 1.626105 7.70e-10 6.85e-11 - 0.800000 1.161186 1.648441 7.48e-10 6.09e-11 - 0.900000 1.144904 1.668331 7.79e-10 5.39e-11 - 1.000000 1.127010 1.685666 7.17e-10 4.84e-11 - 1.100000 1.107609 1.700355 7.31e-10 4.30e-11 - 1.200000 1.086821 1.712320 6.79e-10 3.86e-11 - 1.300000 1.064777 1.721499 6.92e-10 3.44e-11 - 1.400000 1.041625 1.727845 2.04e-08 6.72e-11 - 1.500000 1.017530 1.731328 1.59e-07 7.12e-10 - 1.600000 0.992673 1.731928 6.88e-08 2.91e-10 - 1.700000 0.967253 1.729643 8.70e-08 3.76e-10 - 1.800000 0.941488 1.724485 5.13e-10 5.69e-11 - 1.900000 0.915617 1.716479 8.67e-10 5.85e-11 - 2.000000 0.889903 1.705666 6.33e-10 5.28e-11 - 2.100000 0.864625 1.692102 6.31e-10 4.83e-11 - 2.200000 0.840089 1.675857 5.82e-10 4.42e-11 - 2.300000 0.816616 1.657017 5.51e-10 4.05e-11 - 2.400000 0.794546 1.635684 5.15e-10 3.71e-11 - 2.500000 0.774227 1.611978 5.14e-10 3.44e-11 - 2.600000 0.756013 1.586033 4.88e-10 3.16e-11 - 2.700000 0.740246 1.558005 4.89e-10 2.93e-11 - 2.800000 0.727247 1.528067 4.90e-10 2.73e-11 - 2.900000 0.717301 1.496412 4.79e-10 2.54e-11 - 3.000000 0.710636 1.463257 4.70e-10 2.36e-11 - 3.100000 0.707412 1.428839 9.20e-08 4.46e-10 - 3.200000 0.707710 1.393422 1.09e-07 5.62e-10 - 3.300000 0.711520 1.357297 5.27e-10 1.53e-11 - 3.400000 0.718750 1.320780 4.47e-10 1.41e-11 - 3.500000 0.729227 1.284218 4.49e-10 1.32e-11 - 3.600000 0.742712 1.247990 4.72e-10 1.26e-11 - 3.700000 0.758914 1.212503 4.83e-10 1.20e-11 - 3.800000 0.777506 1.178194 4.61e-10 1.13e-11 - 3.900000 0.798144 1.145528 4.83e-10 1.07e-11 - 4.000000 0.820474 1.114988 4.63e-10 9.99e-12 - 4.100000 0.844149 1.087071 4.86e-10 9.55e-12 - 4.200000 0.868832 1.062273 4.87e-10 8.65e-12 - 4.300000 0.894204 1.041074 4.18e-10 8.17e-12 - 4.400000 0.919964 1.023913 7.04e-12 4.12e-12 - 4.500000 0.945834 1.011173 1.24e-09 1.30e-11 - 4.600000 0.971557 1.003150 2.19e-08 6.19e-10 - 4.700000 0.996898 1.000038 1.43e-07 2.28e-09 - 4.800000 1.021640 1.001916 1.99e-07 1.27e-09 - 4.900000 1.045589 1.008736 6.84e-10 3.85e-11 - 5.000000 1.068565 1.020331 7.31e-10 3.42e-11 - 5.100000 1.090408 1.036429 7.07e-10 2.95e-11 - 5.200000 1.110972 1.056667 7.11e-10 2.61e-11 - 5.300000 1.130127 1.080617 7.73e-10 2.25e-11 - 5.400000 1.147757 1.107807 7.36e-10 1.98e-11 - 5.500000 1.163759 1.137743 7.37e-10 1.71e-11 - 5.600000 1.178042 1.169929 7.67e-10 1.46e-11 - 5.700000 1.190528 1.203875 8.07e-10 1.21e-11 - 5.800000 1.201149 1.239112 7.52e-10 1.06e-11 - 5.900000 1.209851 1.275195 8.14e-10 8.47e-12 - 6.000000 1.216587 1.311711 7.93e-10 7.30e-12 - 6.100000 1.221325 1.348272 7.60e-10 6.05e-12 - 6.200000 1.224039 1.384525 2.32e-07 1.19e-09 - 6.300000 1.224716 1.420146 1.87e-07 9.24e-10 - 6.400000 1.223353 1.454836 2.45e-07 1.21e-09 - 6.500000 1.219956 1.488328 2.34e-07 1.12e-09 - 6.600000 1.214543 1.520375 2.43e-07 1.12e-09 - 6.700000 1.207142 1.550758 8.17e-10 9.47e-11 - 6.800000 1.197789 1.579276 7.68e-10 8.41e-11 - 6.900000 1.186534 1.605752 8.06e-10 7.42e-11 - 7.000000 1.173436 1.630027 7.70e-10 6.59e-11 + -2.900000 0.717301 1.326933 7.76e-09 4.26e-11 + -2.800000 0.727247 1.290353 1.65e-08 8.18e-11 + -2.700000 0.740246 1.254042 9.89e-10 8.16e-12 + -2.600000 0.756013 1.218400 1.21e-08 5.55e-11 + -2.500000 0.774227 1.183861 4.55e-09 1.75e-11 + -2.400000 0.794546 1.150885 1.12e-08 4.63e-11 + -2.300000 0.816616 1.119953 1.21e-08 4.62e-11 + -2.200000 0.840089 1.091560 2.93e-09 1.05e-12 + -2.100000 0.864625 1.066204 1.94e-09 5.82e-12 + -2.000000 0.889903 1.044367 1.69e-09 7.44e-12 + -1.900000 0.915617 1.026499 6.00e-10 1.37e-11 + -1.800000 0.941488 1.012992 5.51e-10 2.78e-11 + -1.700000 0.967253 1.004159 2.20e-08 1.38e-10 + -1.600000 0.992673 1.000213 1.46e-08 2.30e-10 + -1.500000 1.017530 1.001252 4.06e-07 1.24e-08 + -1.400000 1.041625 1.007249 7.20e-08 5.78e-10 + -1.300000 1.064777 1.018058 1.23e-08 2.54e-10 + -1.200000 1.086821 1.033422 5.24e-11 1.01e-10 + -1.100000 1.107609 1.052992 2.60e-09 1.01e-10 + -1.000000 1.127010 1.076350 2.38e-09 9.05e-11 + -0.900000 1.144904 1.103029 1.63e-09 6.96e-11 + -0.800000 1.161186 1.132539 1.32e-08 1.89e-11 + -0.700000 1.175764 1.164381 1.39e-08 3.98e-11 + -0.600000 1.188557 1.198064 3.04e-08 1.40e-10 + -0.500000 1.199496 1.233116 3.12e-08 1.58e-10 + -0.400000 1.208524 1.269087 4.15e-08 2.20e-10 + -0.300000 1.215594 1.305557 7.02e-09 2.30e-11 + -0.200000 1.220669 1.342137 3.29e-08 1.86e-10 + -0.100000 1.223725 1.378465 5.47e-09 3.55e-12 + 0.000000 1.224745 1.414214 2.27e-08 1.65e-10 + 0.100000 1.223725 1.449080 4.32e-08 1.88e-10 + 0.200000 1.220669 1.482791 1.08e-07 4.97e-10 + 0.300000 1.215594 1.515097 4.28e-08 1.67e-10 + 0.400000 1.208524 1.545774 1.45e-08 2.11e-11 + 0.500000 1.199496 1.574619 8.81e-09 1.03e-11 + 0.600000 1.188557 1.601450 4.60e-08 1.72e-10 + 0.700000 1.175764 1.626105 5.44e-09 3.09e-11 + 0.800000 1.161186 1.648441 1.10e-08 9.68e-12 + 0.900000 1.144904 1.668331 7.27e-09 2.74e-11 + 1.000000 1.127010 1.685666 1.14e-08 1.57e-13 + 1.100000 1.107609 1.700355 1.08e-08 2.42e-12 + 1.200000 1.086821 1.712320 1.19e-08 1.38e-11 + 1.300000 1.064777 1.721499 1.20e-08 1.00e-11 + 1.400000 1.041625 1.727845 9.29e-09 4.86e-12 + 1.500000 1.017531 1.731328 9.57e-09 6.11e-13 + 1.600000 0.992673 1.731928 8.44e-09 3.90e-12 + 1.700000 0.967253 1.729643 9.39e-09 1.01e-11 + 1.800000 0.941488 1.724485 6.49e-09 3.06e-11 + 1.900000 0.915617 1.716479 2.13e-10 2.60e-11 + 2.000000 0.889903 1.705666 2.45e-09 4.30e-11 + 2.100000 0.864625 1.692102 4.20e-10 1.91e-11 + 2.200000 0.840089 1.675857 1.21e-09 2.40e-11 + 2.300000 0.816616 1.657017 3.27e-10 1.01e-11 + 2.400000 0.794546 1.635684 2.95e-10 8.21e-12 + 2.500000 0.774227 1.611978 3.89e-11 8.38e-12 + 2.600000 0.756013 1.586033 3.71e-09 1.31e-11 + 2.700000 0.740246 1.558005 1.96e-09 9.41e-12 + 2.800000 0.727247 1.528067 3.31e-09 1.80e-11 + 2.900000 0.717301 1.496412 7.94e-09 4.39e-11 + 3.000000 0.710636 1.463257 7.48e-09 4.15e-11 + 3.100000 0.707412 1.428839 2.63e-08 1.36e-10 + 3.200000 0.707709 1.393422 3.55e-08 1.77e-10 + 3.300000 0.711520 1.357297 1.32e-08 6.14e-11 + 3.400000 0.718750 1.320780 7.73e-09 3.54e-11 + 3.500000 0.729227 1.284218 2.21e-08 1.04e-10 + 3.600000 0.742712 1.247990 1.99e-08 9.05e-11 + 3.700000 0.758914 1.212503 4.46e-09 1.20e-11 + 3.800000 0.777506 1.178194 1.06e-08 4.06e-11 + 3.900000 0.798144 1.145528 1.05e-08 3.66e-11 + 4.000000 0.820474 1.114988 1.11e-08 3.60e-11 + 4.100000 0.844149 1.087071 1.86e-09 1.30e-11 + 4.200000 0.868832 1.062273 1.67e-09 1.57e-11 + 4.300000 0.894204 1.041074 5.13e-09 5.08e-12 + 4.400000 0.919964 1.023913 1.46e-09 4.02e-11 + 4.500000 0.945834 1.011173 2.20e-09 3.11e-11 + 4.600000 0.971557 1.003150 1.88e-08 5.81e-10 + 4.700000 0.996898 1.000038 1.61e-08 1.00e-10 + 4.800000 1.021639 1.001916 1.76e-06 4.16e-08 + 4.900000 1.045589 1.008736 3.18e-08 3.05e-10 + 5.000000 1.068565 1.020331 1.20e-08 2.48e-10 + 5.100000 1.090408 1.036429 3.09e-09 1.23e-10 + 5.200000 1.110972 1.056667 4.07e-10 8.89e-11 + 5.300000 1.130127 1.080617 1.64e-09 7.00e-11 + 5.400000 1.147757 1.107807 4.57e-09 8.55e-11 + 5.500000 1.163759 1.137743 9.61e-09 4.34e-13 + 5.600000 1.178042 1.169929 6.59e-09 6.71e-11 + 5.700000 1.190528 1.203875 3.54e-08 1.66e-10 + 5.800000 1.201149 1.239112 2.60e-08 1.37e-10 + 5.900000 1.209851 1.275195 7.50e-09 4.71e-11 + 6.000000 1.216588 1.311711 2.38e-08 1.33e-10 + 6.100000 1.221325 1.348272 7.36e-09 1.84e-11 + 6.200000 1.224039 1.384525 1.56e-07 8.08e-10 + 6.300000 1.224716 1.420146 1.21e-07 5.27e-10 + 6.400000 1.223353 1.454836 8.10e-08 3.72e-10 + 6.500000 1.219956 1.488328 1.18e-07 5.42e-10 + 6.600000 1.214544 1.520375 4.93e-08 1.93e-10 + 6.700000 1.207142 1.550758 1.77e-08 3.25e-11 + 6.800000 1.197789 1.579276 2.56e-08 7.39e-11 + 6.900000 1.186534 1.605752 9.58e-09 1.74e-11 + 7.000000 1.173436 1.630027 2.82e-08 7.92e-11 ------------------------------------------------------ Final Solver Statistics: - Internal solver steps = 2271 (attempted = 3401) + Internal solver steps = 1418 (attempted = 2285) Total number of error test failures = 0 - Total RHS evals: Fe = 13787, Fi = 50499 - Total mass matrix setups = 12646 - Total mass matrix solves = 64284 - Total mass times evals = 2271 + Total RHS evals: Fe = 10790, Fi = 40122 + Total mass matrix setups = 10239 + Total mass matrix solves = 50910 + Total mass times evals = 1418 Total number of Jacobian evaluations = 0 Total linear solver setups = 0 - Total number of Nonlinear iterations = 36712 - Total number of Nonlinear convergence failures = 1130 - Errors: u = 7.56688e-08, v = 4.5239e-10, total = 5.35069e-08 + Total number of Nonlinear iterations = 29332 + Total number of Nonlinear convergence failures = 867 + Errors: u = 1.8333e-07, v = 4.34764e-09, total = 1.2967e-07 diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_0_5.out b/examples/arkode/CXX_serial/ark_kpr_Mt_0_5.out index 7f9417757d..35b0606cfa 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_0_5.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_0_5.out @@ -12,117 +12,117 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: t u v uerr verr ------------------------------------------------------ -3.000000 0.710636 1.363407 0.00e+00 0.00e+00 - -2.900000 0.717299 1.326933 2.17e-06 2.61e-08 - -2.800000 0.727242 1.290353 5.02e-06 4.87e-08 - -2.700000 0.740244 1.254041 2.34e-06 1.64e-08 - -2.600000 0.756012 1.218400 1.45e-06 5.75e-08 - -2.500000 0.774224 1.183861 3.66e-06 4.59e-08 - -2.400000 0.794544 1.150885 1.97e-06 5.84e-08 - -2.300000 0.816613 1.119953 3.48e-06 1.01e-07 - -2.200000 0.840087 1.091560 2.43e-06 1.14e-09 - -2.100000 0.864618 1.066204 7.08e-06 2.30e-09 - -2.000000 0.889895 1.044367 7.59e-06 3.97e-08 - -1.900000 0.915607 1.026499 1.06e-05 1.44e-07 - -1.800000 0.941492 1.012991 4.02e-06 4.95e-07 - -1.700000 0.967257 1.004158 4.11e-06 4.82e-07 - -1.600000 0.992683 1.000213 9.89e-06 6.54e-07 - -1.500000 1.017558 1.001251 2.75e-05 1.04e-06 - -1.400000 1.041689 1.007247 6.33e-05 1.54e-06 - -1.300000 1.064815 1.018056 3.81e-05 1.54e-06 - -1.200000 1.086836 1.033420 1.52e-05 1.52e-06 - -1.100000 1.107689 1.052990 8.03e-05 2.09e-06 - -1.000000 1.127096 1.076348 8.61e-05 2.22e-06 - -0.900000 1.144923 1.103027 1.91e-05 1.84e-06 - -0.800000 1.161242 1.132537 5.54e-05 2.09e-06 - -0.700000 1.175875 1.164378 1.11e-04 2.44e-06 - -0.600000 1.188617 1.198062 5.95e-05 2.11e-06 - -0.500000 1.199513 1.233114 1.68e-05 1.88e-06 - -0.400000 1.208606 1.269084 8.23e-05 2.98e-06 - -0.300000 1.215709 1.305554 1.16e-04 3.26e-06 - -0.200000 1.220692 1.342134 2.30e-05 2.71e-06 - -0.100000 1.223796 1.378462 7.12e-05 3.08e-06 - 0.000000 1.224877 1.414210 1.32e-04 3.54e-06 - 0.100000 1.223793 1.449077 6.82e-05 3.15e-06 - 0.200000 1.220698 1.482788 2.92e-05 3.17e-06 - 0.300000 1.215709 1.515093 1.16e-04 4.03e-06 - 0.400000 1.208659 1.545770 1.35e-04 4.24e-06 - 0.500000 1.199523 1.574616 2.67e-05 3.55e-06 - 0.600000 1.188625 1.601447 6.77e-05 3.55e-06 - 0.700000 1.175888 1.626102 1.24e-04 3.24e-06 - 0.800000 1.161245 1.648438 5.90e-05 2.46e-06 - 0.900000 1.144927 1.668329 2.33e-05 1.85e-06 - 1.000000 1.127103 1.685665 9.32e-05 1.66e-06 - 1.100000 1.107692 1.700354 8.25e-05 1.18e-06 - 1.200000 1.086835 1.712319 1.40e-05 5.65e-07 - 1.300000 1.064818 1.721499 4.17e-05 2.90e-07 - 1.400000 1.041691 1.727845 6.55e-05 2.56e-09 - 1.500000 1.017558 1.731328 2.73e-05 4.16e-07 - 1.600000 0.992682 1.731928 8.66e-06 7.34e-07 - 1.700000 0.967276 1.729644 2.38e-05 1.04e-06 - 1.800000 0.941500 1.724486 1.27e-05 1.33e-06 - 1.900000 0.915618 1.716480 6.40e-07 1.48e-06 - 2.000000 0.889865 1.705668 3.74e-05 1.97e-06 - 2.100000 0.864463 1.692105 1.63e-04 2.89e-06 - 2.200000 0.839771 1.675861 3.18e-04 3.84e-06 - 2.300000 0.816292 1.657021 3.24e-04 3.84e-06 - 2.400000 0.794423 1.635687 1.23e-04 2.71e-06 - 2.500000 0.774078 1.611980 1.50e-04 2.70e-06 - 2.600000 0.755825 1.586036 1.88e-04 3.00e-06 - 2.700000 0.740043 1.558009 2.03e-04 3.71e-06 - 2.800000 0.727119 1.528070 1.28e-04 3.62e-06 - 2.900000 0.717266 1.496415 3.55e-05 3.11e-06 - 3.000000 0.710497 1.463260 1.40e-04 3.72e-06 - 3.100000 0.707393 1.428842 1.94e-05 3.00e-06 - 3.200000 0.707605 1.393426 1.04e-04 3.48e-06 - 3.300000 0.711478 1.357300 4.12e-05 3.10e-06 - 3.400000 0.718691 1.320783 5.83e-05 3.23e-06 - 3.500000 0.729151 1.284222 7.60e-05 3.36e-06 - 3.600000 0.742697 1.247993 1.45e-05 2.83e-06 - 3.700000 0.758850 1.212506 6.40e-05 2.82e-06 - 3.800000 0.777488 1.178197 1.79e-05 2.37e-06 - 3.900000 0.798113 1.145530 3.15e-05 2.20e-06 - 4.000000 0.820445 1.114990 2.97e-05 1.96e-06 - 4.100000 0.844142 1.087072 7.54e-06 1.64e-06 - 4.200000 0.868812 1.062275 1.99e-05 1.45e-06 - 4.300000 0.894201 1.041075 2.88e-06 1.19e-06 - 4.400000 0.919960 1.023914 3.54e-06 9.65e-07 - 4.500000 0.945847 1.011173 1.29e-05 6.70e-07 - 4.600000 0.971568 1.003150 1.10e-05 4.18e-07 - 4.700000 0.996908 1.000039 9.91e-06 1.68e-07 - 4.800000 1.021690 1.001916 4.99e-05 3.06e-07 - 4.900000 1.045717 1.008735 1.28e-04 9.66e-07 - 5.000000 1.068798 1.020329 2.33e-04 1.82e-06 - 5.100000 1.090687 1.036427 2.79e-04 2.26e-06 - 5.200000 1.111265 1.056665 2.93e-04 2.47e-06 - 5.300000 1.130409 1.080614 2.82e-04 2.48e-06 - 5.400000 1.148027 1.107804 2.70e-04 2.45e-06 - 5.500000 1.164021 1.137741 2.62e-04 2.42e-06 - 5.600000 1.178250 1.169926 2.08e-04 2.55e-06 - 5.700000 1.190798 1.203872 2.71e-04 2.75e-06 - 5.800000 1.201390 1.239109 2.40e-04 2.93e-06 - 5.900000 1.210030 1.275192 1.79e-04 2.93e-06 - 6.000000 1.216691 1.311708 1.03e-04 2.78e-06 - 6.100000 1.221360 1.348269 3.51e-05 2.63e-06 - 6.200000 1.224072 1.384523 3.32e-05 2.86e-06 - 6.300000 1.224817 1.420142 1.01e-04 3.52e-06 - 6.400000 1.223526 1.454832 1.73e-04 4.16e-06 - 6.500000 1.220166 1.488323 2.09e-04 4.52e-06 - 6.600000 1.214751 1.520371 2.07e-04 4.43e-06 - 6.700000 1.207326 1.550753 1.84e-04 4.55e-06 - 6.800000 1.197850 1.579273 6.10e-05 3.22e-06 - 6.900000 1.186555 1.605750 2.16e-05 2.46e-06 - 7.000000 1.173507 1.630024 7.15e-05 2.08e-06 + -2.900000 0.717299 1.326933 2.10e-06 2.97e-08 + -2.800000 0.727246 1.290353 1.45e-06 3.40e-08 + -2.700000 0.740245 1.254042 9.57e-07 4.41e-08 + -2.600000 0.756012 1.218400 1.22e-06 4.78e-08 + -2.500000 0.774227 1.183861 8.12e-07 5.76e-08 + -2.400000 0.794545 1.150885 9.58e-07 5.69e-08 + -2.300000 0.816616 1.119953 6.53e-07 6.31e-08 + -2.200000 0.840088 1.091560 7.00e-07 5.82e-08 + -2.100000 0.864625 1.066204 5.09e-07 6.06e-08 + -2.000000 0.889900 1.044367 2.74e-06 5.72e-08 + -1.900000 0.915612 1.026499 4.90e-06 8.64e-09 + -1.800000 0.941483 1.012992 4.88e-06 9.51e-09 + -1.700000 0.967252 1.004159 4.56e-07 1.66e-08 + -1.600000 0.992674 1.000213 3.78e-07 1.80e-08 + -1.500000 1.017534 1.001252 3.41e-06 1.36e-10 + -1.400000 1.041636 1.007249 1.02e-05 3.11e-08 + -1.300000 1.064794 1.018058 1.74e-05 8.55e-08 + -1.200000 1.086855 1.033422 3.42e-05 1.62e-07 + -1.100000 1.107635 1.052992 2.57e-05 1.13e-07 + -1.000000 1.127022 1.076350 1.17e-05 3.82e-08 + -0.900000 1.144907 1.103029 3.53e-06 6.18e-09 + -0.800000 1.161202 1.132539 1.61e-05 5.48e-08 + -0.700000 1.175792 1.164381 2.75e-05 1.13e-07 + -0.600000 1.188574 1.198064 1.70e-05 4.79e-08 + -0.500000 1.199500 1.233116 3.26e-06 1.57e-08 + -0.400000 1.208541 1.269087 1.66e-05 1.30e-07 + -0.300000 1.215617 1.305557 2.29e-05 2.46e-07 + -0.200000 1.220679 1.342137 1.01e-05 3.84e-08 + -0.100000 1.223732 1.378465 7.28e-06 1.23e-07 + 0.000000 1.224767 1.414213 2.24e-05 5.92e-07 + 0.100000 1.223738 1.449080 1.36e-05 5.64e-07 + 0.200000 1.220675 1.482790 6.01e-06 7.21e-07 + 0.300000 1.215618 1.515097 2.38e-05 7.14e-07 + 0.400000 1.208537 1.545774 1.27e-05 6.01e-07 + 0.500000 1.199502 1.574619 5.68e-06 5.19e-07 + 0.600000 1.188578 1.601450 2.08e-05 5.67e-07 + 0.700000 1.175776 1.626105 1.21e-05 4.90e-07 + 0.800000 1.161190 1.648440 4.26e-06 4.23e-07 + 0.900000 1.144921 1.668330 1.67e-05 4.78e-07 + 1.000000 1.127020 1.685666 1.01e-05 4.28e-07 + 1.100000 1.107612 1.700355 2.69e-06 3.74e-07 + 1.200000 1.086831 1.712319 1.06e-05 4.21e-07 + 1.300000 1.064783 1.721498 6.36e-06 3.94e-07 + 1.400000 1.041627 1.727845 1.09e-06 3.57e-07 + 1.500000 1.017534 1.731327 2.97e-06 3.83e-07 + 1.600000 0.992674 1.731927 7.68e-07 3.72e-07 + 1.700000 0.967252 1.729643 3.93e-07 3.58e-07 + 1.800000 0.941482 1.724484 5.43e-06 3.53e-07 + 1.900000 0.915611 1.716479 6.11e-06 3.53e-07 + 2.000000 0.889903 1.705666 3.55e-07 5.61e-07 + 2.100000 0.864614 1.692102 1.10e-05 3.18e-07 + 2.200000 0.840064 1.675857 2.53e-05 1.37e-07 + 2.300000 0.816591 1.657017 2.56e-05 1.25e-07 + 2.400000 0.794516 1.635684 3.01e-05 6.15e-08 + 2.500000 0.774209 1.611978 1.80e-05 1.44e-07 + 2.600000 0.756010 1.586033 3.38e-06 2.12e-07 + 2.700000 0.740223 1.558005 2.24e-05 4.78e-08 + 2.800000 0.727243 1.528067 4.02e-06 1.09e-07 + 2.900000 0.717284 1.496412 1.66e-05 4.95e-09 + 3.000000 0.710625 1.463257 1.07e-05 1.90e-08 + 3.100000 0.707408 1.428839 4.00e-06 6.81e-08 + 3.200000 0.707707 1.393422 2.67e-06 9.65e-08 + 3.300000 0.711514 1.357297 5.82e-06 1.03e-07 + 3.400000 0.718740 1.320780 9.40e-06 8.77e-08 + 3.500000 0.729216 1.284218 1.09e-05 6.80e-08 + 3.600000 0.742702 1.247990 9.76e-06 6.26e-08 + 3.700000 0.758907 1.212503 6.75e-06 6.76e-08 + 3.800000 0.777503 1.178194 3.42e-06 7.51e-08 + 3.900000 0.798143 1.145528 1.33e-06 7.70e-08 + 4.000000 0.820473 1.114988 1.24e-06 6.93e-08 + 4.100000 0.844147 1.087071 1.84e-06 5.85e-08 + 4.200000 0.868831 1.062273 1.72e-06 5.20e-08 + 4.300000 0.894203 1.041073 8.22e-07 5.00e-08 + 4.400000 0.919958 1.023913 6.02e-06 8.59e-08 + 4.500000 0.945832 1.011172 2.30e-06 1.74e-07 + 4.600000 0.971559 1.003149 1.24e-06 1.84e-07 + 4.700000 0.996925 1.000038 2.70e-05 2.99e-07 + 4.800000 1.021651 1.001916 1.01e-05 2.00e-07 + 4.900000 1.045596 1.008735 7.01e-06 1.51e-07 + 5.000000 1.068580 1.020331 1.47e-05 2.56e-07 + 5.100000 1.090437 1.036429 2.93e-05 4.17e-07 + 5.200000 1.111002 1.056667 2.97e-05 2.92e-07 + 5.300000 1.130151 1.080616 2.40e-05 3.11e-07 + 5.400000 1.147774 1.107806 1.70e-05 2.37e-07 + 5.500000 1.163762 1.137743 3.25e-06 1.19e-07 + 5.600000 1.178052 1.169929 9.91e-06 1.31e-07 + 5.700000 1.190554 1.203875 2.64e-05 1.95e-07 + 5.800000 1.201170 1.239111 2.11e-05 2.57e-07 + 5.900000 1.209855 1.275195 4.00e-06 1.40e-07 + 6.000000 1.216603 1.311710 1.54e-05 2.59e-07 + 6.100000 1.221350 1.348272 2.49e-05 3.61e-07 + 6.200000 1.224048 1.384525 9.24e-06 1.33e-07 + 6.300000 1.224727 1.420145 1.09e-05 4.75e-07 + 6.400000 1.223386 1.454836 3.35e-05 9.28e-07 + 6.500000 1.219966 1.488327 9.50e-06 5.96e-07 + 6.600000 1.214551 1.520375 7.82e-06 5.77e-07 + 6.700000 1.207165 1.550757 2.28e-05 6.12e-07 + 6.800000 1.197800 1.579276 1.14e-05 5.12e-07 + 6.900000 1.186540 1.605752 6.03e-06 4.51e-07 + 7.000000 1.173455 1.630026 1.98e-05 5.05e-07 ------------------------------------------------------ Final Solver Statistics: - Internal solver steps = 144 (attempted = 146) + Internal solver steps = 153 (attempted = 154) Total number of error test failures = 1 - Total RHS evals: Fe = 1265, Fi = 4680 - Total mass matrix setups = 1121 - Total mass matrix solves = 2428 - Total mass times evals = 3559 - Total number of Jacobian evaluations = 204 - Total linear solver setups = 214 - Total number of Nonlinear iterations = 3415 - Total number of Nonlinear convergence failures = 203 - Errors: u = 0.000119634, v = 2.45689e-06, total = 8.46118e-05 + Total RHS evals: Fe = 1334, Fi = 4801 + Total mass matrix setups = 1180 + Total mass matrix solves = 2566 + Total mass times evals = 3620 + Total number of Jacobian evaluations = 174 + Total linear solver setups = 182 + Total number of Nonlinear iterations = 3467 + Total number of Nonlinear convergence failures = 173 + Errors: u = 1.40896e-05, v = 3.07883e-07, total = 9.96525e-06 diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_1_-3_0_-10_0.out b/examples/arkode/CXX_serial/ark_kpr_Mt_1_-3_0_-10_0.out index 848d98ebc4..41a1941d23 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_1_-3_0_-10_0.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_1_-3_0_-10_0.out @@ -11,13 +11,13 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: Fixed-step runs: ----------------------------------------------------- - h = 5.000e-01, error = 3.856e-04 - h = 2.500e-01, error = 5.666e-05, order = 2.77 - h = 1.250e-01, error = 8.050e-06, order = 2.82 - h = 6.250e-02, error = 1.109e-06, order = 2.86 - h = 3.125e-02, error = 1.482e-07, order = 2.90 - h = 1.562e-02, error = 1.929e-08, order = 2.94 - h = 7.812e-03, error = 2.467e-09, order = 2.97 - h = 3.906e-03, error = 3.124e-10, order = 2.98 + h = 5.000e-01, error = 2.029e-05 + h = 2.500e-01, error = 1.538e-06, order = 3.72 + h = 1.250e-01, error = 1.684e-07, order = 3.19 + h = 6.250e-02, error = 2.306e-08, order = 2.87 + h = 3.125e-02, error = 3.176e-09, order = 2.86 + h = 1.562e-02, error = 4.197e-10, order = 2.92 + h = 7.812e-03, error = 5.433e-11, order = 2.95 + h = 3.906e-03, error = 6.917e-12, order = 2.97 ----------------------------------------------------- - Order: max = 2.98, avg = 2.89, overall = 2.89 [SUCCESS] + Order: max = 3.72, avg = 3.07, overall = 3.01 [SUCCESS] diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_1_-5.out b/examples/arkode/CXX_serial/ark_kpr_Mt_1_-5.out index 5c1b0cbb31..bdc69cf240 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_1_-5.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_1_-5.out @@ -11,13 +11,13 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: Fixed-step runs: ----------------------------------------------------- - h = 5.000e-01, error = 1.725e-05 - h = 2.500e-01, error = 2.900e-06, order = 2.57 - h = 1.250e-01, error = 3.629e-07, order = 3.00 - h = 6.250e-02, error = 2.782e-08, order = 3.71 - h = 3.125e-02, error = 1.209e-09, order = 4.52 - h = 1.562e-02, error = 3.841e-11, order = 4.98 - h = 7.812e-03, error = 5.907e-11, order = -0.62 - h = 3.906e-03, error = 5.812e-10, order = -3.30 + h = 5.000e-01, error = 6.863e-05 + h = 2.500e-01, error = 1.152e-05, order = 2.57 + h = 1.250e-01, error = 1.556e-06, order = 2.89 + h = 6.250e-02, error = 1.414e-07, order = 3.46 + h = 3.125e-02, error = 8.082e-09, order = 4.13 + h = 1.562e-02, error = 3.441e-10, order = 4.55 + h = 7.812e-03, error = 7.851e-11, order = 2.13 + h = 3.906e-03, error = 4.074e-10, order = -2.38 ----------------------------------------------------- - Order: max = 4.98, avg = 2.12, overall = 2.69 [SUCCESS] + Order: max = 4.55, avg = 2.48, overall = 2.95 [SUCCESS] diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_1_4.out b/examples/arkode/CXX_serial/ark_kpr_Mt_1_4.out index c652708cf1..5a052564bc 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_1_4.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_1_4.out @@ -12,117 +12,117 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: t u v uerr verr ------------------------------------------------------ -3.000000 0.710636 1.363407 0.00e+00 0.00e+00 - -2.900000 0.717303 1.326933 1.41e-06 9.00e-08 - -2.800000 0.727250 1.290353 3.05e-06 3.67e-07 - -2.700000 0.740247 1.254042 1.58e-06 3.07e-07 - -2.600000 0.756016 1.218400 3.34e-06 3.18e-07 - -2.500000 0.774229 1.183863 1.87e-06 1.42e-06 - -2.400000 0.794549 1.150887 2.92e-06 1.67e-06 - -2.300000 0.816618 1.119956 2.05e-06 3.01e-06 - -2.200000 0.840090 1.091564 8.04e-07 3.49e-06 - -2.100000 0.864626 1.066208 5.07e-07 4.62e-06 - -2.000000 0.889905 1.044373 2.49e-06 5.91e-06 - -1.900000 0.915619 1.026506 1.67e-06 6.92e-06 - -1.800000 0.941488 1.013000 1.28e-07 8.31e-06 - -1.700000 0.967252 1.004167 7.11e-07 7.62e-06 - -1.600000 0.992671 1.000220 1.97e-06 6.97e-06 - -1.500000 1.017528 1.001258 2.21e-06 6.34e-06 - -1.400000 1.041624 1.007259 1.57e-06 1.01e-05 - -1.300000 1.064775 1.018068 1.63e-06 1.00e-05 - -1.200000 1.086819 1.033433 1.64e-06 1.08e-05 - -1.100000 1.107607 1.053004 1.91e-06 1.16e-05 - -1.000000 1.127008 1.076363 2.23e-06 1.36e-05 - -0.900000 1.144902 1.103043 1.90e-06 1.35e-05 - -0.800000 1.161180 1.132551 6.58e-06 1.21e-05 - -0.700000 1.175761 1.164391 2.88e-06 1.06e-05 - -0.600000 1.188555 1.198075 1.66e-06 1.09e-05 - -0.500000 1.199494 1.233127 2.39e-06 1.14e-05 - -0.400000 1.208523 1.269100 1.54e-06 1.29e-05 - -0.300000 1.215593 1.305570 2.94e-07 1.28e-05 - -0.200000 1.220668 1.342149 8.50e-07 1.20e-05 - -0.100000 1.223723 1.378476 2.01e-06 1.09e-05 - 0.000000 1.224741 1.414224 3.73e-06 1.05e-05 - 0.100000 1.223723 1.449092 1.20e-06 1.21e-05 - 0.200000 1.220668 1.482803 1.21e-06 1.17e-05 - 0.300000 1.215591 1.515108 2.74e-06 1.08e-05 - 0.400000 1.208522 1.545785 1.90e-06 1.03e-05 - 0.500000 1.199492 1.574629 3.97e-06 1.02e-05 - 0.600000 1.188555 1.601458 1.74e-06 8.35e-06 - 0.700000 1.175761 1.626112 2.87e-06 7.30e-06 - 0.800000 1.161184 1.648447 2.00e-06 6.59e-06 - 0.900000 1.144903 1.668335 8.98e-07 4.56e-06 - 1.000000 1.127005 1.685670 5.32e-06 4.04e-06 - 1.100000 1.107608 1.700357 8.68e-07 2.08e-06 - 1.200000 1.086818 1.712321 2.45e-06 1.14e-06 - 1.300000 1.064776 1.721498 4.33e-07 5.31e-07 - 1.400000 1.041624 1.727843 1.76e-06 1.91e-06 - 1.500000 1.017530 1.731324 3.22e-07 3.31e-06 - 1.600000 0.992672 1.731923 7.91e-07 5.08e-06 - 1.700000 0.967252 1.729637 7.00e-07 6.26e-06 - 1.800000 0.941487 1.724472 2.93e-07 1.28e-05 - 1.900000 0.915617 1.716467 4.48e-08 1.16e-05 - 2.000000 0.889904 1.705655 1.90e-06 1.08e-05 - 2.100000 0.864611 1.692092 1.40e-05 9.99e-06 - 2.200000 0.840090 1.675847 1.09e-06 9.68e-06 - 2.300000 0.816618 1.657006 2.22e-06 1.06e-05 - 2.400000 0.794547 1.635674 1.39e-06 1.03e-05 - 2.500000 0.774228 1.611967 3.25e-07 1.09e-05 - 2.600000 0.756014 1.586021 1.04e-06 1.22e-05 - 2.700000 0.740245 1.557992 7.23e-07 1.32e-05 - 2.800000 0.727249 1.528053 1.66e-06 1.38e-05 - 2.900000 0.717302 1.496399 8.11e-07 1.32e-05 - 3.000000 0.710637 1.463243 6.86e-07 1.39e-05 - 3.100000 0.707415 1.428826 2.59e-06 1.25e-05 - 3.200000 0.707710 1.393410 6.94e-07 1.21e-05 - 3.300000 0.711521 1.357285 1.53e-06 1.14e-05 - 3.400000 0.718751 1.320770 1.60e-06 1.01e-05 - 3.500000 0.729226 1.284209 5.55e-07 9.40e-06 - 3.600000 0.742716 1.247982 3.92e-06 8.60e-06 - 3.700000 0.758914 1.212497 4.97e-07 5.99e-06 - 3.800000 0.777505 1.178189 1.74e-06 5.19e-06 - 3.900000 0.798150 1.145523 5.73e-06 4.63e-06 - 4.000000 0.820475 1.114985 1.79e-07 2.61e-06 - 4.100000 0.844150 1.087070 2.82e-07 1.21e-06 - 4.200000 0.868833 1.062273 5.41e-07 1.95e-07 - 4.300000 0.894211 1.041074 7.05e-06 7.71e-07 - 4.400000 0.919971 1.023914 6.81e-06 1.43e-06 - 4.500000 0.945834 1.011175 5.80e-08 2.53e-06 - 4.600000 0.971556 1.003152 1.08e-06 2.89e-06 - 4.700000 0.996895 1.000042 2.64e-06 3.95e-06 - 4.800000 1.021638 1.001920 2.63e-06 4.28e-06 - 4.900000 1.045585 1.008740 3.46e-06 4.07e-06 - 5.000000 1.068562 1.020337 3.07e-06 5.68e-06 - 5.100000 1.090405 1.036435 2.52e-06 6.24e-06 - 5.200000 1.110969 1.056675 2.42e-06 7.46e-06 - 5.300000 1.130132 1.080627 4.44e-06 1.01e-05 - 5.400000 1.147758 1.107819 5.47e-07 1.21e-05 - 5.500000 1.163763 1.137757 3.73e-06 1.39e-05 - 5.600000 1.178041 1.169944 1.24e-06 1.55e-05 - 5.700000 1.190526 1.203890 2.00e-06 1.57e-05 - 5.800000 1.201147 1.239128 1.86e-06 1.64e-05 - 5.900000 1.209851 1.275211 1.54e-07 1.56e-05 - 6.000000 1.216587 1.311725 4.24e-07 1.49e-05 - 6.100000 1.221324 1.348286 9.63e-07 1.37e-05 - 6.200000 1.224037 1.384538 2.29e-06 1.25e-05 - 6.300000 1.224713 1.420159 3.01e-06 1.36e-05 - 6.400000 1.223352 1.454851 1.10e-06 1.45e-05 - 6.500000 1.219953 1.488343 3.87e-06 1.52e-05 - 6.600000 1.214543 1.520390 4.21e-07 1.50e-05 - 6.700000 1.207142 1.550771 1.08e-07 1.28e-05 - 6.800000 1.197791 1.579287 1.50e-06 1.09e-05 - 6.900000 1.186533 1.605761 3.49e-07 9.24e-06 - 7.000000 1.173440 1.630034 3.90e-06 7.57e-06 + -2.900000 0.717301 1.326933 4.83e-07 1.36e-07 + -2.800000 0.727254 1.290353 6.49e-06 3.69e-07 + -2.700000 0.740246 1.254041 1.98e-07 6.56e-08 + -2.600000 0.756018 1.218400 4.68e-06 3.40e-07 + -2.500000 0.774227 1.183862 6.93e-07 5.96e-07 + -2.400000 0.794547 1.150886 9.55e-07 5.31e-07 + -2.300000 0.816618 1.119954 1.43e-06 5.82e-07 + -2.200000 0.840088 1.091561 1.27e-06 8.61e-07 + -2.100000 0.864626 1.066205 3.55e-07 8.43e-07 + -2.000000 0.889904 1.044368 1.15e-06 9.97e-07 + -1.900000 0.915617 1.026500 5.81e-07 1.08e-06 + -1.800000 0.941487 1.012993 5.39e-07 1.37e-06 + -1.700000 0.967254 1.004161 9.88e-07 1.57e-06 + -1.600000 0.992673 1.000214 3.58e-07 1.30e-06 + -1.500000 1.017530 1.001253 1.56e-07 1.60e-06 + -1.400000 1.041626 1.007250 3.52e-07 1.21e-06 + -1.300000 1.064777 1.018059 3.73e-08 1.02e-06 + -1.200000 1.086820 1.033423 5.67e-08 1.15e-06 + -1.100000 1.107609 1.052993 5.44e-08 9.71e-07 + -1.000000 1.127012 1.076352 2.42e-06 1.87e-06 + -0.900000 1.144903 1.103030 6.58e-07 1.27e-06 + -0.800000 1.161188 1.132540 2.25e-06 1.37e-06 + -0.700000 1.175763 1.164381 1.25e-06 1.51e-07 + -0.600000 1.188561 1.198062 3.96e-06 1.69e-06 + -0.500000 1.199501 1.233117 4.30e-06 1.38e-06 + -0.400000 1.208520 1.269086 4.05e-06 1.39e-06 + -0.300000 1.215596 1.305556 2.38e-06 1.28e-06 + -0.200000 1.220669 1.342139 1.37e-07 1.94e-06 + -0.100000 1.223721 1.378464 3.92e-06 1.69e-06 + 0.000000 1.224746 1.414214 7.74e-07 2.82e-07 + 0.100000 1.223723 1.449081 1.72e-06 1.03e-06 + 0.200000 1.220665 1.482790 4.06e-06 1.40e-06 + 0.300000 1.215593 1.515099 1.18e-06 1.37e-06 + 0.400000 1.208522 1.545774 1.96e-06 3.86e-08 + 0.500000 1.199490 1.574618 6.32e-06 9.30e-07 + 0.600000 1.188556 1.601451 1.11e-06 1.29e-06 + 0.700000 1.175760 1.626104 4.35e-06 1.30e-06 + 0.800000 1.161175 1.648439 1.15e-05 1.22e-06 + 0.900000 1.144905 1.668330 1.41e-06 6.05e-07 + 1.000000 1.127011 1.685664 1.12e-06 2.51e-06 + 1.100000 1.107608 1.700353 1.62e-06 2.41e-06 + 1.200000 1.086819 1.712317 1.16e-06 2.32e-06 + 1.300000 1.064778 1.721496 9.42e-07 2.67e-06 + 1.400000 1.041626 1.727842 2.38e-07 3.00e-06 + 1.500000 1.017531 1.731321 1.24e-07 6.13e-06 + 1.600000 0.992669 1.731920 3.85e-06 7.63e-06 + 1.700000 0.967253 1.729636 4.78e-08 7.10e-06 + 1.800000 0.941488 1.724477 1.80e-08 8.11e-06 + 1.900000 0.915616 1.716471 1.81e-06 7.56e-06 + 2.000000 0.889900 1.705659 2.80e-06 7.07e-06 + 2.100000 0.864625 1.692095 2.97e-07 6.59e-06 + 2.200000 0.840087 1.675851 1.49e-06 5.98e-06 + 2.300000 0.816616 1.657009 3.12e-07 8.14e-06 + 2.400000 0.794546 1.635676 2.16e-07 8.20e-06 + 2.500000 0.774224 1.611970 3.63e-06 7.99e-06 + 2.600000 0.756012 1.586026 7.00e-07 7.37e-06 + 2.700000 0.740245 1.557998 6.34e-07 6.82e-06 + 2.800000 0.727247 1.528060 4.00e-07 6.32e-06 + 2.900000 0.717300 1.496406 7.25e-07 5.85e-06 + 3.000000 0.710637 1.463251 6.50e-07 5.72e-06 + 3.100000 0.707411 1.428834 1.90e-06 4.96e-06 + 3.200000 0.707712 1.393417 2.68e-06 5.11e-06 + 3.300000 0.711522 1.357292 2.30e-06 4.77e-06 + 3.400000 0.718772 1.320772 2.28e-05 7.72e-06 + 3.500000 0.729243 1.284214 1.62e-05 4.42e-06 + 3.600000 0.742712 1.247987 3.36e-07 2.74e-06 + 3.700000 0.758914 1.212501 5.26e-07 2.14e-06 + 3.800000 0.777507 1.178192 6.69e-07 1.99e-06 + 3.900000 0.798144 1.145526 3.21e-07 1.68e-06 + 4.000000 0.820475 1.114986 1.03e-06 1.56e-06 + 4.100000 0.844150 1.087069 1.09e-06 1.34e-06 + 4.200000 0.868831 1.062272 1.05e-06 9.65e-07 + 4.300000 0.894204 1.041073 2.44e-07 7.89e-07 + 4.400000 0.919965 1.023913 9.59e-07 5.05e-07 + 4.500000 0.945834 1.011172 4.41e-07 3.59e-07 + 4.600000 0.971557 1.003150 4.47e-07 4.03e-08 + 4.700000 0.996899 1.000039 8.94e-07 3.08e-07 + 4.800000 1.021640 1.001916 3.15e-07 1.57e-07 + 4.900000 1.045589 1.008736 2.11e-07 4.62e-07 + 5.000000 1.068565 1.020331 3.45e-07 2.01e-07 + 5.100000 1.090408 1.036430 2.76e-08 4.24e-07 + 5.200000 1.110972 1.056668 6.31e-07 7.63e-07 + 5.300000 1.130129 1.080617 2.01e-06 7.23e-07 + 5.400000 1.147757 1.107807 2.75e-07 7.31e-07 + 5.500000 1.163759 1.137744 4.59e-07 7.85e-07 + 5.600000 1.178043 1.169928 1.04e-06 9.15e-07 + 5.700000 1.190534 1.203876 6.04e-06 1.04e-06 + 5.800000 1.201146 1.239113 3.04e-06 1.17e-06 + 5.900000 1.209851 1.275194 2.84e-07 1.03e-06 + 6.000000 1.216591 1.311713 3.09e-06 2.43e-06 + 6.100000 1.221321 1.348272 3.72e-06 1.91e-07 + 6.200000 1.224039 1.384525 4.73e-07 7.21e-08 + 6.300000 1.224715 1.420148 7.97e-07 1.98e-06 + 6.400000 1.223350 1.454836 3.35e-06 7.80e-07 + 6.500000 1.219956 1.488329 7.09e-07 1.42e-06 + 6.600000 1.214539 1.520374 4.31e-06 1.87e-06 + 6.700000 1.207124 1.550747 1.81e-05 1.05e-05 + 6.800000 1.197766 1.579268 2.35e-05 8.68e-06 + 6.900000 1.186523 1.605752 1.10e-05 1.71e-07 + 7.000000 1.173436 1.630028 1.77e-07 1.12e-06 ------------------------------------------------------ Final Solver Statistics: - Internal solver steps = 284 (attempted = 287) - Total number of error test failures = 3 - Total RHS evals: Fe = 0, Fi = 5758 - Total mass matrix setups = 1438 - Total mass matrix solves = 1438 - Total mass times evals = 4604 - Total number of Jacobian evaluations = 152 - Total linear solver setups = 166 - Total number of Nonlinear iterations = 4320 - Total number of Nonlinear convergence failures = 151 - Errors: u = 2.75875e-06, v = 9.68052e-06, total = 7.1177e-06 + Internal solver steps = 92 (attempted = 110) + Total number of error test failures = 0 + Total RHS evals: Fe = 0, Fi = 2657 + Total mass matrix setups = 535 + Total mass matrix solves = 517 + Total mass times evals = 2232 + Total number of Jacobian evaluations = 223 + Total linear solver setups = 264 + Total number of Nonlinear iterations = 2140 + Total number of Nonlinear convergence failures = 222 + Errors: u = 4.83796e-06, v = 3.57142e-06, total = 4.25211e-06 diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_2_-5_0_-10.out b/examples/arkode/CXX_serial/ark_kpr_Mt_2_-5_0_-10.out index eaa71c0abd..e47c46b727 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_2_-5_0_-10.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_2_-5_0_-10.out @@ -10,13 +10,13 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: Fixed-step runs: ----------------------------------------------------- - h = 1.000e-01, error = 2.677e-07 - h = 5.000e-02, error = 3.387e-09, order = 6.30 - h = 2.500e-02, error = 4.832e-11, order = 6.13 - h = 1.250e-02, error = 7.523e-13, order = 6.01 - h = 6.250e-03, error = 1.326e-14, order = 5.83 - h = 3.125e-03, error = 6.999e-15, order = 0.92 - h = 1.563e-03, error = 1.539e-14, order = -1.14 - h = 7.813e-04, error = 2.720e-14, order = -0.82 + h = 1.000e-01, error = 3.326e-07 + h = 5.000e-02, error = 5.227e-09, order = 5.99 + h = 2.500e-02, error = 1.028e-10, order = 5.67 + h = 1.250e-02, error = 2.405e-12, order = 5.42 + h = 6.250e-03, error = 6.356e-14, order = 5.24 + h = 3.125e-03, error = 6.933e-15, order = 3.20 + h = 1.563e-03, error = 1.453e-14, order = -1.07 + h = 7.813e-04, error = 2.683e-14, order = -0.88 ----------------------------------------------------- - Order: max = 6.30, avg = 3.32, overall = 3.52 [SUCCESS] + Order: max = 5.99, avg = 3.37, overall = 3.62 [SUCCESS] diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_2_4_0_-10_0.out b/examples/arkode/CXX_serial/ark_kpr_Mt_2_4_0_-10_0.out index 54a56620ba..31b001fe70 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_2_4_0_-10_0.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_2_4_0_-10_0.out @@ -11,113 +11,113 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: t u v uerr verr ------------------------------------------------------ -3.000000 0.710636 1.363407 0.00e+00 0.00e+00 - -2.900000 0.717302 1.326933 7.09e-07 3.80e-08 - -2.800000 0.727248 1.290353 8.19e-07 4.40e-08 - -2.700000 0.740247 1.254041 8.79e-07 4.56e-08 - -2.600000 0.756014 1.218400 7.89e-07 4.19e-08 - -2.500000 0.774228 1.183861 7.00e-07 3.54e-08 - -2.400000 0.794546 1.150885 6.04e-07 3.08e-08 - -2.300000 0.816617 1.119953 4.92e-07 2.38e-08 - -2.200000 0.840090 1.091560 1.42e-06 6.87e-08 - -2.100000 0.864627 1.066204 1.20e-06 4.56e-08 - -2.000000 0.889903 1.044367 7.76e-07 2.25e-08 - -1.900000 0.915617 1.026499 4.55e-08 1.78e-07 - -1.800000 0.941485 1.012992 2.28e-06 3.37e-07 - -1.700000 0.967249 1.004159 3.53e-06 3.11e-07 - -1.600000 0.992669 1.000214 4.20e-06 3.33e-07 - -1.500000 1.017526 1.001252 4.27e-06 4.27e-07 - -1.400000 1.041621 1.007249 4.51e-06 3.79e-07 - -1.300000 1.064773 1.018058 4.08e-06 3.79e-07 - -1.200000 1.086816 1.033422 4.62e-06 3.91e-07 - -1.100000 1.107605 1.052993 4.16e-06 3.67e-07 - -1.000000 1.127005 1.076350 4.74e-06 3.85e-07 - -0.900000 1.144900 1.103029 4.41e-06 3.61e-07 - -0.800000 1.161181 1.132539 4.83e-06 3.77e-07 - -0.700000 1.175759 1.164381 4.69e-06 3.53e-07 - -0.600000 1.188552 1.198064 4.70e-06 3.54e-07 - -0.500000 1.199491 1.233116 4.96e-06 3.48e-07 - -0.400000 1.208519 1.269087 4.61e-06 3.28e-07 - -0.300000 1.215589 1.305558 5.17e-06 3.43e-07 - -0.200000 1.220665 1.342137 4.62e-06 3.06e-07 - -0.100000 1.223719 1.378466 5.22e-06 3.32e-07 - 0.000000 1.224740 1.414214 4.66e-06 2.88e-07 - 0.100000 1.223720 1.449081 5.07e-06 3.12e-07 - 0.200000 1.220665 1.482791 4.68e-06 2.74e-07 - 0.300000 1.215589 1.515098 4.69e-06 2.78e-07 - 0.400000 1.208519 1.545775 4.63e-06 2.59e-07 - 0.500000 1.199492 1.574619 4.23e-06 2.39e-07 - 0.600000 1.188553 1.601450 4.45e-06 2.40e-07 - 0.700000 1.175760 1.626105 3.86e-06 2.06e-07 - 0.800000 1.161182 1.648441 4.12e-06 2.16e-07 - 0.900000 1.144900 1.668331 3.49e-06 1.76e-07 - 1.000000 1.127006 1.685667 3.60e-06 1.83e-07 - 1.100000 1.107606 1.700355 3.06e-06 1.45e-07 - 1.200000 1.086818 1.712320 2.90e-06 1.40e-07 - 1.300000 1.064774 1.721499 2.52e-06 1.10e-07 - 1.400000 1.041623 1.727845 2.09e-06 9.17e-08 - 1.500000 1.017529 1.731328 1.80e-06 6.82e-08 - 1.600000 0.992672 1.731928 1.28e-06 4.21e-08 - 1.700000 0.967252 1.729643 8.76e-07 1.68e-08 - 1.800000 0.941487 1.724485 2.49e-07 2.94e-08 - 1.900000 0.915619 1.716479 1.32e-06 1.26e-07 - 2.000000 0.889906 1.705666 3.18e-06 2.37e-07 - 2.100000 0.864630 1.692102 4.43e-06 3.13e-07 - 2.200000 0.840094 1.675857 4.92e-06 3.24e-07 - 2.300000 0.816621 1.657017 4.45e-06 2.97e-07 - 2.400000 0.794551 1.635684 4.77e-06 3.10e-07 - 2.500000 0.774232 1.611977 4.18e-06 2.76e-07 - 2.600000 0.756017 1.586033 4.01e-06 2.57e-07 - 2.700000 0.740250 1.558005 4.25e-06 2.68e-07 - 2.800000 0.727251 1.528067 4.06e-06 2.57e-07 - 2.900000 0.717305 1.496412 3.81e-06 2.39e-07 - 3.000000 0.710640 1.463256 3.62e-06 2.25e-07 - 3.100000 0.707416 1.428839 3.49e-06 2.14e-07 - 3.200000 0.707713 1.393422 3.41e-06 2.05e-07 - 3.300000 0.711523 1.357296 3.38e-06 2.00e-07 - 3.400000 0.718753 1.320779 3.35e-06 1.95e-07 - 3.500000 0.729230 1.284218 3.28e-06 1.89e-07 - 3.600000 0.742715 1.247990 3.08e-06 1.76e-07 - 3.700000 0.758916 1.212503 2.77e-06 1.59e-07 - 3.800000 0.777509 1.178194 2.40e-06 1.38e-07 - 3.900000 0.798146 1.145528 2.00e-06 1.15e-07 - 4.000000 0.820476 1.114988 1.58e-06 8.91e-08 - 4.100000 0.844150 1.087071 1.18e-06 6.29e-08 - 4.200000 0.868833 1.062273 8.01e-07 3.72e-08 - 4.300000 0.894204 1.041074 4.96e-07 1.30e-08 - 4.400000 0.919964 1.023913 8.07e-08 1.12e-07 - 4.500000 0.945832 1.011173 1.59e-06 2.22e-07 - 4.600000 0.971554 1.003150 3.36e-06 2.66e-07 - 4.700000 0.996894 1.000039 3.70e-06 3.06e-07 - 4.800000 1.021636 1.001916 4.34e-06 4.07e-07 - 4.900000 1.045585 1.008736 4.41e-06 3.42e-07 - 5.000000 1.068561 1.020332 4.18e-06 3.77e-07 - 5.100000 1.090403 1.036429 4.51e-06 3.59e-07 - 5.200000 1.110967 1.056667 4.32e-06 3.65e-07 - 5.300000 1.130122 1.080617 4.60e-06 3.62e-07 - 5.400000 1.147753 1.107807 4.59e-06 3.59e-07 - 5.500000 1.163754 1.137744 4.55e-06 3.50e-07 - 5.600000 1.178037 1.169929 4.87e-06 3.54e-07 - 5.700000 1.190523 1.203875 4.52e-06 3.32e-07 - 5.800000 1.201144 1.239112 5.11e-06 3.51e-07 - 5.900000 1.209846 1.275196 4.59e-06 3.15e-07 - 6.000000 1.216582 1.311711 5.23e-06 3.44e-07 - 6.100000 1.221320 1.348272 4.71e-06 3.01e-07 - 6.200000 1.224034 1.384526 5.15e-06 3.27e-07 - 6.300000 1.224711 1.420146 4.81e-06 2.90e-07 - 6.400000 1.223348 1.454837 4.82e-06 2.95e-07 - 6.500000 1.219952 1.488328 4.84e-06 2.78e-07 - 6.600000 1.214539 1.520376 4.44e-06 2.59e-07 - 6.700000 1.207137 1.550758 4.74e-06 2.64e-07 - 6.800000 1.197785 1.579276 4.14e-06 2.29e-07 - 6.900000 1.186529 1.605752 4.49e-06 2.43e-07 - 7.000000 1.173432 1.630027 3.87e-06 2.02e-07 + -2.900000 0.717302 1.326933 1.31e-06 7.11e-08 + -2.800000 0.727249 1.290353 1.25e-06 6.56e-08 + -2.700000 0.740247 1.254041 1.17e-06 6.27e-08 + -2.600000 0.756014 1.218400 1.11e-06 5.96e-08 + -2.500000 0.774228 1.183861 9.85e-07 5.04e-08 + -2.400000 0.794547 1.150885 7.87e-07 4.01e-08 + -2.300000 0.816617 1.119953 6.62e-07 3.29e-08 + -2.200000 0.840089 1.091560 5.33e-07 2.49e-08 + -2.100000 0.864626 1.066204 3.70e-07 1.64e-08 + -2.000000 0.889903 1.044367 6.34e-07 1.88e-08 + -1.900000 0.915618 1.026499 2.32e-07 1.02e-07 + -1.800000 0.941487 1.012992 1.04e-06 2.31e-07 + -1.700000 0.967249 1.004159 3.55e-06 4.01e-07 + -1.600000 0.992668 1.000214 5.27e-06 5.57e-07 + -1.500000 1.017525 1.001252 6.02e-06 6.13e-07 + -1.400000 1.041620 1.007249 5.93e-06 5.44e-07 + -1.300000 1.064772 1.018058 4.73e-06 4.32e-07 + -1.200000 1.086816 1.033422 4.65e-06 4.67e-07 + -1.100000 1.107605 1.052993 4.64e-06 4.23e-07 + -1.000000 1.127006 1.076350 4.27e-06 4.07e-07 + -0.900000 1.144899 1.103029 4.68e-06 4.15e-07 + -0.800000 1.161182 1.132539 4.22e-06 3.75e-07 + -0.700000 1.175759 1.164381 4.74e-06 3.97e-07 + -0.600000 1.188553 1.198064 4.25e-06 3.51e-07 + -0.500000 1.199491 1.233116 4.80e-06 3.78e-07 + -0.400000 1.208520 1.269087 4.29e-06 3.31e-07 + -0.300000 1.215589 1.305558 4.85e-06 3.58e-07 + -0.200000 1.220665 1.342137 4.32e-06 3.12e-07 + -0.100000 1.223720 1.378466 4.86e-06 3.38e-07 + 0.000000 1.224741 1.414214 4.30e-06 2.92e-07 + 0.100000 1.223720 1.449081 4.79e-06 3.15e-07 + 0.200000 1.220665 1.482791 4.20e-06 2.70e-07 + 0.300000 1.215589 1.515098 4.63e-06 2.91e-07 + 0.400000 1.208520 1.545775 4.03e-06 2.47e-07 + 0.500000 1.199492 1.574619 4.40e-06 2.65e-07 + 0.600000 1.188553 1.601450 3.79e-06 2.22e-07 + 0.700000 1.175760 1.626105 4.07e-06 2.36e-07 + 0.800000 1.161183 1.648441 3.46e-06 1.94e-07 + 0.900000 1.144900 1.668331 3.66e-06 2.04e-07 + 1.000000 1.127007 1.685666 3.06e-06 1.64e-07 + 1.100000 1.107606 1.700355 3.15e-06 1.68e-07 + 1.200000 1.086818 1.712320 2.57e-06 1.31e-07 + 1.300000 1.064774 1.721499 2.54e-06 1.29e-07 + 1.400000 1.041623 1.727845 1.98e-06 9.34e-08 + 1.500000 1.017529 1.731328 1.80e-06 8.37e-08 + 1.600000 0.992672 1.731928 1.27e-06 5.08e-08 + 1.700000 0.967252 1.729643 9.30e-07 3.21e-08 + 1.800000 0.941487 1.724485 3.94e-07 1.17e-08 + 1.900000 0.915618 1.716479 6.27e-07 7.75e-08 + 2.000000 0.889905 1.705666 2.79e-06 2.04e-07 + 2.100000 0.864630 1.692102 4.65e-06 3.10e-07 + 2.200000 0.840094 1.675857 4.96e-06 3.32e-07 + 2.300000 0.816621 1.657017 4.98e-06 3.17e-07 + 2.400000 0.794550 1.635684 4.19e-06 2.72e-07 + 2.500000 0.774232 1.611977 4.24e-06 2.69e-07 + 2.600000 0.756017 1.586033 3.68e-06 2.38e-07 + 2.700000 0.740249 1.558005 3.29e-06 2.10e-07 + 2.800000 0.727251 1.528067 3.32e-06 2.07e-07 + 2.900000 0.717304 1.496412 3.27e-06 2.03e-07 + 3.000000 0.710639 1.463256 3.11e-06 1.93e-07 + 3.100000 0.707415 1.428839 2.96e-06 1.83e-07 + 3.200000 0.707712 1.393422 2.83e-06 1.74e-07 + 3.300000 0.711522 1.357297 2.72e-06 1.66e-07 + 3.400000 0.718752 1.320779 2.60e-06 1.57e-07 + 3.500000 0.729229 1.284218 2.44e-06 1.46e-07 + 3.600000 0.742714 1.247990 2.24e-06 1.33e-07 + 3.700000 0.758916 1.212503 2.01e-06 1.19e-07 + 3.800000 0.777508 1.178194 1.76e-06 1.03e-07 + 3.900000 0.798146 1.145528 1.50e-06 8.72e-08 + 4.000000 0.820476 1.114988 1.24e-06 7.13e-08 + 4.100000 0.844150 1.087071 9.70e-07 5.57e-08 + 4.200000 0.868833 1.062273 6.99e-07 3.98e-08 + 4.300000 0.894204 1.041073 4.24e-07 2.25e-08 + 4.400000 0.919964 1.023913 3.19e-07 3.19e-08 + 4.500000 0.945833 1.011173 7.39e-07 1.75e-07 + 4.600000 0.971555 1.003150 2.20e-06 2.51e-07 + 4.700000 0.996895 1.000039 3.29e-06 2.47e-07 + 4.800000 1.021637 1.001916 3.79e-06 3.37e-07 + 4.900000 1.045584 1.008736 4.59e-06 4.36e-07 + 5.000000 1.068560 1.020332 4.81e-06 3.83e-07 + 5.100000 1.090403 1.036429 4.24e-06 3.75e-07 + 5.200000 1.110967 1.056667 4.73e-06 3.96e-07 + 5.300000 1.130123 1.080617 4.12e-06 3.49e-07 + 5.400000 1.147752 1.107807 4.65e-06 3.76e-07 + 5.500000 1.163755 1.137744 4.17e-06 3.41e-07 + 5.600000 1.178037 1.169929 4.66e-06 3.57e-07 + 5.700000 1.190524 1.203875 4.24e-06 3.32e-07 + 5.800000 1.201145 1.239112 4.70e-06 3.40e-07 + 5.900000 1.209847 1.275196 4.29e-06 3.19e-07 + 6.000000 1.216583 1.311711 4.74e-06 3.25e-07 + 6.100000 1.221320 1.348272 4.32e-06 3.04e-07 + 6.200000 1.224034 1.384526 4.74e-06 3.08e-07 + 6.300000 1.224712 1.420146 4.30e-06 2.87e-07 + 6.400000 1.223348 1.454837 4.66e-06 2.90e-07 + 6.500000 1.219952 1.488328 4.20e-06 2.67e-07 + 6.600000 1.214539 1.520376 4.50e-06 2.68e-07 + 6.700000 1.207138 1.550758 4.03e-06 2.45e-07 + 6.800000 1.197785 1.579276 4.26e-06 2.44e-07 + 6.900000 1.186530 1.605752 3.78e-06 2.20e-07 + 7.000000 1.173432 1.630027 3.93e-06 2.17e-07 ------------------------------------------------------ Final Solver Statistics: - Internal solver steps = 165 (attempted = 168) - Total number of error test failures = 3 - Total RHS evals: Fe = 840, Fi = 0 - Total mass matrix setups = 672 - Total mass matrix solves = 840 - Total mass times evals = 165 - Errors: u = 3.7533e-06, v = 2.61601e-07, total = 2.66042e-06 + Internal solver steps = 160 (attempted = 161) + Total number of error test failures = 1 + Total RHS evals: Fe = 647, Fi = 0 + Total mass matrix setups = 486 + Total mass matrix solves = 647 + Total mass times evals = 160 + Errors: u = 3.59079e-06, v = 2.72131e-07, total = 2.54635e-06 diff --git a/examples/arkode/CXX_serial/ark_kpr_Mt_2_8_0_-10.out b/examples/arkode/CXX_serial/ark_kpr_Mt_2_8_0_-10.out index 09b1fd9f98..875d56e4ad 100644 --- a/examples/arkode/CXX_serial/ark_kpr_Mt_2_8_0_-10.out +++ b/examples/arkode/CXX_serial/ark_kpr_Mt_2_8_0_-10.out @@ -11,113 +11,113 @@ Nonlinear Kvaerno-Prothero-Robinson test problem with mass matrix: t u v uerr verr ------------------------------------------------------ -3.000000 0.710636 1.363407 0.00e+00 0.00e+00 - -2.900000 0.717301 1.326933 4.07e-08 3.12e-09 - -2.800000 0.727247 1.290353 3.42e-08 2.79e-09 - -2.700000 0.740246 1.254042 2.54e-08 2.29e-09 - -2.600000 0.756013 1.218400 1.63e-08 1.73e-09 - -2.500000 0.774227 1.183861 8.20e-09 1.12e-09 - -2.400000 0.794546 1.150885 1.46e-09 4.54e-10 - -2.300000 0.816616 1.119953 3.85e-09 2.91e-10 - -2.200000 0.840089 1.091560 7.86e-09 1.15e-09 - -2.100000 0.864625 1.066204 1.08e-08 2.15e-09 - -2.000000 0.889903 1.044367 1.29e-08 3.28e-09 - -1.900000 0.915617 1.026499 1.44e-08 4.47e-09 - -1.800000 0.941488 1.012992 1.53e-08 5.61e-09 - -1.700000 0.967253 1.004159 1.58e-08 6.53e-09 - -1.600000 0.992673 1.000213 1.58e-08 7.07e-09 - -1.500000 1.017531 1.001252 1.55e-08 7.11e-09 - -1.400000 1.041625 1.007249 1.48e-08 6.62e-09 - -1.300000 1.064777 1.018058 1.40e-08 5.67e-09 - -1.200000 1.086821 1.033422 1.30e-08 4.42e-09 - -1.100000 1.107609 1.052992 1.21e-08 3.06e-09 - -1.000000 1.127010 1.076350 1.13e-08 1.77e-09 - -0.900000 1.144904 1.103029 1.06e-08 6.58e-10 - -0.800000 1.161186 1.132539 1.00e-08 2.11e-10 - -0.700000 1.175764 1.164381 9.60e-09 8.29e-10 - -0.600000 1.188557 1.198064 9.28e-09 1.22e-09 - -0.500000 1.199496 1.233116 9.06e-09 1.44e-09 - -0.400000 1.208524 1.269087 8.91e-09 1.52e-09 - -0.300000 1.215594 1.305557 8.81e-09 1.51e-09 - -0.200000 1.220669 1.342137 8.75e-09 1.43e-09 - -0.100000 1.223725 1.378465 8.72e-09 1.33e-09 - 0.000000 1.224745 1.414214 8.70e-09 1.21e-09 - 0.100000 1.223725 1.449080 8.70e-09 1.09e-09 - 0.200000 1.220669 1.482791 8.71e-09 9.72e-10 - 0.300000 1.215594 1.515097 8.74e-09 8.62e-10 - 0.400000 1.208524 1.545774 8.78e-09 7.62e-10 - 0.500000 1.199496 1.574619 8.83e-09 6.73e-10 - 0.600000 1.188557 1.601450 8.91e-09 5.94e-10 - 0.700000 1.175764 1.626105 9.01e-09 5.23e-10 - 0.800000 1.161186 1.648441 9.14e-09 4.60e-10 - 0.900000 1.144904 1.668331 9.30e-09 4.04e-10 - 1.000000 1.127010 1.685666 9.50e-09 3.53e-10 - 1.100000 1.107609 1.700355 9.75e-09 3.06e-10 - 1.200000 1.086821 1.712320 1.00e-08 2.63e-10 - 1.300000 1.064777 1.721499 1.04e-08 2.23e-10 - 1.400000 1.041625 1.727845 1.07e-08 1.85e-10 - 1.500000 1.017531 1.731328 1.11e-08 1.52e-10 - 1.600000 0.992673 1.731928 1.14e-08 1.24e-10 - 1.700000 0.967253 1.729643 1.16e-08 1.06e-10 - 1.800000 0.941488 1.724485 1.16e-08 1.01e-10 - 1.900000 0.915617 1.716479 1.13e-08 1.16e-10 - 2.000000 0.889903 1.705666 1.05e-08 1.63e-10 - 2.100000 0.864625 1.692102 8.92e-09 2.52e-10 - 2.200000 0.840089 1.675857 6.33e-09 3.98e-10 - 2.300000 0.816616 1.657017 2.42e-09 6.17e-10 - 2.400000 0.794546 1.635684 3.04e-09 9.19e-10 - 2.500000 0.774227 1.611978 1.02e-08 1.31e-09 - 2.600000 0.756013 1.586033 1.88e-08 1.79e-09 - 2.700000 0.740246 1.558005 2.85e-08 2.31e-09 - 2.800000 0.727247 1.528067 3.83e-08 2.85e-09 - 2.900000 0.717301 1.496412 4.71e-08 3.33e-09 - 3.000000 0.710636 1.463257 5.36e-08 3.70e-09 - 3.100000 0.707413 1.428839 5.66e-08 3.88e-09 - 3.200000 0.707709 1.393422 5.57e-08 3.86e-09 - 3.300000 0.711520 1.357297 5.10e-08 3.64e-09 - 3.400000 0.718750 1.320780 4.34e-08 3.27e-09 - 3.500000 0.729227 1.284218 3.41e-08 2.78e-09 - 3.600000 0.742712 1.247990 2.43e-08 2.23e-09 - 3.700000 0.758914 1.212503 1.50e-08 1.64e-09 - 3.800000 0.777506 1.178194 7.03e-09 1.01e-09 - 3.900000 0.798144 1.145528 4.85e-10 3.38e-10 - 4.000000 0.820474 1.114988 4.60e-09 4.26e-10 - 4.100000 0.844149 1.087071 8.42e-09 1.31e-09 - 4.200000 0.868832 1.062273 1.12e-08 2.33e-09 - 4.300000 0.894204 1.041074 1.32e-08 3.48e-09 - 4.400000 0.919964 1.023913 1.46e-08 4.67e-09 - 4.500000 0.945834 1.011173 1.54e-08 5.78e-09 - 4.600000 0.971557 1.003150 1.58e-08 6.65e-09 - 4.700000 0.996898 1.000038 1.58e-08 7.12e-09 - 4.800000 1.021641 1.001916 1.54e-08 7.06e-09 - 4.900000 1.045589 1.008736 1.47e-08 6.49e-09 - 5.000000 1.068565 1.020331 1.38e-08 5.47e-09 - 5.100000 1.090408 1.036429 1.29e-08 4.19e-09 - 5.200000 1.110972 1.056667 1.20e-08 2.84e-09 - 5.300000 1.130127 1.080617 1.12e-08 1.57e-09 - 5.400000 1.147757 1.107807 1.05e-08 4.94e-10 - 5.500000 1.163759 1.137743 9.95e-09 3.32e-10 - 5.600000 1.178042 1.169929 9.54e-09 9.10e-10 - 5.700000 1.190528 1.203875 9.24e-09 1.27e-09 - 5.800000 1.201149 1.239112 9.03e-09 1.46e-09 - 5.900000 1.209851 1.275195 8.89e-09 1.52e-09 - 6.000000 1.216587 1.311711 8.80e-09 1.50e-09 - 6.100000 1.221325 1.348272 8.75e-09 1.42e-09 - 6.200000 1.224039 1.384525 8.72e-09 1.31e-09 - 6.300000 1.224716 1.420146 8.70e-09 1.19e-09 - 6.400000 1.223353 1.454836 8.70e-09 1.07e-09 - 6.500000 1.219956 1.488328 8.72e-09 9.53e-10 - 6.600000 1.214544 1.520375 8.74e-09 8.44e-10 - 6.700000 1.207142 1.550758 8.78e-09 7.47e-10 - 6.800000 1.197789 1.579276 8.84e-09 6.59e-10 - 6.900000 1.186534 1.605752 8.92e-09 5.81e-10 - 7.000000 1.173436 1.630027 9.03e-09 5.12e-10 + -2.900000 0.717301 1.326933 1.67e-08 1.31e-09 + -2.800000 0.727247 1.290353 1.26e-08 1.09e-09 + -2.700000 0.740246 1.254042 8.34e-09 8.55e-10 + -2.600000 0.756013 1.218400 4.39e-09 6.04e-10 + -2.500000 0.774227 1.183861 1.03e-09 3.43e-10 + -2.400000 0.794546 1.150885 1.62e-09 6.25e-11 + -2.300000 0.816616 1.119953 3.60e-09 2.52e-10 + -2.200000 0.840089 1.091560 4.99e-09 6.17e-10 + -2.100000 0.864625 1.066204 5.91e-09 1.04e-09 + -2.000000 0.889903 1.044367 6.48e-09 1.52e-09 + -1.900000 0.915617 1.026499 6.78e-09 2.02e-09 + -1.800000 0.941488 1.012992 6.87e-09 2.50e-09 + -1.700000 0.967253 1.004159 6.78e-09 2.87e-09 + -1.600000 0.992673 1.000213 6.52e-09 3.07e-09 + -1.500000 1.017531 1.001252 6.13e-09 3.06e-09 + -1.400000 1.041625 1.007249 5.64e-09 2.81e-09 + -1.300000 1.064777 1.018058 5.10e-09 2.37e-09 + -1.200000 1.086821 1.033422 4.54e-09 1.81e-09 + -1.100000 1.107609 1.052992 4.02e-09 1.21e-09 + -1.000000 1.127010 1.076350 3.56e-09 6.48e-10 + -0.900000 1.144904 1.103029 3.17e-09 1.68e-10 + -0.800000 1.161186 1.132539 2.87e-09 2.05e-10 + -0.700000 1.175764 1.164381 2.64e-09 4.68e-10 + -0.600000 1.188557 1.198064 2.47e-09 6.35e-10 + -0.500000 1.199496 1.233116 2.35e-09 7.24e-10 + -0.400000 1.208524 1.269087 2.28e-09 7.55e-10 + -0.300000 1.215594 1.305557 2.24e-09 7.47e-10 + -0.200000 1.220669 1.342137 2.22e-09 7.14e-10 + -0.100000 1.223725 1.378465 2.22e-09 6.67e-10 + 0.000000 1.224745 1.414214 2.23e-09 6.13e-10 + 0.100000 1.223725 1.449080 2.26e-09 5.59e-10 + 0.200000 1.220669 1.482791 2.30e-09 5.05e-10 + 0.300000 1.215594 1.515097 2.35e-09 4.56e-10 + 0.400000 1.208524 1.545774 2.42e-09 4.10e-10 + 0.500000 1.199496 1.574619 2.50e-09 3.68e-10 + 0.600000 1.188557 1.601450 2.60e-09 3.30e-10 + 0.700000 1.175764 1.626105 2.71e-09 2.96e-10 + 0.800000 1.161186 1.648441 2.84e-09 2.64e-10 + 0.900000 1.144904 1.668331 3.00e-09 2.35e-10 + 1.000000 1.127010 1.685666 3.18e-09 2.08e-10 + 1.100000 1.107609 1.700355 3.39e-09 1.82e-10 + 1.200000 1.086821 1.712320 3.62e-09 1.57e-10 + 1.300000 1.064777 1.721499 3.87e-09 1.33e-10 + 1.400000 1.041625 1.727845 4.15e-09 1.10e-10 + 1.500000 1.017531 1.731328 4.43e-09 8.85e-11 + 1.600000 0.992673 1.731928 4.71e-09 6.89e-11 + 1.700000 0.967253 1.729643 4.94e-09 5.29e-11 + 1.800000 0.941488 1.724485 5.09e-09 4.26e-11 + 1.900000 0.915617 1.716479 5.10e-09 4.14e-11 + 2.000000 0.889903 1.705666 4.88e-09 5.37e-11 + 2.100000 0.864625 1.692102 4.33e-09 8.51e-11 + 2.200000 0.840089 1.675857 3.32e-09 1.42e-10 + 2.300000 0.816616 1.657017 1.72e-09 2.31e-10 + 2.400000 0.794546 1.635684 5.61e-10 3.58e-10 + 2.500000 0.774227 1.611978 3.58e-09 5.24e-10 + 2.600000 0.756013 1.586033 7.25e-09 7.26e-10 + 2.700000 0.740246 1.558005 1.14e-08 9.50e-10 + 2.800000 0.727247 1.528067 1.55e-08 1.18e-09 + 2.900000 0.717301 1.496412 1.91e-08 1.37e-09 + 3.000000 0.710636 1.463257 2.16e-08 1.52e-09 + 3.100000 0.707413 1.428839 2.26e-08 1.58e-09 + 3.200000 0.707709 1.393422 2.19e-08 1.56e-09 + 3.300000 0.711520 1.357297 1.95e-08 1.45e-09 + 3.400000 0.718750 1.320780 1.60e-08 1.27e-09 + 3.500000 0.729227 1.284218 1.19e-08 1.05e-09 + 3.600000 0.742712 1.247990 7.64e-09 8.13e-10 + 3.700000 0.758914 1.212503 3.78e-09 5.61e-10 + 3.800000 0.777506 1.178194 5.36e-10 2.97e-10 + 3.900000 0.798144 1.145528 2.00e-09 1.25e-11 + 4.000000 0.820474 1.114988 3.87e-09 3.10e-10 + 4.100000 0.844149 1.087071 5.17e-09 6.84e-10 + 4.200000 0.868832 1.062273 6.02e-09 1.12e-09 + 4.300000 0.894204 1.041074 6.54e-09 1.60e-09 + 4.400000 0.919964 1.023913 6.81e-09 2.10e-09 + 4.500000 0.945834 1.011173 6.87e-09 2.57e-09 + 4.600000 0.971557 1.003150 6.75e-09 2.92e-09 + 4.700000 0.996898 1.000038 6.47e-09 3.09e-09 + 4.800000 1.021641 1.001916 6.06e-09 3.03e-09 + 4.900000 1.045589 1.008736 5.55e-09 2.75e-09 + 5.000000 1.068565 1.020331 5.00e-09 2.28e-09 + 5.100000 1.090408 1.036429 4.45e-09 1.71e-09 + 5.200000 1.110972 1.056667 3.94e-09 1.11e-09 + 5.300000 1.130127 1.080617 3.49e-09 5.60e-10 + 5.400000 1.147757 1.107807 3.12e-09 9.71e-11 + 5.500000 1.163759 1.137743 2.82e-09 2.57e-10 + 5.600000 1.178042 1.169929 2.61e-09 5.03e-10 + 5.700000 1.190528 1.203875 2.45e-09 6.55e-10 + 5.800000 1.201149 1.239112 2.34e-09 7.32e-10 + 5.900000 1.209851 1.275195 2.27e-09 7.56e-10 + 6.000000 1.216587 1.311711 2.23e-09 7.43e-10 + 6.100000 1.221325 1.348272 2.21e-09 7.07e-10 + 6.200000 1.224039 1.384525 2.22e-09 6.58e-10 + 6.300000 1.224716 1.420146 2.24e-09 6.04e-10 + 6.400000 1.223353 1.454836 2.27e-09 5.49e-10 + 6.500000 1.219956 1.488328 2.31e-09 4.97e-10 + 6.600000 1.214544 1.520375 2.36e-09 4.48e-10 + 6.700000 1.207142 1.550758 2.43e-09 4.02e-10 + 6.800000 1.197789 1.579276 2.52e-09 3.61e-10 + 6.900000 1.186534 1.605752 2.61e-09 3.24e-10 + 7.000000 1.173436 1.630027 2.73e-09 2.90e-10 ------------------------------------------------------ Final Solver Statistics: Internal solver steps = 103 (attempted = 103) Total number of error test failures = 0 Total RHS evals: Fe = 1742, Fi = 0 - Total mass matrix setups = 1439 + Total mass matrix setups = 1336 Total mass matrix solves = 1742 Total mass times evals = 103 - Errors: u = 1.83418e-08, v = 2.86413e-09, total = 1.31268e-08 + Errors: u = 7.06475e-09, v = 1.23412e-09, total = 5.07118e-09 diff --git a/examples/arkode/CXX_superludist/ark_brusselator1D_FEM_sludist.out b/examples/arkode/CXX_superludist/ark_brusselator1D_FEM_sludist.out index 61563dca16..c6e6c8ca6a 100644 --- a/examples/arkode/CXX_superludist/ark_brusselator1D_FEM_sludist.out +++ b/examples/arkode/CXX_superludist/ark_brusselator1D_FEM_sludist.out @@ -9,114 +9,114 @@ ---------------------------------------------- 0.100000 0.637854 3.356025 1.999989 0.200000 0.643035 3.345751 1.999989 - 0.300000 0.648532 3.334867 1.999989 - 0.400000 0.654362 3.323350 1.999989 - 0.500000 0.660542 3.311172 1.999988 - 0.600000 0.667093 3.298309 1.999988 - 0.700000 0.674031 3.284739 1.999989 + 0.300000 0.648532 3.334868 1.999989 + 0.400000 0.654362 3.323350 1.999988 + 0.500000 0.660543 3.311172 1.999988 + 0.600000 0.667094 3.298309 1.999988 + 0.700000 0.674031 3.284739 1.999988 0.800000 0.681370 3.270442 1.999988 - 0.900000 0.689121 3.255404 1.999988 - 1.000000 0.697284 3.239620 1.999988 - 1.100000 0.705853 3.223093 1.999987 - 1.200000 0.714805 3.205842 1.999987 - 1.300000 0.724098 3.187903 1.999987 - 1.400000 0.733670 3.169332 1.999987 - 1.500000 0.743428 3.150212 1.999987 - 1.600000 0.753248 3.130655 1.999987 - 1.700000 0.762974 3.110801 1.999986 - 1.800000 0.772411 3.090829 1.999986 - 1.900000 0.781336 3.070946 1.999986 - 2.000000 0.789499 3.051390 1.999986 - 2.100000 0.796638 3.032422 1.999986 - 2.200000 0.802489 3.014319 1.999986 - 2.300000 0.806808 2.997360 1.999986 - 2.400000 0.809386 2.981819 1.999986 - 2.500000 0.810059 2.967951 1.999986 - 2.600000 0.808728 2.955979 1.999986 - 2.700000 0.805361 2.946086 1.999986 - 2.800000 0.799988 2.938411 1.999986 - 2.900000 0.792711 2.933041 1.999986 - 3.000000 0.783681 2.930010 1.999986 - 3.100000 0.773096 2.929307 1.999986 - 3.200000 0.761187 2.930874 1.999986 - 3.300000 0.748207 2.934613 1.999987 + 0.900000 0.689123 3.255402 1.999988 + 1.000000 0.697286 3.239618 1.999988 + 1.100000 0.705855 3.223091 1.999988 + 1.200000 0.714809 3.205838 1.999987 + 1.300000 0.724100 3.187901 1.999987 + 1.400000 0.733673 3.169328 1.999987 + 1.500000 0.743433 3.150206 1.999987 + 1.600000 0.753250 3.130652 1.999987 + 1.700000 0.762975 3.110798 1.999986 + 1.800000 0.772413 3.090825 1.999986 + 1.900000 0.781338 3.070943 1.999986 + 2.000000 0.789502 3.051386 1.999986 + 2.100000 0.796640 3.032419 1.999986 + 2.200000 0.802491 3.014315 1.999986 + 2.300000 0.806810 2.997356 1.999986 + 2.400000 0.809388 2.981816 1.999986 + 2.500000 0.810060 2.967948 1.999986 + 2.600000 0.808729 2.955976 1.999986 + 2.700000 0.805361 2.946083 1.999986 + 2.800000 0.799988 2.938409 1.999986 + 2.900000 0.792711 2.933038 1.999986 + 3.000000 0.783680 2.930008 1.999986 + 3.100000 0.773094 2.929308 1.999986 + 3.200000 0.761186 2.930875 1.999986 + 3.300000 0.748207 2.934611 1.999987 3.400000 0.734416 2.940394 1.999987 - 3.500000 0.720074 2.948062 1.999987 - 3.600000 0.705429 2.957444 1.999987 - 3.700000 0.690715 2.968354 1.999988 - 3.800000 0.676141 2.980600 1.999988 - 3.900000 0.661892 2.993989 1.999988 - 4.000000 0.648123 3.008331 1.999989 - 4.100000 0.634962 3.023445 1.999989 + 3.500000 0.720073 2.948061 1.999987 + 3.600000 0.705429 2.957443 1.999987 + 3.700000 0.690715 2.968353 1.999988 + 3.800000 0.676140 2.980599 1.999988 + 3.900000 0.661892 2.993988 1.999988 + 4.000000 0.648121 3.008331 1.999989 + 4.100000 0.634962 3.023444 1.999989 4.200000 0.622506 3.039157 1.999989 - 4.300000 0.610828 3.055308 1.999989 + 4.300000 0.610827 3.055308 1.999989 4.400000 0.599972 3.071751 1.999989 - 4.500000 0.589962 3.088356 1.999990 - 4.600000 0.580801 3.105007 1.999990 - 4.700000 0.572477 3.121602 1.999990 - 4.800000 0.564964 3.138058 1.999990 - 4.900000 0.558227 3.154303 1.999990 - 5.000000 0.552224 3.170277 1.999990 + 4.500000 0.589960 3.088357 1.999990 + 4.600000 0.580801 3.105006 1.999990 + 4.700000 0.572476 3.121603 1.999990 + 4.800000 0.564963 3.138059 1.999990 + 4.900000 0.558226 3.154303 1.999990 + 5.000000 0.552223 3.170279 1.999990 5.100000 0.546907 3.185935 1.999991 - 5.200000 0.542229 3.201239 1.999991 - 5.300000 0.538138 3.216162 1.999991 - 5.400000 0.534586 3.230682 1.999991 - 5.500000 0.531525 3.244788 1.999991 - 5.600000 0.528910 3.258468 1.999991 - 5.700000 0.526699 3.271719 1.999991 - 5.800000 0.524852 3.284539 1.999991 - 5.900000 0.523334 3.296928 1.999991 - 6.000000 0.522112 3.308889 1.999991 - 6.100000 0.521154 3.320426 1.999991 - 6.200000 0.520436 3.331545 1.999991 - 6.300000 0.519932 3.342250 1.999991 - 6.400000 0.519621 3.352549 1.999991 - 6.500000 0.519484 3.362446 1.999991 - 6.600000 0.519503 3.371949 1.999991 - 6.700000 0.519664 3.381064 1.999991 - 6.800000 0.519953 3.389797 1.999991 - 6.900000 0.520358 3.398153 1.999991 - 7.000000 0.520869 3.406139 1.999991 - 7.100000 0.521477 3.413759 1.999991 - 7.200000 0.522174 3.421020 1.999991 - 7.300000 0.522953 3.427926 1.999991 - 7.400000 0.523807 3.434482 1.999991 - 7.500000 0.524732 3.440692 1.999991 - 7.600000 0.525723 3.446560 1.999991 - 7.700000 0.526775 3.452091 1.999991 - 7.800000 0.527887 3.457288 1.999991 - 7.900000 0.529055 3.462154 1.999991 - 8.000000 0.530276 3.466692 1.999991 - 8.100000 0.531549 3.470906 1.999991 - 8.200000 0.532872 3.474798 1.999991 - 8.300000 0.534244 3.478370 1.999991 + 5.200000 0.542228 3.201240 1.999991 + 5.300000 0.538137 3.216163 1.999991 + 5.400000 0.534585 3.230684 1.999991 + 5.500000 0.531524 3.244789 1.999991 + 5.600000 0.528909 3.258469 1.999991 + 5.700000 0.526698 3.271720 1.999991 + 5.800000 0.524852 3.284540 1.999991 + 5.900000 0.523334 3.296929 1.999991 + 6.000000 0.522111 3.308890 1.999991 + 6.100000 0.521152 3.320427 1.999991 + 6.200000 0.520433 3.331546 1.999991 + 6.300000 0.519931 3.342252 1.999991 + 6.400000 0.519621 3.352550 1.999991 + 6.500000 0.519483 3.362448 1.999991 + 6.600000 0.519502 3.371951 1.999991 + 6.700000 0.519663 3.381066 1.999991 + 6.800000 0.519953 3.389798 1.999991 + 6.900000 0.520358 3.398154 1.999991 + 7.000000 0.520869 3.406140 1.999991 + 7.100000 0.521477 3.413761 1.999991 + 7.200000 0.522174 3.421021 1.999991 + 7.300000 0.522953 3.427927 1.999991 + 7.400000 0.523807 3.434483 1.999991 + 7.500000 0.524731 3.440693 1.999991 + 7.600000 0.525722 3.446561 1.999991 + 7.700000 0.526776 3.452092 1.999991 + 7.800000 0.527887 3.457289 1.999991 + 7.900000 0.529055 3.462155 1.999991 + 8.000000 0.530276 3.466693 1.999991 + 8.100000 0.531549 3.470907 1.999991 + 8.200000 0.532872 3.474799 1.999991 + 8.300000 0.534244 3.478371 1.999991 8.400000 0.535665 3.481625 1.999991 8.500000 0.537133 3.484564 1.999991 - 8.600000 0.538649 3.487188 1.999991 + 8.600000 0.538649 3.487189 1.999991 8.700000 0.540213 3.489499 1.999991 8.800000 0.541825 3.491498 1.999991 8.900000 0.543486 3.493185 1.999991 9.000000 0.545196 3.494560 1.999991 - 9.100000 0.546957 3.495624 1.999991 - 9.200000 0.548771 3.496375 1.999991 - 9.300000 0.550638 3.496814 1.999990 - 9.400000 0.552561 3.496938 1.999990 - 9.500000 0.554543 3.496746 1.999990 + 9.100000 0.546958 3.495624 1.999991 + 9.200000 0.548771 3.496376 1.999991 + 9.300000 0.550639 3.496814 1.999990 + 9.400000 0.552562 3.496938 1.999990 + 9.500000 0.554543 3.496747 1.999990 9.600000 0.556585 3.496236 1.999990 - 9.700000 0.558691 3.495404 1.999990 - 9.800000 0.560864 3.494248 1.999990 + 9.700000 0.558692 3.495404 1.999990 + 9.800000 0.560865 3.494247 1.999990 9.900000 0.563108 3.492763 1.999990 10.000000 0.565426 3.490945 1.999990 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 95 (attempted = 95) - Total RHS evals: Fe = 0, Fi = 1596 + Internal solver steps = 57 (attempted = 59) + Total RHS evals: Fe = 0, Fi = 1079 Total mass matrix setups = 1 - Total mass matrix solves = 193 - Total mass times evals = 1688 - Total linear solver setups = 31 - Total number of Jacobian evaluations = 11 - Total number of Newton iterations = 1118 - Total number of nonlinear solver convergence failures = 10 + Total mass matrix solves = 117 + Total mass times evals = 1135 + Total linear solver setups = 39 + Total number of Jacobian evaluations = 20 + Total number of Newton iterations = 785 + Total number of nonlinear solver convergence failures = 19 Total number of error test failures = 0 diff --git a/examples/arkode/CXX_xbraid/ark_heat2D_hypre_pfmg_xbraid_--np_2_1_2_--x_print_level_0.out b/examples/arkode/CXX_xbraid/ark_heat2D_hypre_pfmg_xbraid_--np_2_1_2_--x_print_level_0.out index e8bf3bb4cf..a5f5b76dd5 100644 --- a/examples/arkode/CXX_xbraid/ark_heat2D_hypre_pfmg_xbraid_--np_2_1_2_--x_print_level_0.out +++ b/examples/arkode/CXX_xbraid/ark_heat2D_hypre_pfmg_xbraid_--np_2_1_2_--x_print_level_0.out @@ -45,25 +45,25 @@ output = 1 --------------------------------- - Max error = 3.297223495728918e-03 + Max error = 3.297249636368682e-03 Final max integrator statistics: Steps = 1780 Step attempts = 1780 - Error test fails = 450 - RHS evals = 12460 - NLS iters = 5340 + Error test fails = 285 + RHS evals = 16020 + NLS iters = 7120 NLS fails = 0 - LS iters = 30510 + LS iters = 38065 LS fails = 0 LS setups = 1780 - LS RHS evals = 30510 - Jv products = 30510 + LS RHS evals = 38065 + Jv products = 38065 - Avg NLS iters per step attempt = 3.000000 - Avg LS iters per NLS iter = 5.713483 + Avg NLS iters per step attempt = 4.000000 + Avg LS iters per NLS iter = 5.346208 Preconditioner setups = 1780 - Preconditioner solves = 30510 - PFMG iters = 30510 + Preconditioner solves = 38065 + PFMG iters = 38065 diff --git a/examples/arkode/CXX_xbraid/ark_heat2D_p_xbraid_--np_2_1_2_--x_print_level_0.out b/examples/arkode/CXX_xbraid/ark_heat2D_p_xbraid_--np_2_1_2_--x_print_level_0.out index b9a01b542f..90e7deb864 100644 --- a/examples/arkode/CXX_xbraid/ark_heat2D_p_xbraid_--np_2_1_2_--x_print_level_0.out +++ b/examples/arkode/CXX_xbraid/ark_heat2D_p_xbraid_--np_2_1_2_--x_print_level_0.out @@ -42,24 +42,24 @@ output = 1 --------------------------------- - Max error = 3.297223209148270e-03 + Max error = 3.297249605082264e-03 Final max integrator statistics: Steps = 1780 Step attempts = 1780 - Error test fails = 450 - RHS evals = 12460 - NLS iters = 5340 + Error test fails = 285 + RHS evals = 16020 + NLS iters = 7120 NLS fails = 0 - LS iters = 188490 + LS iters = 200710 LS fails = 0 LS setups = 1780 - LS RHS evals = 188490 - Jv products = 188490 + LS RHS evals = 200710 + Jv products = 200710 - Avg NLS iters per step attempt = 3.000000 - Avg LS iters per NLS iter = 35.297753 + Avg NLS iters per step attempt = 4.000000 + Avg LS iters per NLS iter = 28.189607 Preconditioner setups = 1780 - Preconditioner solves = 188490 + Preconditioner solves = 200710 diff --git a/examples/arkode/CXX_xbraid/ark_heat2D_xbraid_--x_print_level_0.out b/examples/arkode/CXX_xbraid/ark_heat2D_xbraid_--x_print_level_0.out index 2f66e11ae8..7bdd970ee7 100644 --- a/examples/arkode/CXX_xbraid/ark_heat2D_xbraid_--x_print_level_0.out +++ b/examples/arkode/CXX_xbraid/ark_heat2D_xbraid_--x_print_level_0.out @@ -37,24 +37,24 @@ output = 1 --------------------------------- - Max error = 3.297223554637685e-03 + Max error = 3.297249506762578e-03 Final max integrator statistics: Steps = 895 Step attempts = 895 - Error test fails = 324 - RHS evals = 6265 - NLS iters = 2685 + Error test fails = 190 + RHS evals = 8055 + NLS iters = 3580 NLS fails = 0 - LS iters = 97791 + LS iters = 105193 LS fails = 0 LS setups = 895 - LS RHS evals = 97791 - Jv products = 97791 + LS RHS evals = 105193 + Jv products = 105193 - Avg NLS iters per step attempt = 3.000000 - Avg LS iters per NLS iter = 36.421229 + Avg NLS iters per step attempt = 4.000000 + Avg LS iters per NLS iter = 29.383520 Preconditioner setups = 895 - Preconditioner solves = 97791 + Preconditioner solves = 105193 diff --git a/examples/arkode/C_manyvector/ark_brusselator1D_manyvec.out b/examples/arkode/C_manyvector/ark_brusselator1D_manyvec.out index 6366fd534c..5fb630c7a8 100644 --- a/examples/arkode/C_manyvector/ark_brusselator1D_manyvec.out +++ b/examples/arkode/C_manyvector/ark_brusselator1D_manyvec.out @@ -7,7 +7,7 @@ t ||u||_rms ||v||_rms ||w||_rms ---------------------------------------------- - 0.100000 0.675721 3.378375 1.999987 + 0.100000 0.675720 3.378375 1.999987 0.200000 0.688547 3.357685 1.999986 0.300000 0.702697 3.334521 1.999986 0.400000 0.718341 3.308630 1.999986 @@ -17,22 +17,22 @@ 0.800000 0.800119 3.171899 1.999984 0.900000 0.826591 3.127813 1.999984 1.000000 0.855960 3.079155 1.999983 - 1.100000 0.888376 3.025731 1.999983 + 1.100000 0.888377 3.025731 1.999983 1.200000 0.923836 2.967503 1.999982 1.300000 0.962071 2.904676 1.999981 1.400000 1.002422 2.837798 1.999981 1.500000 1.043712 2.767829 1.999980 1.600000 1.084197 2.696154 1.999979 - 1.700000 1.121655 2.624496 1.999978 + 1.700000 1.121655 2.624496 1.999979 1.800000 1.153660 2.554719 1.999978 1.900000 1.177994 2.488583 1.999977 2.000000 1.193046 2.427526 1.999977 2.100000 1.198054 2.372559 1.999977 - 2.200000 1.193110 2.324271 1.999977 + 2.200000 1.193110 2.324272 1.999977 2.300000 1.178983 2.282911 1.999977 2.400000 1.156873 2.248486 1.999978 2.500000 1.128176 2.220852 1.999978 - 2.600000 1.094311 2.199774 1.999978 + 2.600000 1.094311 2.199774 1.999979 2.700000 1.056614 2.184957 1.999979 2.800000 1.016284 2.176069 1.999980 2.900000 0.974366 2.172745 1.999981 @@ -53,10 +53,10 @@ 4.400000 0.480453 2.510036 1.999991 4.500000 0.462246 2.542923 1.999991 4.600000 0.445653 2.575948 1.999992 - 4.700000 0.430589 2.609023 1.999992 + 4.700000 0.430589 2.609024 1.999992 4.800000 0.416966 2.642078 1.999992 4.900000 0.404698 2.675052 1.999992 - 5.000000 0.393698 2.707899 1.999993 + 5.000000 0.393698 2.707899 1.999992 5.100000 0.383879 2.740577 1.999993 5.200000 0.375159 2.773058 1.999993 5.300000 0.367454 2.805314 1.999993 @@ -82,10 +82,10 @@ 7.300000 0.331130 3.392178 1.999994 7.400000 0.332202 3.418486 1.999994 7.500000 0.333401 3.444494 1.999994 - 7.600000 0.334721 3.470197 1.999993 - 7.700000 0.336154 3.495592 1.999993 - 7.800000 0.337695 3.520673 1.999993 - 7.900000 0.339341 3.545436 1.999993 + 7.600000 0.334721 3.470197 1.999994 + 7.700000 0.336154 3.495592 1.999994 + 7.800000 0.337695 3.520673 1.999994 + 7.900000 0.339341 3.545436 1.999994 8.000000 0.341088 3.569873 1.999993 8.100000 0.342934 3.593980 1.999993 8.200000 0.344876 3.617748 1.999993 @@ -101,23 +101,23 @@ 9.200000 0.369812 3.834729 1.999993 9.300000 0.372919 3.854085 1.999993 9.400000 0.376159 3.872952 1.999992 - 9.500000 0.379540 3.891308 1.999992 + 9.500000 0.379540 3.891308 1.999993 9.600000 0.383069 3.909132 1.999992 - 9.700000 0.386758 3.926398 1.999992 - 9.800000 0.390617 3.943079 1.999993 - 9.900000 0.394659 3.959146 1.999993 - 10.000000 0.398900 3.974566 1.999993 + 9.700000 0.386758 3.926398 1.999993 + 9.800000 0.390617 3.943079 1.999992 + 9.900000 0.394659 3.959146 1.999992 + 10.000000 0.398900 3.974566 1.999992 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 395 (attempted = 422) - Total RHS evals: Fe = 2508, Fi = 7138 + Internal solver steps = 306 (attempted = 318) + Total RHS evals: Fe = 2216, Fi = 6255 Total linear solver setups = 0 - Total linear iterations = 15143 + Total linear iterations = 12165 Total linear convergence failures = 0 - Total J*v evaluations = 15143 + Total J*v evaluations = 12165 Total RHS evals in linear solver = 0 - Total number of Newton iterations = 4630 - Total number of nonlinear solver convergence failures = 0 - Total number of error test failures = 27 + Total number of Newton iterations = 4039 + Total number of nonlinear solver convergence failures = 1 + Total number of error test failures = 11 diff --git a/examples/arkode/C_openmp/ark_brusselator1D_omp.out b/examples/arkode/C_openmp/ark_brusselator1D_omp.out index 81af310e01..f6f0c13d1a 100644 --- a/examples/arkode/C_openmp/ark_brusselator1D_omp.out +++ b/examples/arkode/C_openmp/ark_brusselator1D_omp.out @@ -13,110 +13,110 @@ 0.300000 0.695306 3.334633 1.999986 0.400000 0.706918 3.311313 1.999986 0.500000 0.719185 3.286601 1.999986 - 0.600000 0.732137 3.260442 1.999986 - 0.700000 0.745798 3.232787 1.999985 - 0.800000 0.760185 3.203596 1.999985 - 0.900000 0.775302 3.172839 1.999985 + 0.600000 0.732138 3.260442 1.999986 + 0.700000 0.745798 3.232788 1.999985 + 0.800000 0.760187 3.203594 1.999985 + 0.900000 0.775303 3.172838 1.999985 1.000000 0.791135 3.140510 1.999984 - 1.100000 0.807648 3.106624 1.999984 - 1.200000 0.824771 3.071233 1.999984 - 1.300000 0.842402 3.034426 1.999983 - 1.400000 0.860384 2.996350 1.999983 - 1.500000 0.878514 2.957207 1.999983 - 1.600000 0.896525 2.917266 1.999982 - 1.700000 0.914089 2.876873 1.999982 - 1.800000 0.930823 2.836438 1.999982 - 1.900000 0.946292 2.796446 1.999982 - 2.000000 0.960034 2.757430 1.999981 - 2.100000 0.971577 2.719961 1.999981 - 2.200000 0.980476 2.684622 1.999981 - 2.300000 0.986338 2.651980 1.999981 - 2.400000 0.988853 2.622559 1.999981 - 2.500000 0.987816 2.596818 1.999981 - 2.600000 0.983141 2.575127 1.999981 - 2.700000 0.974859 2.557765 1.999981 - 2.800000 0.963115 2.544902 1.999981 - 2.900000 0.948155 2.536610 1.999981 - 3.000000 0.930300 2.532867 1.999982 - 3.100000 0.909931 2.533566 1.999982 - 3.200000 0.887464 2.538528 1.999983 - 3.300000 0.863335 2.547514 1.999983 - 3.400000 0.837978 2.560240 1.999983 - 3.500000 0.811818 2.576391 1.999984 - 3.600000 0.785255 2.595624 1.999984 - 3.700000 0.758658 2.617586 1.999985 - 3.800000 0.732363 2.641921 1.999986 - 3.900000 0.706662 2.668274 1.999986 - 4.000000 0.681809 2.696300 1.999986 - 4.100000 0.658011 2.725670 1.999987 - 4.200000 0.635435 2.756075 1.999987 - 4.300000 0.614204 2.787228 1.999988 + 1.100000 0.807651 3.106620 1.999984 + 1.200000 0.824772 3.071232 1.999984 + 1.300000 0.842404 3.034423 1.999983 + 1.400000 0.860386 2.996347 1.999983 + 1.500000 0.878514 2.957205 1.999983 + 1.600000 0.896528 2.917260 1.999982 + 1.700000 0.914089 2.876871 1.999982 + 1.800000 0.930823 2.836437 1.999982 + 1.900000 0.946293 2.796444 1.999982 + 2.000000 0.960034 2.757429 1.999981 + 2.100000 0.971577 2.719960 1.999981 + 2.200000 0.980475 2.684622 1.999981 + 2.300000 0.986336 2.651980 1.999981 + 2.400000 0.988853 2.622558 1.999981 + 2.500000 0.987814 2.596819 1.999981 + 2.600000 0.983140 2.575127 1.999981 + 2.700000 0.974856 2.557766 1.999981 + 2.800000 0.963114 2.544903 1.999981 + 2.900000 0.948154 2.536611 1.999981 + 3.000000 0.930298 2.532870 1.999982 + 3.100000 0.909929 2.533567 1.999982 + 3.200000 0.887463 2.538530 1.999983 + 3.300000 0.863334 2.547515 1.999983 + 3.400000 0.837978 2.560242 1.999983 + 3.500000 0.811818 2.576392 1.999984 + 3.600000 0.785254 2.595625 1.999984 + 3.700000 0.758658 2.617588 1.999985 + 3.800000 0.732362 2.641923 1.999986 + 3.900000 0.706662 2.668275 1.999986 + 4.000000 0.681808 2.696301 1.999986 + 4.100000 0.658011 2.725672 1.999987 + 4.200000 0.635435 2.756076 1.999987 + 4.300000 0.614204 2.787229 1.999988 4.400000 0.594404 2.818869 1.999988 - 4.500000 0.576082 2.850764 1.999989 - 4.600000 0.559254 2.882710 1.999989 - 4.700000 0.543909 2.914529 1.999989 - 4.800000 0.530011 2.946071 1.999990 + 4.500000 0.576082 2.850766 1.999989 + 4.600000 0.559254 2.882711 1.999989 + 4.700000 0.543909 2.914530 1.999989 + 4.800000 0.530011 2.946072 1.999990 4.900000 0.517506 2.977210 1.999990 - 5.000000 0.506326 3.007843 1.999990 - 5.100000 0.496393 3.037889 1.999990 - 5.200000 0.487625 3.067283 1.999990 - 5.300000 0.479935 3.095976 1.999991 - 5.400000 0.473237 3.123932 1.999991 - 5.500000 0.467445 3.151126 1.999991 - 5.600000 0.462480 3.177540 1.999991 - 5.700000 0.458264 3.203165 1.999991 - 5.800000 0.454726 3.227997 1.999991 - 5.900000 0.451799 3.252035 1.999991 - 6.000000 0.449425 3.275283 1.999991 + 5.000000 0.506325 3.007844 1.999990 + 5.100000 0.496393 3.037890 1.999990 + 5.200000 0.487625 3.067284 1.999990 + 5.300000 0.479935 3.095977 1.999991 + 5.400000 0.473237 3.123933 1.999991 + 5.500000 0.467445 3.151127 1.999991 + 5.600000 0.462480 3.177541 1.999991 + 5.700000 0.458264 3.203166 1.999991 + 5.800000 0.454725 3.227998 1.999991 + 5.900000 0.451799 3.252036 1.999991 + 6.000000 0.449425 3.275284 1.999991 6.100000 0.447546 3.297745 1.999991 - 6.200000 0.446115 3.319428 1.999991 + 6.200000 0.446115 3.319429 1.999991 6.300000 0.445085 3.340341 1.999991 - 6.400000 0.444419 3.360492 1.999991 + 6.400000 0.444418 3.360492 1.999991 6.500000 0.444079 3.379891 1.999991 6.600000 0.444034 3.398547 1.999991 - 6.700000 0.444257 3.416470 1.999991 - 6.800000 0.444722 3.433669 1.999991 - 6.900000 0.445409 3.450154 1.999991 + 6.700000 0.444257 3.416471 1.999991 + 6.800000 0.444722 3.433670 1.999991 + 6.900000 0.445408 3.450155 1.999991 7.000000 0.446297 3.465935 1.999991 - 7.100000 0.447370 3.481018 1.999991 + 7.100000 0.447370 3.481019 1.999991 7.200000 0.448614 3.495415 1.999991 - 7.300000 0.450016 3.509131 1.999991 - 7.400000 0.451564 3.522176 1.999991 + 7.300000 0.450016 3.509132 1.999991 + 7.400000 0.451564 3.522177 1.999991 7.500000 0.453249 3.534557 1.999991 - 7.600000 0.455064 3.546280 1.999991 + 7.600000 0.455064 3.546281 1.999991 7.700000 0.457000 3.557353 1.999991 - 7.800000 0.459052 3.567781 1.999991 - 7.900000 0.461215 3.577572 1.999991 + 7.800000 0.459052 3.567782 1.999991 + 7.900000 0.461216 3.577572 1.999991 8.000000 0.463486 3.586729 1.999991 8.100000 0.465860 3.595257 1.999991 8.200000 0.468335 3.603162 1.999991 8.300000 0.470909 3.610447 1.999991 8.400000 0.473582 3.617116 1.999991 - 8.500000 0.476352 3.623172 1.999991 + 8.500000 0.476352 3.623171 1.999991 8.600000 0.479220 3.628616 1.999991 8.700000 0.482186 3.633451 1.999991 - 8.800000 0.485250 3.637679 1.999990 + 8.800000 0.485251 3.637679 1.999990 8.900000 0.488416 3.641299 1.999990 - 9.000000 0.491684 3.644312 1.999990 - 9.100000 0.495058 3.646716 1.999990 - 9.200000 0.498539 3.648510 1.999990 - 9.300000 0.502133 3.649691 1.999990 - 9.400000 0.505843 3.650257 1.999990 - 9.500000 0.509674 3.650202 1.999990 - 9.600000 0.513632 3.649522 1.999990 - 9.700000 0.517722 3.648210 1.999990 + 9.000000 0.491684 3.644311 1.999990 + 9.100000 0.495058 3.646715 1.999990 + 9.200000 0.498540 3.648509 1.999990 + 9.300000 0.502134 3.649691 1.999990 + 9.400000 0.505844 3.650256 1.999990 + 9.500000 0.509675 3.650202 1.999990 + 9.600000 0.513632 3.649521 1.999990 + 9.700000 0.517722 3.648209 1.999990 9.800000 0.521951 3.646257 1.999990 - 9.900000 0.526326 3.643656 1.999990 + 9.900000 0.526327 3.643656 1.999990 10.000000 0.530857 3.640396 1.999990 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 99 (attempted = 99) - Total RHS evals: Fe = 0, Fi = 1186 - Total linear solver setups = 35 + Internal solver steps = 66 (attempted = 67) + Total RHS evals: Fe = 0, Fi = 887 + Total linear solver setups = 33 Total RHS evals for setting up the linear system = 0 - Total number of Jacobian evaluations = 14 - Total number of Newton iterations = 1196 - Total number of nonlinear solver convergence failures = 13 + Total number of Jacobian evaluations = 16 + Total number of Newton iterations = 899 + Total number of nonlinear solver convergence failures = 15 Total number of error test failures = 0 diff --git a/examples/arkode/C_openmp/ark_heat1D_omp.out b/examples/arkode/C_openmp/ark_heat1D_omp.out index 89e65575dd..0a45883971 100644 --- a/examples/arkode/C_openmp/ark_heat1D_omp.out +++ b/examples/arkode/C_openmp/ark_heat1D_omp.out @@ -18,12 +18,12 @@ ------------------------- Final Solver Statistics: - Internal solver steps = 191 (attempted = 191) - Total RHS evals: Fe = 0, Fi = 1913 + Internal solver steps = 81 (attempted = 81) + Total RHS evals: Fe = 0, Fi = 813 Total linear solver setups = 0 - Total linear iterations = 18388 - Total number of Jacobian-vector products = 18388 + Total linear iterations = 11184 + Total number of Jacobian-vector products = 11184 Total number of linear solver convergence failures = 0 - Total number of Newton iterations = 955 + Total number of Newton iterations = 405 Total number of nonlinear solver convergence failures = 0 Total number of error test failures = 0 diff --git a/examples/arkode/C_parallel/ark_diurnal_kry_bbd_p.out b/examples/arkode/C_parallel/ark_diurnal_kry_bbd_p.out index 33fd09b78d..3cea4cd575 100644 --- a/examples/arkode/C_parallel/ark_diurnal_kry_bbd_p.out +++ b/examples/arkode/C_parallel/ark_diurnal_kry_bbd_p.out @@ -7,68 +7,68 @@ Preconditioner type is: jpre = SUN_PREC_LEFT -t = 7.20e+03 no. steps = 980 stepsize = 3.07e+00 +t = 7.20e+03 no. steps = 92 stepsize = 6.85e+01 At bottom left: c1, c2 = 1.047e+04 2.527e+11 At top right: c1, c2 = 1.119e+04 2.700e+11 -t = 1.44e+04 no. steps = 2730 stepsize = 6.90e+00 +t = 1.44e+04 no. steps = 143 stepsize = 3.64e+02 At bottom left: c1, c2 = 6.659e+06 2.582e+11 At top right: c1, c2 = 7.301e+06 2.833e+11 -t = 2.16e+04 no. steps = 3533 stepsize = 1.04e+01 +t = 2.16e+04 no. steps = 166 stepsize = 4.85e+02 At bottom left: c1, c2 = 2.665e+07 2.993e+11 At top right: c1, c2 = 2.931e+07 3.313e+11 -t = 2.88e+04 no. steps = 4686 stepsize = 4.31e+00 +t = 2.88e+04 no. steps = 184 stepsize = 1.80e+02 At bottom left: c1, c2 = 8.702e+06 3.380e+11 At top right: c1, c2 = 9.650e+06 3.751e+11 -t = 3.60e+04 no. steps = 5981 stepsize = 2.55e+00 +t = 3.60e+04 no. steps = 227 stepsize = 7.76e+01 At bottom left: c1, c2 = 1.404e+04 3.387e+11 At top right: c1, c2 = 1.561e+04 3.765e+11 -t = 4.32e+04 no. steps = 7170 stepsize = 4.78e+02 -At bottom left: c1, c2 = -3.557e-10 3.382e+11 -At top right: c1, c2 = 1.033e-09 3.804e+11 +t = 4.32e+04 no. steps = 280 stepsize = 1.40e+03 +At bottom left: c1, c2 = -1.934e-07 3.382e+11 +At top right: c1, c2 = -2.013e-06 3.804e+11 -t = 5.04e+04 no. steps = 7187 stepsize = 4.82e+02 -At bottom left: c1, c2 = -4.936e-07 3.358e+11 -At top right: c1, c2 = -1.075e-12 3.864e+11 +t = 5.04e+04 no. steps = 285 stepsize = 1.40e+03 +At bottom left: c1, c2 = 8.880e-07 3.358e+11 +At top right: c1, c2 = -6.820e-07 3.864e+11 -t = 5.76e+04 no. steps = 7202 stepsize = 3.74e+02 -At bottom left: c1, c2 = -9.646e-07 3.320e+11 -At top right: c1, c2 = 1.101e-19 3.909e+11 +t = 5.76e+04 no. steps = 291 stepsize = 9.64e+02 +At bottom left: c1, c2 = 9.158e-07 3.320e+11 +At top right: c1, c2 = -8.659e-07 3.909e+11 -t = 6.48e+04 no. steps = 7216 stepsize = 5.82e+02 -At bottom left: c1, c2 = 1.665e-07 3.313e+11 -At top right: c1, c2 = 3.501e-19 3.963e+11 +t = 6.48e+04 no. steps = 296 stepsize = 1.55e+03 +At bottom left: c1, c2 = 2.544e-09 3.313e+11 +At top right: c1, c2 = 4.196e-07 3.963e+11 -t = 7.20e+04 no. steps = 7228 stepsize = 5.82e+02 -At bottom left: c1, c2 = -1.045e-08 3.330e+11 -At top right: c1, c2 = -6.502e-20 4.039e+11 +t = 7.20e+04 no. steps = 301 stepsize = 1.55e+03 +At bottom left: c1, c2 = 5.589e-08 3.330e+11 +At top right: c1, c2 = 1.820e-06 4.039e+11 -t = 7.92e+04 no. steps = 7241 stepsize = 5.82e+02 -At bottom left: c1, c2 = -1.269e-07 3.334e+11 -At top right: c1, c2 = 4.639e-19 4.120e+11 +t = 7.92e+04 no. steps = 305 stepsize = 1.55e+03 +At bottom left: c1, c2 = 7.317e-08 3.334e+11 +At top right: c1, c2 = -4.823e-07 4.120e+11 -t = 8.64e+04 no. steps = 7253 stepsize = 5.82e+02 -At bottom left: c1, c2 = -3.193e-07 3.352e+11 -At top right: c1, c2 = -7.979e-21 4.163e+11 +t = 8.64e+04 no. steps = 310 stepsize = 1.55e+03 +At bottom left: c1, c2 = 1.318e-06 3.352e+11 +At top right: c1, c2 = -2.642e-06 4.163e+11 Final Statistics: -lenrw = 3902 leniw = 279 +lenrw = 4118 leniw = 290 lenrwls = 2455 leniwls = 126 -nst = 7253 nfe = 0 -nfe = 76956 nfels = 102729 -nni = 40543 nli = 102729 -nsetups = 441 netf = 29 -npe = 122 nps = 140344 -ncfn = 0 ncfl = 0 +nst = 310 nfe = 0 +nfe = 3884 nfels = 7933 +nni = 2276 nli = 7933 +nsetups = 50 netf = 11 +npe = 5 nps = 10111 +ncfn = 0 ncfl = 464 In ARKBBDPRE: real/integer local work space sizes = 1300, 192 - no. flocal evals. = 2684 + no. flocal evals. = 110 ------------------------------------------------------------------- @@ -76,65 +76,65 @@ In ARKBBDPRE: real/integer local work space sizes = 1300, 192 Preconditioner type is: jpre = SUN_PREC_RIGHT -t = 7.20e+03 no. steps = 980 stepsize = 3.07e+00 +t = 7.20e+03 no. steps = 85 stepsize = 6.86e+01 At bottom left: c1, c2 = 1.047e+04 2.527e+11 At top right: c1, c2 = 1.119e+04 2.700e+11 -t = 1.44e+04 no. steps = 2730 stepsize = 6.90e+00 +t = 1.44e+04 no. steps = 136 stepsize = 3.62e+02 At bottom left: c1, c2 = 6.659e+06 2.582e+11 At top right: c1, c2 = 7.301e+06 2.833e+11 -t = 2.16e+04 no. steps = 3533 stepsize = 1.04e+01 +t = 2.16e+04 no. steps = 159 stepsize = 4.98e+02 At bottom left: c1, c2 = 2.665e+07 2.993e+11 At top right: c1, c2 = 2.931e+07 3.313e+11 -t = 2.88e+04 no. steps = 4684 stepsize = 4.55e+00 +t = 2.88e+04 no. steps = 183 stepsize = 1.57e+02 At bottom left: c1, c2 = 8.702e+06 3.380e+11 At top right: c1, c2 = 9.650e+06 3.751e+11 -t = 3.60e+04 no. steps = 5947 stepsize = 2.56e+00 +t = 3.60e+04 no. steps = 224 stepsize = 6.21e+01 At bottom left: c1, c2 = 1.404e+04 3.387e+11 At top right: c1, c2 = 1.561e+04 3.765e+11 -t = 4.32e+04 no. steps = 7133 stepsize = 4.36e+02 -At bottom left: c1, c2 = -1.512e-12 3.382e+11 -At top right: c1, c2 = -1.226e-11 3.804e+11 +t = 4.32e+04 no. steps = 281 stepsize = 1.31e+03 +At bottom left: c1, c2 = -3.798e-11 3.382e+11 +At top right: c1, c2 = -3.133e-11 3.804e+11 -t = 5.04e+04 no. steps = 7150 stepsize = 4.19e+02 -At bottom left: c1, c2 = 8.712e-16 3.358e+11 -At top right: c1, c2 = -1.011e-06 3.864e+11 +t = 5.04e+04 no. steps = 287 stepsize = 6.28e+02 +At bottom left: c1, c2 = 3.574e-09 3.358e+11 +At top right: c1, c2 = -4.513e-09 3.864e+11 -t = 5.76e+04 no. steps = 7168 stepsize = 2.29e+02 -At bottom left: c1, c2 = 8.678e-21 3.320e+11 -At top right: c1, c2 = 9.801e-10 3.909e+11 +t = 5.76e+04 no. steps = 294 stepsize = 9.87e+02 +At bottom left: c1, c2 = -7.829e-08 3.320e+11 +At top right: c1, c2 = 2.022e-08 3.909e+11 -t = 6.48e+04 no. steps = 7181 stepsize = 6.37e+02 -At bottom left: c1, c2 = -1.578e-24 3.313e+11 -At top right: c1, c2 = 1.788e-09 3.963e+11 +t = 6.48e+04 no. steps = 299 stepsize = 1.52e+03 +At bottom left: c1, c2 = 7.425e-08 3.313e+11 +At top right: c1, c2 = -5.031e-07 3.963e+11 -t = 7.20e+04 no. steps = 7193 stepsize = 6.37e+02 -At bottom left: c1, c2 = -1.410e-23 3.330e+11 -At top right: c1, c2 = -9.726e-07 4.039e+11 +t = 7.20e+04 no. steps = 304 stepsize = 1.52e+03 +At bottom left: c1, c2 = -2.810e-07 3.330e+11 +At top right: c1, c2 = -5.000e-07 4.039e+11 -t = 7.92e+04 no. steps = 7204 stepsize = 6.37e+02 -At bottom left: c1, c2 = -1.897e-24 3.334e+11 -At top right: c1, c2 = -1.322e-06 4.120e+11 +t = 7.92e+04 no. steps = 309 stepsize = 1.52e+03 +At bottom left: c1, c2 = -2.307e-08 3.334e+11 +At top right: c1, c2 = 1.855e-07 4.120e+11 -t = 8.64e+04 no. steps = 7215 stepsize = 6.37e+02 -At bottom left: c1, c2 = 3.801e-23 3.352e+11 -At top right: c1, c2 = 3.984e-11 4.163e+11 +t = 8.64e+04 no. steps = 313 stepsize = 1.52e+03 +At bottom left: c1, c2 = 1.326e-07 3.352e+11 +At top right: c1, c2 = -2.151e-07 4.163e+11 Final Statistics: -lenrw = 3902 leniw = 284 +lenrw = 4118 leniw = 296 lenrwls = 2455 leniwls = 126 -nst = 7215 nfe = 0 -nfe = 76537 nfels = 108364 -nni = 40314 nli = 108364 -nsetups = 438 netf = 29 -npe = 122 nps = 145149 -ncfn = 0 ncfl = 43 +nst = 313 nfe = 0 +nfe = 3930 nfels = 8740 +nni = 2287 nli = 8740 +nsetups = 62 netf = 15 +npe = 7 nps = 10922 +ncfn = 2 ncfl = 903 In ARKBBDPRE: real/integer local work space sizes = 1300, 192 - no. flocal evals. = 2684 + no. flocal evals. = 154 diff --git a/examples/arkode/C_parallel/ark_diurnal_kry_p.out b/examples/arkode/C_parallel/ark_diurnal_kry_p.out index 2fc4afceac..eeb5bc8b50 100644 --- a/examples/arkode/C_parallel/ark_diurnal_kry_p.out +++ b/examples/arkode/C_parallel/ark_diurnal_kry_p.out @@ -1,63 +1,63 @@ 2-species diurnal advection-diffusion problem -t = 7.20e+03 no. steps = 980 stepsize = 3.07e+00 +t = 7.20e+03 no. steps = 88 stepsize = 6.86e+01 At bottom left: c1, c2 = 1.047e+04 2.527e+11 At top right: c1, c2 = 1.119e+04 2.700e+11 -t = 1.44e+04 no. steps = 2730 stepsize = 6.90e+00 +t = 1.44e+04 no. steps = 139 stepsize = 3.62e+02 At bottom left: c1, c2 = 6.659e+06 2.582e+11 At top right: c1, c2 = 7.301e+06 2.833e+11 -t = 2.16e+04 no. steps = 3533 stepsize = 1.04e+01 +t = 2.16e+04 no. steps = 162 stepsize = 4.97e+02 At bottom left: c1, c2 = 2.665e+07 2.993e+11 At top right: c1, c2 = 2.931e+07 3.313e+11 -t = 2.88e+04 no. steps = 4707 stepsize = 4.53e+00 +t = 2.88e+04 no. steps = 185 stepsize = 1.52e+02 At bottom left: c1, c2 = 8.702e+06 3.380e+11 At top right: c1, c2 = 9.650e+06 3.751e+11 -t = 3.60e+04 no. steps = 5973 stepsize = 2.55e+00 +t = 3.60e+04 no. steps = 223 stepsize = 7.59e+01 At bottom left: c1, c2 = 1.404e+04 3.387e+11 At top right: c1, c2 = 1.561e+04 3.765e+11 -t = 4.32e+04 no. steps = 7161 stepsize = 4.81e+02 -At bottom left: c1, c2 = -5.680e-13 3.382e+11 -At top right: c1, c2 = 1.958e-12 3.804e+11 +t = 4.32e+04 no. steps = 277 stepsize = 1.38e+03 +At bottom left: c1, c2 = 3.855e-07 3.382e+11 +At top right: c1, c2 = -1.938e-06 3.804e+11 -t = 5.04e+04 no. steps = 7176 stepsize = 4.29e+02 -At bottom left: c1, c2 = -6.614e-11 3.358e+11 -At top right: c1, c2 = 9.416e-11 3.864e+11 +t = 5.04e+04 no. steps = 282 stepsize = 1.38e+03 +At bottom left: c1, c2 = -2.156e-19 3.358e+11 +At top right: c1, c2 = -3.573e-18 3.864e+11 -t = 5.76e+04 no. steps = 7196 stepsize = 2.18e+02 -At bottom left: c1, c2 = 4.884e-13 3.320e+11 -At top right: c1, c2 = 3.038e-13 3.909e+11 +t = 5.76e+04 no. steps = 288 stepsize = 1.04e+03 +At bottom left: c1, c2 = -1.943e-18 3.320e+11 +At top right: c1, c2 = -3.570e-17 3.909e+11 -t = 6.48e+04 no. steps = 7209 stepsize = 6.39e+02 -At bottom left: c1, c2 = 3.911e-12 3.313e+11 -At top right: c1, c2 = -1.118e-11 3.963e+11 +t = 6.48e+04 no. steps = 293 stepsize = 1.62e+03 +At bottom left: c1, c2 = 2.477e-18 3.313e+11 +At top right: c1, c2 = 2.501e-17 3.963e+11 -t = 7.20e+04 no. steps = 7220 stepsize = 6.39e+02 -At bottom left: c1, c2 = -2.160e-12 3.330e+11 -At top right: c1, c2 = -2.041e-11 4.039e+11 +t = 7.20e+04 no. steps = 297 stepsize = 1.62e+03 +At bottom left: c1, c2 = 2.039e-18 3.330e+11 +At top right: c1, c2 = -1.043e-16 4.039e+11 -t = 7.92e+04 no. steps = 7231 stepsize = 6.39e+02 -At bottom left: c1, c2 = -2.099e-26 3.334e+11 -At top right: c1, c2 = -4.407e-25 4.120e+11 +t = 7.92e+04 no. steps = 302 stepsize = 1.62e+03 +At bottom left: c1, c2 = -3.886e-18 3.334e+11 +At top right: c1, c2 = 5.869e-17 4.120e+11 -t = 8.64e+04 no. steps = 7243 stepsize = 6.39e+02 -At bottom left: c1, c2 = -5.876e-25 3.352e+11 -At top right: c1, c2 = -9.344e-24 4.163e+11 +t = 8.64e+04 no. steps = 306 stepsize = 1.62e+03 +At bottom left: c1, c2 = 2.010e-18 3.352e+11 +At top right: c1, c2 = -1.278e-17 4.163e+11 Final Statistics: -lenrw = 3302 leniw = 255 +lenrw = 3518 leniw = 266 lenrwls = 2455 leniwls = 126 -nst = 7243 nfe = 0 -nfi = 76825 nfels = 105271 -nni = 40467 nli = 105271 -nsetups = 439 netf = 28 -npe = 122 nps = 142747 -ncfn = 0 ncfl = 141 +nst = 306 nfe = 0 +nfi = 3871 nfels = 8115 +nni = 2278 nli = 8115 +nsetups = 55 netf = 12 +npe = 6 nps = 10299 +ncfn = 1 ncfl = 555 diff --git a/examples/arkode/C_parhyp/ark_diurnal_kry_ph.out b/examples/arkode/C_parhyp/ark_diurnal_kry_ph.out index 1d0747bbf7..c70bcbfdc2 100644 --- a/examples/arkode/C_parhyp/ark_diurnal_kry_ph.out +++ b/examples/arkode/C_parhyp/ark_diurnal_kry_ph.out @@ -1,63 +1,63 @@ 2-species diurnal advection-diffusion problem -t = 7.20e+03 no. steps = 979 stepsize = 3.07e+00 +t = 7.20e+03 no. steps = 91 stepsize = 6.86e+01 At bottom left: c1, c2 = 1.047e+04 2.527e+11 At top right: c1, c2 = 1.119e+04 2.700e+11 -t = 1.44e+04 no. steps = 2733 stepsize = 6.93e+00 +t = 1.44e+04 no. steps = 142 stepsize = 3.58e+02 At bottom left: c1, c2 = 6.659e+06 2.582e+11 At top right: c1, c2 = 7.301e+06 2.833e+11 -t = 2.16e+04 no. steps = 3532 stepsize = 1.04e+01 +t = 2.16e+04 no. steps = 165 stepsize = 4.84e+02 At bottom left: c1, c2 = 2.665e+07 2.993e+11 At top right: c1, c2 = 2.931e+07 3.313e+11 -t = 2.88e+04 no. steps = 4603 stepsize = 4.79e+00 +t = 2.88e+04 no. steps = 183 stepsize = 2.14e+02 At bottom left: c1, c2 = 8.702e+06 3.380e+11 At top right: c1, c2 = 9.650e+06 3.751e+11 -t = 3.60e+04 no. steps = 5841 stepsize = 2.56e+00 +t = 3.60e+04 no. steps = 221 stepsize = 7.88e+01 At bottom left: c1, c2 = 1.404e+04 3.387e+11 At top right: c1, c2 = 1.561e+04 3.765e+11 -t = 4.32e+04 no. steps = 7028 stepsize = 5.25e+02 -At bottom left: c1, c2 = -1.384e-10 3.382e+11 -At top right: c1, c2 = 4.912e-10 3.804e+11 +t = 4.32e+04 no. steps = 276 stepsize = 1.34e+03 +At bottom left: c1, c2 = -2.713e-07 3.382e+11 +At top right: c1, c2 = 3.593e-06 3.804e+11 -t = 5.04e+04 no. steps = 7045 stepsize = 4.32e+02 -At bottom left: c1, c2 = -1.726e-08 3.358e+11 -At top right: c1, c2 = 3.060e-08 3.864e+11 +t = 5.04e+04 no. steps = 282 stepsize = 7.75e+02 +At bottom left: c1, c2 = 4.554e-06 3.358e+11 +At top right: c1, c2 = 2.104e-05 3.864e+11 -t = 5.76e+04 no. steps = 7060 stepsize = 2.24e+02 -At bottom left: c1, c2 = -2.215e-10 3.320e+11 -At top right: c1, c2 = -3.625e-10 3.909e+11 +t = 5.76e+04 no. steps = 288 stepsize = 1.34e+03 +At bottom left: c1, c2 = 5.075e-07 3.320e+11 +At top right: c1, c2 = 4.743e-06 3.909e+11 -t = 6.48e+04 no. steps = 7074 stepsize = 6.21e+02 -At bottom left: c1, c2 = -1.004e-22 3.313e+11 -At top right: c1, c2 = -3.771e-23 3.963e+11 +t = 6.48e+04 no. steps = 295 stepsize = 1.66e+03 +At bottom left: c1, c2 = 1.140e-08 3.313e+11 +At top right: c1, c2 = -5.890e-08 3.963e+11 -t = 7.20e+04 no. steps = 7085 stepsize = 6.21e+02 -At bottom left: c1, c2 = -2.029e-23 3.330e+11 -At top right: c1, c2 = 2.084e-23 4.039e+11 +t = 7.20e+04 no. steps = 299 stepsize = 1.66e+03 +At bottom left: c1, c2 = 7.622e-18 3.330e+11 +At top right: c1, c2 = -3.353e-16 4.039e+11 -t = 7.92e+04 no. steps = 7097 stepsize = 6.21e+02 -At bottom left: c1, c2 = -5.112e-23 3.334e+11 -At top right: c1, c2 = 1.320e-23 4.120e+11 +t = 7.92e+04 no. steps = 304 stepsize = 1.66e+03 +At bottom left: c1, c2 = -1.062e-17 3.334e+11 +At top right: c1, c2 = 1.340e-16 4.120e+11 -t = 8.64e+04 no. steps = 7109 stepsize = 6.21e+02 -At bottom left: c1, c2 = 1.584e-22 3.352e+11 -At top right: c1, c2 = -2.798e-23 4.163e+11 +t = 8.64e+04 no. steps = 308 stepsize = 1.66e+03 +At bottom left: c1, c2 = -2.989e-18 3.352e+11 +At top right: c1, c2 = 3.890e-17 4.163e+11 Final Statistics: -lenrw = 3302 leniw = 255 +lenrw = 3518 leniw = 266 lenrwls = 2455 leniwls = 126 -nst = 7109 nfe = 0 -nfi = 74641 nfels = 87206 -nni = 38963 nli = 87206 -nsetups = 431 netf = 26 -npe = 119 nps = 123911 -ncfn = 0 ncfl = 0 +nst = 308 nfe = 0 +nfi = 3713 nfels = 7325 +nni = 2110 nli = 7325 +nsetups = 53 netf = 12 +npe = 6 nps = 9355 +ncfn = 0 ncfl = 426 diff --git a/examples/arkode/C_serial/ark_KrylovDemo_prec.out b/examples/arkode/C_serial/ark_KrylovDemo_prec.out index e60c62304f..d7eedfc076 100644 --- a/examples/arkode/C_serial/ark_KrylovDemo_prec.out +++ b/examples/arkode/C_serial/ark_KrylovDemo_prec.out @@ -78,11 +78,11 @@ Species 6 10 11.0066 12.2649 12.2649 11.0066 10 10 10 10 10 10 10 -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 c values at t = 1e-06: @@ -111,34 +111,34 @@ Species 3 9.99991 9.99994 9.99997 9.99997 9.99994 9.99991 Species 4 -13.4984 13.4984 13.4984 13.4984 13.4984 13.4984 -13.4984 14.55 15.8924 15.8924 14.55 13.4984 -13.4984 15.8924 19.0296 19.0296 15.8924 13.4984 -13.4984 15.8924 19.0296 19.0296 15.8924 13.4984 -13.4984 14.55 15.8924 15.8924 14.55 13.4984 -13.4984 13.4984 13.4984 13.4984 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 14.5495 15.8919 15.8919 14.5495 13.4981 +13.4981 15.8919 19.0287 19.0287 15.8919 13.4981 +13.4981 15.8919 19.0287 19.0287 15.8919 13.4981 +13.4981 14.5495 15.8919 15.8919 14.5495 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 Species 5 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 -13.4984 14.7787 16.4136 16.4136 14.7787 13.4984 -13.4985 16.4136 20.236 20.236 16.4136 13.4985 -13.4985 16.4136 20.236 20.236 16.4136 13.4985 -13.4984 14.7787 16.4136 16.4136 14.7787 13.4984 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 14.7783 16.4131 16.4131 14.7783 13.4981 +13.4981 16.4131 20.235 20.235 16.4131 13.4981 +13.4981 16.4131 20.235 20.235 16.4131 13.4981 +13.4981 14.7783 16.4131 16.4131 14.7783 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 Species 6 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 -13.4984 15.0075 16.9348 16.9348 15.0075 13.4984 -13.4985 16.9348 21.4423 21.4423 16.9348 13.4985 -13.4985 16.9348 21.4423 21.4423 16.9348 13.4985 -13.4984 15.0075 16.9348 16.9348 15.0075 13.4984 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 15.007 16.9343 16.9343 15.007 13.4981 +13.4981 16.9343 21.4413 21.4413 16.9343 13.4981 +13.4981 16.9343 21.4413 21.4413 16.9343 13.4981 +13.4981 15.007 16.9343 16.9343 15.007 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.51e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.90e-03 c values at t = 0.001: @@ -167,41 +167,41 @@ Species 3 9.90776 9.93088 9.96016 9.96017 9.93092 9.90781 Species 4 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 Species 5 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 Species 6 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1797 nni = 1229 hu = 3.43e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1015 nni = 717 hu = 1.01e-02 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2023 nni = 1385 hu = 1.25e-02 +t = 1.00e-01 nst = 65 nfe = 0 nfi = 1130 nni = 802 hu = 1.60e-02 -t = 1.00e+00 nst = 153 nfe = 0 nfi = 2474 nni = 1706 hu = 6.52e-02 +t = 1.00e+00 nst = 83 nfe = 0 nfi = 1472 nni = 1054 hu = 8.85e-02 c values at t = 1: Species 1 -1.58851 1.59924 1.62152 1.64765 1.67036 1.68149 +1.58851 1.59924 1.62152 1.64764 1.67036 1.68149 1.58533 1.59503 1.61548 1.63952 1.66033 1.67036 -1.57757 1.58547 1.60239 1.62235 1.63952 1.64765 +1.57757 1.58547 1.60239 1.62235 1.63952 1.64764 1.5682 1.57412 1.58706 1.60239 1.61548 1.62152 1.56048 1.56463 1.57412 1.58547 1.59503 1.59924 1.55733 1.56048 1.5682 1.57757 1.58533 1.58851 @@ -210,7 +210,7 @@ Species 2 1.59067 1.60141 1.62371 1.64987 1.67261 1.68375 1.58748 1.5972 1.61766 1.64173 1.66257 1.67261 1.57971 1.58763 1.60457 1.62454 1.64173 1.64987 -1.57034 1.57626 1.58922 1.60457 1.61766 1.62371 +1.57034 1.57626 1.58921 1.60457 1.61766 1.62371 1.56261 1.56676 1.57626 1.58763 1.5972 1.60141 1.55945 1.56261 1.57034 1.57971 1.58748 1.59067 @@ -225,32 +225,32 @@ Species 3 Species 4 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 Species 5 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 Species 6 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 -t = 2.00e+00 nst = 164 nfe = 0 nfi = 2647 nni = 1824 hu = 1.58e-01 +t = 2.00e+00 nst = 100 nfe = 0 nfi = 1815 nni = 1301 hu = 5.29e-02 -t = 3.00e+00 nst = 170 nfe = 0 nfi = 2737 nni = 1884 hu = 1.58e-01 +t = 3.00e+00 nst = 113 nfe = 0 nfi = 2082 nni = 1491 hu = 9.87e-02 -t = 4.00e+00 nst = 176 nfe = 0 nfi = 2843 nni = 1955 hu = 1.85e-01 +t = 4.00e+00 nst = 120 nfe = 0 nfi = 2202 nni = 1574 hu = 2.96e-01 c values at t = 4: @@ -259,11 +259,11 @@ Species 1 1.1928 1.20035 1.21636 1.23523 1.25154 1.25935 1.18657 1.19274 1.20602 1.22173 1.23523 1.24157 1.17904 1.18368 1.19389 1.20602 1.21636 1.2211 -1.17284 1.17613 1.18368 1.19274 1.20035 1.20368 +1.17284 1.17612 1.18368 1.19274 1.20035 1.20368 1.17032 1.17284 1.17904 1.18657 1.1928 1.19535 Species 2 -1.19538 1.20371 1.22113 1.24161 1.25938 1.26804 +1.19538 1.20371 1.22113 1.24161 1.25938 1.26803 1.19284 1.20038 1.21639 1.23526 1.25157 1.25938 1.1866 1.19277 1.20606 1.22177 1.23526 1.24161 1.17908 1.18371 1.19393 1.20606 1.21639 1.22113 @@ -272,97 +272,97 @@ Species 2 Species 3 1.19542 1.20374 1.22116 1.24164 1.25942 1.26807 -1.19287 1.20042 1.21642 1.2353 1.2516 1.25942 -1.18663 1.1928 1.20609 1.2218 1.2353 1.24164 +1.19287 1.20041 1.21642 1.23529 1.2516 1.25942 +1.18663 1.1928 1.20609 1.2218 1.23529 1.24164 1.17911 1.18374 1.19396 1.20609 1.21642 1.22116 -1.17291 1.17619 1.18374 1.1928 1.20042 1.20374 +1.17291 1.17619 1.18374 1.1928 1.20041 1.20374 1.17039 1.17291 1.17911 1.18663 1.19287 1.19542 Species 4 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 Species 5 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 Species 6 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 -t = 5.00e+00 nst = 181 nfe = 0 nfi = 2911 nni = 1998 hu = 2.46e-01 +t = 5.00e+00 nst = 123 nfe = 0 nfi = 2259 nni = 1614 hu = 5.34e-01 -t = 6.00e+00 nst = 184 nfe = 0 nfi = 2950 nni = 2022 hu = 3.05e-01 +t = 6.00e+00 nst = 124 nfe = 0 nfi = 2275 nni = 1625 hu = 9.98e-01 -t = 7.00e+00 nst = 186 nfe = 0 nfi = 2975 nni = 2037 hu = 4.87e-01 +t = 7.00e+00 nst = 125 nfe = 0 nfi = 2290 nni = 1635 hu = 1.72e+00 c values at t = 7: Species 1 -1.18854 1.19682 1.21415 1.23453 1.25221 1.26082 -1.186 1.19351 1.20944 1.22822 1.24444 1.25221 -1.1798 1.18593 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18708 1.19916 1.20944 1.21415 -1.16614 1.1694 1.17692 1.18593 1.19351 1.19682 -1.16363 1.16614 1.17231 1.1798 1.186 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26081 +1.186 1.1935 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.16939 1.17691 1.18593 1.1935 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 2 -1.18854 1.19683 1.21415 1.23453 1.25222 1.26082 -1.186 1.19351 1.20944 1.22822 1.24444 1.25222 -1.1798 1.18594 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18709 1.19916 1.20944 1.21415 -1.16614 1.1694 1.17692 1.18594 1.19351 1.19683 -1.16363 1.16614 1.17231 1.1798 1.186 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26081 +1.186 1.19351 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.1694 1.17691 1.18593 1.19351 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 3 -1.18854 1.19683 1.21416 1.23453 1.25222 1.26082 -1.18601 1.19351 1.20944 1.22822 1.24444 1.25222 -1.1798 1.18594 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18709 1.19916 1.20944 1.21416 -1.16614 1.1694 1.17692 1.18594 1.19351 1.19683 -1.16363 1.16614 1.17231 1.1798 1.18601 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26082 +1.186 1.19351 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.1694 1.17691 1.18593 1.19351 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 4 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 Species 5 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 Species 6 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 -t = 8.00e+00 nst = 188 nfe = 0 nfi = 3003 nni = 2055 hu = 7.64e-01 +t = 8.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 9.00e+00 nst = 189 nfe = 0 nfi = 3015 nni = 2062 hu = 7.64e-01 +t = 9.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 1.00e+01 nst = 190 nfe = 0 nfi = 3030 nni = 2072 hu = 1.57e+00 +t = 1.00e+01 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 c values at t = 10: @@ -391,51 +391,51 @@ Species 3 1.16347 1.16598 1.17215 1.17964 1.18585 1.18838 Species 4 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Species 5 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Species 6 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 143 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 147 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 190 + Number of steps = 126 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 3030 - Number of f-s (SPGMR) = 6097 - Number of f-s (TOTAL) = 6097 - Number of setups = 38 - Number of nonlinear iterations = 2072 - Number of linear iterations = 6097 - Number of preconditioner evaluations = 38 - Number of preconditioner solves = 8080 - Number of error test failures = 1 - Number of nonlinear conv. failures = 0 - Number of linear convergence failures = 182 - Average Krylov subspace dimension = 2.943 + Number of f-s (implicit) = 2305 + Number of f-s (SPGMR) = 5210 + Number of f-s (TOTAL) = 5210 + Number of setups = 80 + Number of nonlinear iterations = 1645 + Number of linear iterations = 5210 + Number of preconditioner evaluations = 80 + Number of preconditioner solves = 6806 + Number of error test failures = 0 + Number of nonlinear conv. failures = 29 + Number of linear convergence failures = 228 + Average Krylov subspace dimension = 3.167 ---------------------------------------------------------------------------- @@ -447,64 +447,64 @@ Preconditioner type is jpre = SUN_PREC_LEFT Gram-Schmidt method type is gstype = SUN_CLASSICAL_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.51e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.90e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1797 nni = 1229 hu = 3.43e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1015 nni = 717 hu = 1.01e-02 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2023 nni = 1385 hu = 1.25e-02 +t = 1.00e-01 nst = 65 nfe = 0 nfi = 1130 nni = 802 hu = 1.60e-02 -t = 1.00e+00 nst = 153 nfe = 0 nfi = 2474 nni = 1706 hu = 6.52e-02 +t = 1.00e+00 nst = 83 nfe = 0 nfi = 1472 nni = 1054 hu = 8.85e-02 -t = 2.00e+00 nst = 164 nfe = 0 nfi = 2647 nni = 1824 hu = 1.58e-01 +t = 2.00e+00 nst = 100 nfe = 0 nfi = 1815 nni = 1301 hu = 5.28e-02 -t = 3.00e+00 nst = 170 nfe = 0 nfi = 2737 nni = 1884 hu = 1.58e-01 +t = 3.00e+00 nst = 113 nfe = 0 nfi = 2082 nni = 1491 hu = 9.87e-02 -t = 4.00e+00 nst = 176 nfe = 0 nfi = 2843 nni = 1955 hu = 1.85e-01 +t = 4.00e+00 nst = 120 nfe = 0 nfi = 2202 nni = 1574 hu = 2.96e-01 -t = 5.00e+00 nst = 181 nfe = 0 nfi = 2911 nni = 1998 hu = 2.46e-01 +t = 5.00e+00 nst = 123 nfe = 0 nfi = 2259 nni = 1614 hu = 5.33e-01 -t = 6.00e+00 nst = 184 nfe = 0 nfi = 2950 nni = 2022 hu = 3.05e-01 +t = 6.00e+00 nst = 124 nfe = 0 nfi = 2275 nni = 1625 hu = 9.98e-01 -t = 7.00e+00 nst = 186 nfe = 0 nfi = 2975 nni = 2037 hu = 4.86e-01 +t = 7.00e+00 nst = 125 nfe = 0 nfi = 2290 nni = 1635 hu = 1.72e+00 -t = 8.00e+00 nst = 188 nfe = 0 nfi = 3003 nni = 2055 hu = 7.64e-01 +t = 8.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 9.00e+00 nst = 189 nfe = 0 nfi = 3015 nni = 2062 hu = 7.64e-01 +t = 9.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 1.00e+01 nst = 190 nfe = 0 nfi = 3030 nni = 2072 hu = 1.57e+00 +t = 1.00e+01 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 148 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 153 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 190 + Number of steps = 126 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 3030 - Number of f-s (SPGMR) = 6096 - Number of f-s (TOTAL) = 6096 - Number of setups = 38 - Number of nonlinear iterations = 2072 - Number of linear iterations = 6096 - Number of preconditioner evaluations = 38 - Number of preconditioner solves = 8079 - Number of error test failures = 1 - Number of nonlinear conv. failures = 0 - Number of linear convergence failures = 182 - Average Krylov subspace dimension = 2.942 + Number of f-s (implicit) = 2305 + Number of f-s (SPGMR) = 5210 + Number of f-s (TOTAL) = 5210 + Number of setups = 80 + Number of nonlinear iterations = 1645 + Number of linear iterations = 5210 + Number of preconditioner evaluations = 80 + Number of preconditioner solves = 6806 + Number of error test failures = 0 + Number of nonlinear conv. failures = 29 + Number of linear convergence failures = 228 + Average Krylov subspace dimension = 3.167 ---------------------------------------------------------------------------- @@ -516,64 +516,64 @@ Preconditioner type is jpre = SUN_PREC_RIGHT Gram-Schmidt method type is gstype = SUN_MODIFIED_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.49e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.86e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1799 nni = 1231 hu = 3.79e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1027 nni = 726 hu = 2.51e-03 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2028 nni = 1390 hu = 1.32e-02 +t = 1.00e-01 nst = 72 nfe = 0 nfi = 1303 nni = 928 hu = 6.16e-03 -t = 1.00e+00 nst = 164 nfe = 0 nfi = 2669 nni = 1844 hu = 4.98e-02 +t = 1.00e+00 nst = 124 nfe = 0 nfi = 2243 nni = 1598 hu = 2.32e-02 -t = 2.00e+00 nst = 213 nfe = 0 nfi = 3526 nni = 2444 hu = 2.37e-02 +t = 2.00e+00 nst = 150 nfe = 0 nfi = 2672 nni = 1897 hu = 6.35e-02 -t = 3.00e+00 nst = 248 nfe = 0 nfi = 4087 nni = 2830 hu = 3.53e-02 +t = 3.00e+00 nst = 178 nfe = 0 nfi = 3178 nni = 2253 hu = 4.48e-02 -t = 4.00e+00 nst = 272 nfe = 0 nfi = 4465 nni = 3088 hu = 3.22e-02 +t = 4.00e+00 nst = 197 nfe = 0 nfi = 3492 nni = 2470 hu = 8.26e-02 -t = 5.00e+00 nst = 299 nfe = 0 nfi = 4876 nni = 3363 hu = 3.94e-02 +t = 5.00e+00 nst = 209 nfe = 0 nfi = 3678 nni = 2596 hu = 9.29e-02 -t = 6.00e+00 nst = 316 nfe = 0 nfi = 5130 nni = 3532 hu = 6.86e-02 +t = 6.00e+00 nst = 221 nfe = 0 nfi = 3860 nni = 2718 hu = 1.35e-01 -t = 7.00e+00 nst = 329 nfe = 0 nfi = 5315 nni = 3652 hu = 8.22e-02 +t = 7.00e+00 nst = 233 nfe = 0 nfi = 4050 nni = 2845 hu = 5.14e-02 -t = 8.00e+00 nst = 339 nfe = 0 nfi = 5455 nni = 3742 hu = 1.18e-01 +t = 8.00e+00 nst = 243 nfe = 0 nfi = 4202 nni = 2945 hu = 1.77e-01 -t = 9.00e+00 nst = 345 nfe = 0 nfi = 5536 nni = 3793 hu = 2.11e-01 +t = 9.00e+00 nst = 250 nfe = 0 nfi = 4307 nni = 3012 hu = 2.19e-01 -t = 1.00e+01 nst = 349 nfe = 0 nfi = 5589 nni = 3826 hu = 2.80e-01 +t = 1.00e+01 nst = 256 nfe = 0 nfi = 4390 nni = 3065 hu = 1.33e-01 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 153 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 159 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 349 + Number of steps = 256 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 5589 - Number of f-s (SPGMR) = 12378 - Number of f-s (TOTAL) = 12378 - Number of setups = 244 - Number of nonlinear iterations = 3826 - Number of linear iterations = 12378 - Number of preconditioner evaluations = 244 - Number of preconditioner solves = 15957 + Number of f-s (implicit) = 4390 + Number of f-s (SPGMR) = 10822 + Number of f-s (TOTAL) = 10822 + Number of setups = 245 + Number of nonlinear iterations = 3065 + Number of linear iterations = 10822 + Number of preconditioner evaluations = 245 + Number of preconditioner solves = 13664 Number of error test failures = 0 - Number of nonlinear conv. failures = 113 - Number of linear convergence failures = 977 - Average Krylov subspace dimension = 3.235 + Number of nonlinear conv. failures = 127 + Number of linear convergence failures = 916 + Average Krylov subspace dimension = 3.531 ---------------------------------------------------------------------------- @@ -585,64 +585,64 @@ Preconditioner type is jpre = SUN_PREC_RIGHT Gram-Schmidt method type is gstype = SUN_CLASSICAL_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.49e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.86e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1799 nni = 1231 hu = 3.79e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1027 nni = 726 hu = 2.51e-03 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2028 nni = 1390 hu = 1.32e-02 +t = 1.00e-01 nst = 72 nfe = 0 nfi = 1303 nni = 928 hu = 6.16e-03 -t = 1.00e+00 nst = 164 nfe = 0 nfi = 2669 nni = 1844 hu = 4.98e-02 +t = 1.00e+00 nst = 124 nfe = 0 nfi = 2243 nni = 1598 hu = 2.32e-02 -t = 2.00e+00 nst = 213 nfe = 0 nfi = 3526 nni = 2444 hu = 2.37e-02 +t = 2.00e+00 nst = 150 nfe = 0 nfi = 2672 nni = 1897 hu = 6.35e-02 -t = 3.00e+00 nst = 248 nfe = 0 nfi = 4087 nni = 2830 hu = 3.53e-02 +t = 3.00e+00 nst = 178 nfe = 0 nfi = 3178 nni = 2253 hu = 4.48e-02 -t = 4.00e+00 nst = 272 nfe = 0 nfi = 4465 nni = 3088 hu = 3.22e-02 +t = 4.00e+00 nst = 197 nfe = 0 nfi = 3492 nni = 2470 hu = 8.26e-02 -t = 5.00e+00 nst = 299 nfe = 0 nfi = 4876 nni = 3363 hu = 3.94e-02 +t = 5.00e+00 nst = 209 nfe = 0 nfi = 3678 nni = 2596 hu = 9.29e-02 -t = 6.00e+00 nst = 316 nfe = 0 nfi = 5130 nni = 3532 hu = 6.86e-02 +t = 6.00e+00 nst = 221 nfe = 0 nfi = 3860 nni = 2718 hu = 1.35e-01 -t = 7.00e+00 nst = 329 nfe = 0 nfi = 5315 nni = 3652 hu = 8.22e-02 +t = 7.00e+00 nst = 233 nfe = 0 nfi = 4050 nni = 2845 hu = 5.15e-02 -t = 8.00e+00 nst = 339 nfe = 0 nfi = 5455 nni = 3742 hu = 1.19e-01 +t = 8.00e+00 nst = 243 nfe = 0 nfi = 4202 nni = 2945 hu = 1.77e-01 -t = 9.00e+00 nst = 345 nfe = 0 nfi = 5536 nni = 3793 hu = 2.11e-01 +t = 9.00e+00 nst = 250 nfe = 0 nfi = 4307 nni = 3012 hu = 2.19e-01 -t = 1.00e+01 nst = 349 nfe = 0 nfi = 5589 nni = 3826 hu = 2.80e-01 +t = 1.00e+01 nst = 256 nfe = 0 nfi = 4390 nni = 3065 hu = 1.33e-01 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 158 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 165 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 349 + Number of steps = 256 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 5589 - Number of f-s (SPGMR) = 12378 - Number of f-s (TOTAL) = 12378 - Number of setups = 244 - Number of nonlinear iterations = 3826 - Number of linear iterations = 12378 - Number of preconditioner evaluations = 244 - Number of preconditioner solves = 15957 + Number of f-s (implicit) = 4390 + Number of f-s (SPGMR) = 10824 + Number of f-s (TOTAL) = 10824 + Number of setups = 245 + Number of nonlinear iterations = 3065 + Number of linear iterations = 10824 + Number of preconditioner evaluations = 245 + Number of preconditioner solves = 13666 Number of error test failures = 0 - Number of nonlinear conv. failures = 113 - Number of linear convergence failures = 976 - Average Krylov subspace dimension = 3.235 + Number of nonlinear conv. failures = 127 + Number of linear convergence failures = 916 + Average Krylov subspace dimension = 3.531 ---------------------------------------------------------------------------- diff --git a/examples/arkode/C_serial/ark_KrylovDemo_prec_1.out b/examples/arkode/C_serial/ark_KrylovDemo_prec_1.out index e60c62304f..d7eedfc076 100644 --- a/examples/arkode/C_serial/ark_KrylovDemo_prec_1.out +++ b/examples/arkode/C_serial/ark_KrylovDemo_prec_1.out @@ -78,11 +78,11 @@ Species 6 10 11.0066 12.2649 12.2649 11.0066 10 10 10 10 10 10 10 -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 c values at t = 1e-06: @@ -111,34 +111,34 @@ Species 3 9.99991 9.99994 9.99997 9.99997 9.99994 9.99991 Species 4 -13.4984 13.4984 13.4984 13.4984 13.4984 13.4984 -13.4984 14.55 15.8924 15.8924 14.55 13.4984 -13.4984 15.8924 19.0296 19.0296 15.8924 13.4984 -13.4984 15.8924 19.0296 19.0296 15.8924 13.4984 -13.4984 14.55 15.8924 15.8924 14.55 13.4984 -13.4984 13.4984 13.4984 13.4984 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 14.5495 15.8919 15.8919 14.5495 13.4981 +13.4981 15.8919 19.0287 19.0287 15.8919 13.4981 +13.4981 15.8919 19.0287 19.0287 15.8919 13.4981 +13.4981 14.5495 15.8919 15.8919 14.5495 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 Species 5 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 -13.4984 14.7787 16.4136 16.4136 14.7787 13.4984 -13.4985 16.4136 20.236 20.236 16.4136 13.4985 -13.4985 16.4136 20.236 20.236 16.4136 13.4985 -13.4984 14.7787 16.4136 16.4136 14.7787 13.4984 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 14.7783 16.4131 16.4131 14.7783 13.4981 +13.4981 16.4131 20.235 20.235 16.4131 13.4981 +13.4981 16.4131 20.235 20.235 16.4131 13.4981 +13.4981 14.7783 16.4131 16.4131 14.7783 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 Species 6 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 -13.4984 15.0075 16.9348 16.9348 15.0075 13.4984 -13.4985 16.9348 21.4423 21.4423 16.9348 13.4985 -13.4985 16.9348 21.4423 21.4423 16.9348 13.4985 -13.4984 15.0075 16.9348 16.9348 15.0075 13.4984 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 15.007 16.9343 16.9343 15.007 13.4981 +13.4981 16.9343 21.4413 21.4413 16.9343 13.4981 +13.4981 16.9343 21.4413 21.4413 16.9343 13.4981 +13.4981 15.007 16.9343 16.9343 15.007 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.51e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.90e-03 c values at t = 0.001: @@ -167,41 +167,41 @@ Species 3 9.90776 9.93088 9.96016 9.96017 9.93092 9.90781 Species 4 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 Species 5 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 Species 6 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1797 nni = 1229 hu = 3.43e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1015 nni = 717 hu = 1.01e-02 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2023 nni = 1385 hu = 1.25e-02 +t = 1.00e-01 nst = 65 nfe = 0 nfi = 1130 nni = 802 hu = 1.60e-02 -t = 1.00e+00 nst = 153 nfe = 0 nfi = 2474 nni = 1706 hu = 6.52e-02 +t = 1.00e+00 nst = 83 nfe = 0 nfi = 1472 nni = 1054 hu = 8.85e-02 c values at t = 1: Species 1 -1.58851 1.59924 1.62152 1.64765 1.67036 1.68149 +1.58851 1.59924 1.62152 1.64764 1.67036 1.68149 1.58533 1.59503 1.61548 1.63952 1.66033 1.67036 -1.57757 1.58547 1.60239 1.62235 1.63952 1.64765 +1.57757 1.58547 1.60239 1.62235 1.63952 1.64764 1.5682 1.57412 1.58706 1.60239 1.61548 1.62152 1.56048 1.56463 1.57412 1.58547 1.59503 1.59924 1.55733 1.56048 1.5682 1.57757 1.58533 1.58851 @@ -210,7 +210,7 @@ Species 2 1.59067 1.60141 1.62371 1.64987 1.67261 1.68375 1.58748 1.5972 1.61766 1.64173 1.66257 1.67261 1.57971 1.58763 1.60457 1.62454 1.64173 1.64987 -1.57034 1.57626 1.58922 1.60457 1.61766 1.62371 +1.57034 1.57626 1.58921 1.60457 1.61766 1.62371 1.56261 1.56676 1.57626 1.58763 1.5972 1.60141 1.55945 1.56261 1.57034 1.57971 1.58748 1.59067 @@ -225,32 +225,32 @@ Species 3 Species 4 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 Species 5 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 Species 6 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 -t = 2.00e+00 nst = 164 nfe = 0 nfi = 2647 nni = 1824 hu = 1.58e-01 +t = 2.00e+00 nst = 100 nfe = 0 nfi = 1815 nni = 1301 hu = 5.29e-02 -t = 3.00e+00 nst = 170 nfe = 0 nfi = 2737 nni = 1884 hu = 1.58e-01 +t = 3.00e+00 nst = 113 nfe = 0 nfi = 2082 nni = 1491 hu = 9.87e-02 -t = 4.00e+00 nst = 176 nfe = 0 nfi = 2843 nni = 1955 hu = 1.85e-01 +t = 4.00e+00 nst = 120 nfe = 0 nfi = 2202 nni = 1574 hu = 2.96e-01 c values at t = 4: @@ -259,11 +259,11 @@ Species 1 1.1928 1.20035 1.21636 1.23523 1.25154 1.25935 1.18657 1.19274 1.20602 1.22173 1.23523 1.24157 1.17904 1.18368 1.19389 1.20602 1.21636 1.2211 -1.17284 1.17613 1.18368 1.19274 1.20035 1.20368 +1.17284 1.17612 1.18368 1.19274 1.20035 1.20368 1.17032 1.17284 1.17904 1.18657 1.1928 1.19535 Species 2 -1.19538 1.20371 1.22113 1.24161 1.25938 1.26804 +1.19538 1.20371 1.22113 1.24161 1.25938 1.26803 1.19284 1.20038 1.21639 1.23526 1.25157 1.25938 1.1866 1.19277 1.20606 1.22177 1.23526 1.24161 1.17908 1.18371 1.19393 1.20606 1.21639 1.22113 @@ -272,97 +272,97 @@ Species 2 Species 3 1.19542 1.20374 1.22116 1.24164 1.25942 1.26807 -1.19287 1.20042 1.21642 1.2353 1.2516 1.25942 -1.18663 1.1928 1.20609 1.2218 1.2353 1.24164 +1.19287 1.20041 1.21642 1.23529 1.2516 1.25942 +1.18663 1.1928 1.20609 1.2218 1.23529 1.24164 1.17911 1.18374 1.19396 1.20609 1.21642 1.22116 -1.17291 1.17619 1.18374 1.1928 1.20042 1.20374 +1.17291 1.17619 1.18374 1.1928 1.20041 1.20374 1.17039 1.17291 1.17911 1.18663 1.19287 1.19542 Species 4 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 Species 5 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 Species 6 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 -t = 5.00e+00 nst = 181 nfe = 0 nfi = 2911 nni = 1998 hu = 2.46e-01 +t = 5.00e+00 nst = 123 nfe = 0 nfi = 2259 nni = 1614 hu = 5.34e-01 -t = 6.00e+00 nst = 184 nfe = 0 nfi = 2950 nni = 2022 hu = 3.05e-01 +t = 6.00e+00 nst = 124 nfe = 0 nfi = 2275 nni = 1625 hu = 9.98e-01 -t = 7.00e+00 nst = 186 nfe = 0 nfi = 2975 nni = 2037 hu = 4.87e-01 +t = 7.00e+00 nst = 125 nfe = 0 nfi = 2290 nni = 1635 hu = 1.72e+00 c values at t = 7: Species 1 -1.18854 1.19682 1.21415 1.23453 1.25221 1.26082 -1.186 1.19351 1.20944 1.22822 1.24444 1.25221 -1.1798 1.18593 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18708 1.19916 1.20944 1.21415 -1.16614 1.1694 1.17692 1.18593 1.19351 1.19682 -1.16363 1.16614 1.17231 1.1798 1.186 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26081 +1.186 1.1935 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.16939 1.17691 1.18593 1.1935 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 2 -1.18854 1.19683 1.21415 1.23453 1.25222 1.26082 -1.186 1.19351 1.20944 1.22822 1.24444 1.25222 -1.1798 1.18594 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18709 1.19916 1.20944 1.21415 -1.16614 1.1694 1.17692 1.18594 1.19351 1.19683 -1.16363 1.16614 1.17231 1.1798 1.186 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26081 +1.186 1.19351 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.1694 1.17691 1.18593 1.19351 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 3 -1.18854 1.19683 1.21416 1.23453 1.25222 1.26082 -1.18601 1.19351 1.20944 1.22822 1.24444 1.25222 -1.1798 1.18594 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18709 1.19916 1.20944 1.21416 -1.16614 1.1694 1.17692 1.18594 1.19351 1.19683 -1.16363 1.16614 1.17231 1.1798 1.18601 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26082 +1.186 1.19351 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.1694 1.17691 1.18593 1.19351 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 4 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 Species 5 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 Species 6 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 -t = 8.00e+00 nst = 188 nfe = 0 nfi = 3003 nni = 2055 hu = 7.64e-01 +t = 8.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 9.00e+00 nst = 189 nfe = 0 nfi = 3015 nni = 2062 hu = 7.64e-01 +t = 9.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 1.00e+01 nst = 190 nfe = 0 nfi = 3030 nni = 2072 hu = 1.57e+00 +t = 1.00e+01 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 c values at t = 10: @@ -391,51 +391,51 @@ Species 3 1.16347 1.16598 1.17215 1.17964 1.18585 1.18838 Species 4 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Species 5 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Species 6 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 143 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 147 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 190 + Number of steps = 126 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 3030 - Number of f-s (SPGMR) = 6097 - Number of f-s (TOTAL) = 6097 - Number of setups = 38 - Number of nonlinear iterations = 2072 - Number of linear iterations = 6097 - Number of preconditioner evaluations = 38 - Number of preconditioner solves = 8080 - Number of error test failures = 1 - Number of nonlinear conv. failures = 0 - Number of linear convergence failures = 182 - Average Krylov subspace dimension = 2.943 + Number of f-s (implicit) = 2305 + Number of f-s (SPGMR) = 5210 + Number of f-s (TOTAL) = 5210 + Number of setups = 80 + Number of nonlinear iterations = 1645 + Number of linear iterations = 5210 + Number of preconditioner evaluations = 80 + Number of preconditioner solves = 6806 + Number of error test failures = 0 + Number of nonlinear conv. failures = 29 + Number of linear convergence failures = 228 + Average Krylov subspace dimension = 3.167 ---------------------------------------------------------------------------- @@ -447,64 +447,64 @@ Preconditioner type is jpre = SUN_PREC_LEFT Gram-Schmidt method type is gstype = SUN_CLASSICAL_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.51e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.90e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1797 nni = 1229 hu = 3.43e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1015 nni = 717 hu = 1.01e-02 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2023 nni = 1385 hu = 1.25e-02 +t = 1.00e-01 nst = 65 nfe = 0 nfi = 1130 nni = 802 hu = 1.60e-02 -t = 1.00e+00 nst = 153 nfe = 0 nfi = 2474 nni = 1706 hu = 6.52e-02 +t = 1.00e+00 nst = 83 nfe = 0 nfi = 1472 nni = 1054 hu = 8.85e-02 -t = 2.00e+00 nst = 164 nfe = 0 nfi = 2647 nni = 1824 hu = 1.58e-01 +t = 2.00e+00 nst = 100 nfe = 0 nfi = 1815 nni = 1301 hu = 5.28e-02 -t = 3.00e+00 nst = 170 nfe = 0 nfi = 2737 nni = 1884 hu = 1.58e-01 +t = 3.00e+00 nst = 113 nfe = 0 nfi = 2082 nni = 1491 hu = 9.87e-02 -t = 4.00e+00 nst = 176 nfe = 0 nfi = 2843 nni = 1955 hu = 1.85e-01 +t = 4.00e+00 nst = 120 nfe = 0 nfi = 2202 nni = 1574 hu = 2.96e-01 -t = 5.00e+00 nst = 181 nfe = 0 nfi = 2911 nni = 1998 hu = 2.46e-01 +t = 5.00e+00 nst = 123 nfe = 0 nfi = 2259 nni = 1614 hu = 5.33e-01 -t = 6.00e+00 nst = 184 nfe = 0 nfi = 2950 nni = 2022 hu = 3.05e-01 +t = 6.00e+00 nst = 124 nfe = 0 nfi = 2275 nni = 1625 hu = 9.98e-01 -t = 7.00e+00 nst = 186 nfe = 0 nfi = 2975 nni = 2037 hu = 4.86e-01 +t = 7.00e+00 nst = 125 nfe = 0 nfi = 2290 nni = 1635 hu = 1.72e+00 -t = 8.00e+00 nst = 188 nfe = 0 nfi = 3003 nni = 2055 hu = 7.64e-01 +t = 8.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 9.00e+00 nst = 189 nfe = 0 nfi = 3015 nni = 2062 hu = 7.64e-01 +t = 9.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 1.00e+01 nst = 190 nfe = 0 nfi = 3030 nni = 2072 hu = 1.57e+00 +t = 1.00e+01 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 148 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 153 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 190 + Number of steps = 126 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 3030 - Number of f-s (SPGMR) = 6096 - Number of f-s (TOTAL) = 6096 - Number of setups = 38 - Number of nonlinear iterations = 2072 - Number of linear iterations = 6096 - Number of preconditioner evaluations = 38 - Number of preconditioner solves = 8079 - Number of error test failures = 1 - Number of nonlinear conv. failures = 0 - Number of linear convergence failures = 182 - Average Krylov subspace dimension = 2.942 + Number of f-s (implicit) = 2305 + Number of f-s (SPGMR) = 5210 + Number of f-s (TOTAL) = 5210 + Number of setups = 80 + Number of nonlinear iterations = 1645 + Number of linear iterations = 5210 + Number of preconditioner evaluations = 80 + Number of preconditioner solves = 6806 + Number of error test failures = 0 + Number of nonlinear conv. failures = 29 + Number of linear convergence failures = 228 + Average Krylov subspace dimension = 3.167 ---------------------------------------------------------------------------- @@ -516,64 +516,64 @@ Preconditioner type is jpre = SUN_PREC_RIGHT Gram-Schmidt method type is gstype = SUN_MODIFIED_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.49e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.86e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1799 nni = 1231 hu = 3.79e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1027 nni = 726 hu = 2.51e-03 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2028 nni = 1390 hu = 1.32e-02 +t = 1.00e-01 nst = 72 nfe = 0 nfi = 1303 nni = 928 hu = 6.16e-03 -t = 1.00e+00 nst = 164 nfe = 0 nfi = 2669 nni = 1844 hu = 4.98e-02 +t = 1.00e+00 nst = 124 nfe = 0 nfi = 2243 nni = 1598 hu = 2.32e-02 -t = 2.00e+00 nst = 213 nfe = 0 nfi = 3526 nni = 2444 hu = 2.37e-02 +t = 2.00e+00 nst = 150 nfe = 0 nfi = 2672 nni = 1897 hu = 6.35e-02 -t = 3.00e+00 nst = 248 nfe = 0 nfi = 4087 nni = 2830 hu = 3.53e-02 +t = 3.00e+00 nst = 178 nfe = 0 nfi = 3178 nni = 2253 hu = 4.48e-02 -t = 4.00e+00 nst = 272 nfe = 0 nfi = 4465 nni = 3088 hu = 3.22e-02 +t = 4.00e+00 nst = 197 nfe = 0 nfi = 3492 nni = 2470 hu = 8.26e-02 -t = 5.00e+00 nst = 299 nfe = 0 nfi = 4876 nni = 3363 hu = 3.94e-02 +t = 5.00e+00 nst = 209 nfe = 0 nfi = 3678 nni = 2596 hu = 9.29e-02 -t = 6.00e+00 nst = 316 nfe = 0 nfi = 5130 nni = 3532 hu = 6.86e-02 +t = 6.00e+00 nst = 221 nfe = 0 nfi = 3860 nni = 2718 hu = 1.35e-01 -t = 7.00e+00 nst = 329 nfe = 0 nfi = 5315 nni = 3652 hu = 8.22e-02 +t = 7.00e+00 nst = 233 nfe = 0 nfi = 4050 nni = 2845 hu = 5.14e-02 -t = 8.00e+00 nst = 339 nfe = 0 nfi = 5455 nni = 3742 hu = 1.18e-01 +t = 8.00e+00 nst = 243 nfe = 0 nfi = 4202 nni = 2945 hu = 1.77e-01 -t = 9.00e+00 nst = 345 nfe = 0 nfi = 5536 nni = 3793 hu = 2.11e-01 +t = 9.00e+00 nst = 250 nfe = 0 nfi = 4307 nni = 3012 hu = 2.19e-01 -t = 1.00e+01 nst = 349 nfe = 0 nfi = 5589 nni = 3826 hu = 2.80e-01 +t = 1.00e+01 nst = 256 nfe = 0 nfi = 4390 nni = 3065 hu = 1.33e-01 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 153 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 159 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 349 + Number of steps = 256 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 5589 - Number of f-s (SPGMR) = 12378 - Number of f-s (TOTAL) = 12378 - Number of setups = 244 - Number of nonlinear iterations = 3826 - Number of linear iterations = 12378 - Number of preconditioner evaluations = 244 - Number of preconditioner solves = 15957 + Number of f-s (implicit) = 4390 + Number of f-s (SPGMR) = 10822 + Number of f-s (TOTAL) = 10822 + Number of setups = 245 + Number of nonlinear iterations = 3065 + Number of linear iterations = 10822 + Number of preconditioner evaluations = 245 + Number of preconditioner solves = 13664 Number of error test failures = 0 - Number of nonlinear conv. failures = 113 - Number of linear convergence failures = 977 - Average Krylov subspace dimension = 3.235 + Number of nonlinear conv. failures = 127 + Number of linear convergence failures = 916 + Average Krylov subspace dimension = 3.531 ---------------------------------------------------------------------------- @@ -585,64 +585,64 @@ Preconditioner type is jpre = SUN_PREC_RIGHT Gram-Schmidt method type is gstype = SUN_CLASSICAL_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.49e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.86e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1799 nni = 1231 hu = 3.79e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1027 nni = 726 hu = 2.51e-03 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2028 nni = 1390 hu = 1.32e-02 +t = 1.00e-01 nst = 72 nfe = 0 nfi = 1303 nni = 928 hu = 6.16e-03 -t = 1.00e+00 nst = 164 nfe = 0 nfi = 2669 nni = 1844 hu = 4.98e-02 +t = 1.00e+00 nst = 124 nfe = 0 nfi = 2243 nni = 1598 hu = 2.32e-02 -t = 2.00e+00 nst = 213 nfe = 0 nfi = 3526 nni = 2444 hu = 2.37e-02 +t = 2.00e+00 nst = 150 nfe = 0 nfi = 2672 nni = 1897 hu = 6.35e-02 -t = 3.00e+00 nst = 248 nfe = 0 nfi = 4087 nni = 2830 hu = 3.53e-02 +t = 3.00e+00 nst = 178 nfe = 0 nfi = 3178 nni = 2253 hu = 4.48e-02 -t = 4.00e+00 nst = 272 nfe = 0 nfi = 4465 nni = 3088 hu = 3.22e-02 +t = 4.00e+00 nst = 197 nfe = 0 nfi = 3492 nni = 2470 hu = 8.26e-02 -t = 5.00e+00 nst = 299 nfe = 0 nfi = 4876 nni = 3363 hu = 3.94e-02 +t = 5.00e+00 nst = 209 nfe = 0 nfi = 3678 nni = 2596 hu = 9.29e-02 -t = 6.00e+00 nst = 316 nfe = 0 nfi = 5130 nni = 3532 hu = 6.86e-02 +t = 6.00e+00 nst = 221 nfe = 0 nfi = 3860 nni = 2718 hu = 1.35e-01 -t = 7.00e+00 nst = 329 nfe = 0 nfi = 5315 nni = 3652 hu = 8.22e-02 +t = 7.00e+00 nst = 233 nfe = 0 nfi = 4050 nni = 2845 hu = 5.15e-02 -t = 8.00e+00 nst = 339 nfe = 0 nfi = 5455 nni = 3742 hu = 1.19e-01 +t = 8.00e+00 nst = 243 nfe = 0 nfi = 4202 nni = 2945 hu = 1.77e-01 -t = 9.00e+00 nst = 345 nfe = 0 nfi = 5536 nni = 3793 hu = 2.11e-01 +t = 9.00e+00 nst = 250 nfe = 0 nfi = 4307 nni = 3012 hu = 2.19e-01 -t = 1.00e+01 nst = 349 nfe = 0 nfi = 5589 nni = 3826 hu = 2.80e-01 +t = 1.00e+01 nst = 256 nfe = 0 nfi = 4390 nni = 3065 hu = 1.33e-01 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 158 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 165 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 349 + Number of steps = 256 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 5589 - Number of f-s (SPGMR) = 12378 - Number of f-s (TOTAL) = 12378 - Number of setups = 244 - Number of nonlinear iterations = 3826 - Number of linear iterations = 12378 - Number of preconditioner evaluations = 244 - Number of preconditioner solves = 15957 + Number of f-s (implicit) = 4390 + Number of f-s (SPGMR) = 10824 + Number of f-s (TOTAL) = 10824 + Number of setups = 245 + Number of nonlinear iterations = 3065 + Number of linear iterations = 10824 + Number of preconditioner evaluations = 245 + Number of preconditioner solves = 13666 Number of error test failures = 0 - Number of nonlinear conv. failures = 113 - Number of linear convergence failures = 976 - Average Krylov subspace dimension = 3.235 + Number of nonlinear conv. failures = 127 + Number of linear convergence failures = 916 + Average Krylov subspace dimension = 3.531 ---------------------------------------------------------------------------- diff --git a/examples/arkode/C_serial/ark_KrylovDemo_prec_2.out b/examples/arkode/C_serial/ark_KrylovDemo_prec_2.out index e60c62304f..d7eedfc076 100644 --- a/examples/arkode/C_serial/ark_KrylovDemo_prec_2.out +++ b/examples/arkode/C_serial/ark_KrylovDemo_prec_2.out @@ -78,11 +78,11 @@ Species 6 10 11.0066 12.2649 12.2649 11.0066 10 10 10 10 10 10 10 -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 c values at t = 1e-06: @@ -111,34 +111,34 @@ Species 3 9.99991 9.99994 9.99997 9.99997 9.99994 9.99991 Species 4 -13.4984 13.4984 13.4984 13.4984 13.4984 13.4984 -13.4984 14.55 15.8924 15.8924 14.55 13.4984 -13.4984 15.8924 19.0296 19.0296 15.8924 13.4984 -13.4984 15.8924 19.0296 19.0296 15.8924 13.4984 -13.4984 14.55 15.8924 15.8924 14.55 13.4984 -13.4984 13.4984 13.4984 13.4984 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 14.5495 15.8919 15.8919 14.5495 13.4981 +13.4981 15.8919 19.0287 19.0287 15.8919 13.4981 +13.4981 15.8919 19.0287 19.0287 15.8919 13.4981 +13.4981 14.5495 15.8919 15.8919 14.5495 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 Species 5 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 -13.4984 14.7787 16.4136 16.4136 14.7787 13.4984 -13.4985 16.4136 20.236 20.236 16.4136 13.4985 -13.4985 16.4136 20.236 20.236 16.4136 13.4985 -13.4984 14.7787 16.4136 16.4136 14.7787 13.4984 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 14.7783 16.4131 16.4131 14.7783 13.4981 +13.4981 16.4131 20.235 20.235 16.4131 13.4981 +13.4981 16.4131 20.235 20.235 16.4131 13.4981 +13.4981 14.7783 16.4131 16.4131 14.7783 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 Species 6 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 -13.4984 15.0075 16.9348 16.9348 15.0075 13.4984 -13.4985 16.9348 21.4423 21.4423 16.9348 13.4985 -13.4985 16.9348 21.4423 21.4423 16.9348 13.4985 -13.4984 15.0075 16.9348 16.9348 15.0075 13.4984 -13.4984 13.4984 13.4985 13.4985 13.4984 13.4984 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 +13.4981 15.007 16.9343 16.9343 15.007 13.4981 +13.4981 16.9343 21.4413 21.4413 16.9343 13.4981 +13.4981 16.9343 21.4413 21.4413 16.9343 13.4981 +13.4981 15.007 16.9343 16.9343 15.007 13.4981 +13.498 13.4981 13.4981 13.4981 13.4981 13.498 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.51e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.90e-03 c values at t = 0.001: @@ -167,41 +167,41 @@ Species 3 9.90776 9.93088 9.96016 9.96017 9.93092 9.90781 Species 4 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 Species 5 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 Species 6 -297231 297749 298392 298451 297925 297520 +297231 297749 298393 298451 297925 297520 297692 307245 319327 319378 307390 297925 298276 319264 345799 345840 319378 298451 -298276 319252 345772 345799 319327 298392 +298276 319252 345772 345799 319327 298393 297691 307208 319252 319264 307245 297749 297229 297691 298276 298276 297692 297231 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1797 nni = 1229 hu = 3.43e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1015 nni = 717 hu = 1.01e-02 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2023 nni = 1385 hu = 1.25e-02 +t = 1.00e-01 nst = 65 nfe = 0 nfi = 1130 nni = 802 hu = 1.60e-02 -t = 1.00e+00 nst = 153 nfe = 0 nfi = 2474 nni = 1706 hu = 6.52e-02 +t = 1.00e+00 nst = 83 nfe = 0 nfi = 1472 nni = 1054 hu = 8.85e-02 c values at t = 1: Species 1 -1.58851 1.59924 1.62152 1.64765 1.67036 1.68149 +1.58851 1.59924 1.62152 1.64764 1.67036 1.68149 1.58533 1.59503 1.61548 1.63952 1.66033 1.67036 -1.57757 1.58547 1.60239 1.62235 1.63952 1.64765 +1.57757 1.58547 1.60239 1.62235 1.63952 1.64764 1.5682 1.57412 1.58706 1.60239 1.61548 1.62152 1.56048 1.56463 1.57412 1.58547 1.59503 1.59924 1.55733 1.56048 1.5682 1.57757 1.58533 1.58851 @@ -210,7 +210,7 @@ Species 2 1.59067 1.60141 1.62371 1.64987 1.67261 1.68375 1.58748 1.5972 1.61766 1.64173 1.66257 1.67261 1.57971 1.58763 1.60457 1.62454 1.64173 1.64987 -1.57034 1.57626 1.58922 1.60457 1.61766 1.62371 +1.57034 1.57626 1.58921 1.60457 1.61766 1.62371 1.56261 1.56676 1.57626 1.58763 1.5972 1.60141 1.55945 1.56261 1.57034 1.57971 1.58748 1.59067 @@ -225,32 +225,32 @@ Species 3 Species 4 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 Species 5 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 Species 6 47718.4 48040.3 48709 49493.5 50175.5 50509.4 47622.8 47914 48527.8 49249.6 49874.4 50175.5 -47389.7 47627 48135 48734.2 49249.6 49493.5 -47108.5 47286.1 47674.6 48135 48527.8 48709 -46876.6 47001.1 47286.1 47627 47914 48040.3 +47389.7 47627 48135 48734.1 49249.6 49493.5 +47108.5 47286 47674.6 48135 48527.8 48709 +46876.6 47001.1 47286 47627 47914 48040.3 46781.9 46876.6 47108.5 47389.7 47622.8 47718.4 -t = 2.00e+00 nst = 164 nfe = 0 nfi = 2647 nni = 1824 hu = 1.58e-01 +t = 2.00e+00 nst = 100 nfe = 0 nfi = 1815 nni = 1301 hu = 5.29e-02 -t = 3.00e+00 nst = 170 nfe = 0 nfi = 2737 nni = 1884 hu = 1.58e-01 +t = 3.00e+00 nst = 113 nfe = 0 nfi = 2082 nni = 1491 hu = 9.87e-02 -t = 4.00e+00 nst = 176 nfe = 0 nfi = 2843 nni = 1955 hu = 1.85e-01 +t = 4.00e+00 nst = 120 nfe = 0 nfi = 2202 nni = 1574 hu = 2.96e-01 c values at t = 4: @@ -259,11 +259,11 @@ Species 1 1.1928 1.20035 1.21636 1.23523 1.25154 1.25935 1.18657 1.19274 1.20602 1.22173 1.23523 1.24157 1.17904 1.18368 1.19389 1.20602 1.21636 1.2211 -1.17284 1.17613 1.18368 1.19274 1.20035 1.20368 +1.17284 1.17612 1.18368 1.19274 1.20035 1.20368 1.17032 1.17284 1.17904 1.18657 1.1928 1.19535 Species 2 -1.19538 1.20371 1.22113 1.24161 1.25938 1.26804 +1.19538 1.20371 1.22113 1.24161 1.25938 1.26803 1.19284 1.20038 1.21639 1.23526 1.25157 1.25938 1.1866 1.19277 1.20606 1.22177 1.23526 1.24161 1.17908 1.18371 1.19393 1.20606 1.21639 1.22113 @@ -272,97 +272,97 @@ Species 2 Species 3 1.19542 1.20374 1.22116 1.24164 1.25942 1.26807 -1.19287 1.20042 1.21642 1.2353 1.2516 1.25942 -1.18663 1.1928 1.20609 1.2218 1.2353 1.24164 +1.19287 1.20041 1.21642 1.23529 1.2516 1.25942 +1.18663 1.1928 1.20609 1.2218 1.23529 1.24164 1.17911 1.18374 1.19396 1.20609 1.21642 1.22116 -1.17291 1.17619 1.18374 1.1928 1.20042 1.20374 +1.17291 1.17619 1.18374 1.1928 1.20041 1.20374 1.17039 1.17291 1.17911 1.18663 1.19287 1.19542 Species 4 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 Species 5 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 Species 6 35860.6 36110.2 36632.4 37246.4 37779.5 38038.7 -35784.2 36010.4 36490.4 37056.3 37545.4 37779.5 +35784.2 36010.4 36490.4 37056.3 37545.3 37779.5 35597.2 35782 36180.5 36651.6 37056.3 37246.4 -35371.4 35510.3 35816.7 36180.5 36490.4 36632.4 -35185.4 35283.8 35510.3 35782 36010.4 36110.2 -35109.8 35185.4 35371.4 35597.2 35784.2 35860.6 +35371.4 35510.4 35816.7 36180.5 36490.4 36632.4 +35185.4 35283.8 35510.4 35782 36010.4 36110.2 +35109.7 35185.4 35371.4 35597.2 35784.2 35860.6 -t = 5.00e+00 nst = 181 nfe = 0 nfi = 2911 nni = 1998 hu = 2.46e-01 +t = 5.00e+00 nst = 123 nfe = 0 nfi = 2259 nni = 1614 hu = 5.34e-01 -t = 6.00e+00 nst = 184 nfe = 0 nfi = 2950 nni = 2022 hu = 3.05e-01 +t = 6.00e+00 nst = 124 nfe = 0 nfi = 2275 nni = 1625 hu = 9.98e-01 -t = 7.00e+00 nst = 186 nfe = 0 nfi = 2975 nni = 2037 hu = 4.87e-01 +t = 7.00e+00 nst = 125 nfe = 0 nfi = 2290 nni = 1635 hu = 1.72e+00 c values at t = 7: Species 1 -1.18854 1.19682 1.21415 1.23453 1.25221 1.26082 -1.186 1.19351 1.20944 1.22822 1.24444 1.25221 -1.1798 1.18593 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18708 1.19916 1.20944 1.21415 -1.16614 1.1694 1.17692 1.18593 1.19351 1.19682 -1.16363 1.16614 1.17231 1.1798 1.186 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26081 +1.186 1.1935 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.16939 1.17691 1.18593 1.1935 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 2 -1.18854 1.19683 1.21415 1.23453 1.25222 1.26082 -1.186 1.19351 1.20944 1.22822 1.24444 1.25222 -1.1798 1.18594 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18709 1.19916 1.20944 1.21415 -1.16614 1.1694 1.17692 1.18594 1.19351 1.19683 -1.16363 1.16614 1.17231 1.1798 1.186 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26081 +1.186 1.19351 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.1694 1.17691 1.18593 1.19351 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 3 -1.18854 1.19683 1.21416 1.23453 1.25222 1.26082 -1.18601 1.19351 1.20944 1.22822 1.24444 1.25222 -1.1798 1.18594 1.19916 1.21479 1.22822 1.23453 -1.17231 1.17692 1.18709 1.19916 1.20944 1.21416 -1.16614 1.1694 1.17692 1.18594 1.19351 1.19683 -1.16363 1.16614 1.17231 1.1798 1.18601 1.18854 +1.18853 1.19682 1.21415 1.23452 1.25221 1.26082 +1.186 1.19351 1.20943 1.22821 1.24444 1.25221 +1.17979 1.18593 1.19915 1.21478 1.22821 1.23452 +1.1723 1.17691 1.18708 1.19915 1.20943 1.21415 +1.16613 1.1694 1.17691 1.18593 1.19351 1.19682 +1.16362 1.16613 1.1723 1.17979 1.186 1.18853 Species 4 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 Species 5 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 Species 6 -35655.3 35903.6 36423.2 37034.1 37564.4 37822.3 -35579.3 35804.3 36281.9 36844.9 37331.5 37564.4 -35393.1 35577 35973.5 36442.3 36844.9 37034.1 -35168.4 35306.6 35611.5 35973.5 36281.9 36423.2 -34983.3 35081.1 35306.6 35577 35804.3 35903.6 -34907.9 34983.3 35168.4 35393.1 35579.3 35655.3 +35655.1 35903.4 36423 37033.9 37564.2 37822.1 +35579 35804.1 36281.7 36844.7 37331.3 37564.2 +35392.9 35576.8 35973.3 36442 36844.7 37033.9 +35168.2 35306.4 35611.2 35973.3 36281.7 36423 +34983 35081 35306.4 35576.8 35804.1 35903.4 +34907.7 34983 35168.2 35392.9 35579 35655.1 -t = 8.00e+00 nst = 188 nfe = 0 nfi = 3003 nni = 2055 hu = 7.64e-01 +t = 8.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 9.00e+00 nst = 189 nfe = 0 nfi = 3015 nni = 2062 hu = 7.64e-01 +t = 9.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 1.00e+01 nst = 190 nfe = 0 nfi = 3030 nni = 2072 hu = 1.57e+00 +t = 1.00e+01 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 c values at t = 10: @@ -391,51 +391,51 @@ Species 3 1.16347 1.16598 1.17215 1.17964 1.18585 1.18838 Species 4 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Species 5 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Species 6 -35650.6 35898.8 36418.3 37029.2 37559.5 37817.3 -35574.5 35799.5 36277.1 36840 37326.6 37559.5 -35388.4 35572.3 35968.7 36437.4 36840 37029.2 -35163.7 35301.9 35606.7 35968.7 36277.1 36418.3 -34978.6 35076.5 35301.9 35572.3 35799.5 35898.8 -34903.3 34978.6 35163.7 35388.4 35574.5 35650.6 +35650.5 35898.8 36418.3 37029.2 37559.5 37817.4 +35574.5 35799.5 36277 36840 37326.6 37559.5 +35388.3 35572.2 35968.7 36437.4 36840 37029.2 +35163.6 35301.9 35606.6 35968.7 36277 36418.3 +34978.5 35076.4 35301.9 35572.2 35799.5 35898.8 +34903.2 34978.5 35163.6 35388.3 35574.5 35650.5 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 143 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 147 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 190 + Number of steps = 126 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 3030 - Number of f-s (SPGMR) = 6097 - Number of f-s (TOTAL) = 6097 - Number of setups = 38 - Number of nonlinear iterations = 2072 - Number of linear iterations = 6097 - Number of preconditioner evaluations = 38 - Number of preconditioner solves = 8080 - Number of error test failures = 1 - Number of nonlinear conv. failures = 0 - Number of linear convergence failures = 182 - Average Krylov subspace dimension = 2.943 + Number of f-s (implicit) = 2305 + Number of f-s (SPGMR) = 5210 + Number of f-s (TOTAL) = 5210 + Number of setups = 80 + Number of nonlinear iterations = 1645 + Number of linear iterations = 5210 + Number of preconditioner evaluations = 80 + Number of preconditioner solves = 6806 + Number of error test failures = 0 + Number of nonlinear conv. failures = 29 + Number of linear convergence failures = 228 + Average Krylov subspace dimension = 3.167 ---------------------------------------------------------------------------- @@ -447,64 +447,64 @@ Preconditioner type is jpre = SUN_PREC_LEFT Gram-Schmidt method type is gstype = SUN_CLASSICAL_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.51e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.90e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1797 nni = 1229 hu = 3.43e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1015 nni = 717 hu = 1.01e-02 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2023 nni = 1385 hu = 1.25e-02 +t = 1.00e-01 nst = 65 nfe = 0 nfi = 1130 nni = 802 hu = 1.60e-02 -t = 1.00e+00 nst = 153 nfe = 0 nfi = 2474 nni = 1706 hu = 6.52e-02 +t = 1.00e+00 nst = 83 nfe = 0 nfi = 1472 nni = 1054 hu = 8.85e-02 -t = 2.00e+00 nst = 164 nfe = 0 nfi = 2647 nni = 1824 hu = 1.58e-01 +t = 2.00e+00 nst = 100 nfe = 0 nfi = 1815 nni = 1301 hu = 5.28e-02 -t = 3.00e+00 nst = 170 nfe = 0 nfi = 2737 nni = 1884 hu = 1.58e-01 +t = 3.00e+00 nst = 113 nfe = 0 nfi = 2082 nni = 1491 hu = 9.87e-02 -t = 4.00e+00 nst = 176 nfe = 0 nfi = 2843 nni = 1955 hu = 1.85e-01 +t = 4.00e+00 nst = 120 nfe = 0 nfi = 2202 nni = 1574 hu = 2.96e-01 -t = 5.00e+00 nst = 181 nfe = 0 nfi = 2911 nni = 1998 hu = 2.46e-01 +t = 5.00e+00 nst = 123 nfe = 0 nfi = 2259 nni = 1614 hu = 5.33e-01 -t = 6.00e+00 nst = 184 nfe = 0 nfi = 2950 nni = 2022 hu = 3.05e-01 +t = 6.00e+00 nst = 124 nfe = 0 nfi = 2275 nni = 1625 hu = 9.98e-01 -t = 7.00e+00 nst = 186 nfe = 0 nfi = 2975 nni = 2037 hu = 4.86e-01 +t = 7.00e+00 nst = 125 nfe = 0 nfi = 2290 nni = 1635 hu = 1.72e+00 -t = 8.00e+00 nst = 188 nfe = 0 nfi = 3003 nni = 2055 hu = 7.64e-01 +t = 8.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 9.00e+00 nst = 189 nfe = 0 nfi = 3015 nni = 2062 hu = 7.64e-01 +t = 9.00e+00 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 -t = 1.00e+01 nst = 190 nfe = 0 nfi = 3030 nni = 2072 hu = 1.57e+00 +t = 1.00e+01 nst = 126 nfe = 0 nfi = 2305 nni = 1645 hu = 2.85e+00 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 148 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 153 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 190 + Number of steps = 126 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 3030 - Number of f-s (SPGMR) = 6096 - Number of f-s (TOTAL) = 6096 - Number of setups = 38 - Number of nonlinear iterations = 2072 - Number of linear iterations = 6096 - Number of preconditioner evaluations = 38 - Number of preconditioner solves = 8079 - Number of error test failures = 1 - Number of nonlinear conv. failures = 0 - Number of linear convergence failures = 182 - Average Krylov subspace dimension = 2.942 + Number of f-s (implicit) = 2305 + Number of f-s (SPGMR) = 5210 + Number of f-s (TOTAL) = 5210 + Number of setups = 80 + Number of nonlinear iterations = 1645 + Number of linear iterations = 5210 + Number of preconditioner evaluations = 80 + Number of preconditioner solves = 6806 + Number of error test failures = 0 + Number of nonlinear conv. failures = 29 + Number of linear convergence failures = 228 + Average Krylov subspace dimension = 3.167 ---------------------------------------------------------------------------- @@ -516,64 +516,64 @@ Preconditioner type is jpre = SUN_PREC_RIGHT Gram-Schmidt method type is gstype = SUN_MODIFIED_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.49e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.86e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1799 nni = 1231 hu = 3.79e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1027 nni = 726 hu = 2.51e-03 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2028 nni = 1390 hu = 1.32e-02 +t = 1.00e-01 nst = 72 nfe = 0 nfi = 1303 nni = 928 hu = 6.16e-03 -t = 1.00e+00 nst = 164 nfe = 0 nfi = 2669 nni = 1844 hu = 4.98e-02 +t = 1.00e+00 nst = 124 nfe = 0 nfi = 2243 nni = 1598 hu = 2.32e-02 -t = 2.00e+00 nst = 213 nfe = 0 nfi = 3526 nni = 2444 hu = 2.37e-02 +t = 2.00e+00 nst = 150 nfe = 0 nfi = 2672 nni = 1897 hu = 6.35e-02 -t = 3.00e+00 nst = 248 nfe = 0 nfi = 4087 nni = 2830 hu = 3.53e-02 +t = 3.00e+00 nst = 178 nfe = 0 nfi = 3178 nni = 2253 hu = 4.48e-02 -t = 4.00e+00 nst = 272 nfe = 0 nfi = 4465 nni = 3088 hu = 3.22e-02 +t = 4.00e+00 nst = 197 nfe = 0 nfi = 3492 nni = 2470 hu = 8.26e-02 -t = 5.00e+00 nst = 299 nfe = 0 nfi = 4876 nni = 3363 hu = 3.94e-02 +t = 5.00e+00 nst = 209 nfe = 0 nfi = 3678 nni = 2596 hu = 9.29e-02 -t = 6.00e+00 nst = 316 nfe = 0 nfi = 5130 nni = 3532 hu = 6.86e-02 +t = 6.00e+00 nst = 221 nfe = 0 nfi = 3860 nni = 2718 hu = 1.35e-01 -t = 7.00e+00 nst = 329 nfe = 0 nfi = 5315 nni = 3652 hu = 8.22e-02 +t = 7.00e+00 nst = 233 nfe = 0 nfi = 4050 nni = 2845 hu = 5.14e-02 -t = 8.00e+00 nst = 339 nfe = 0 nfi = 5455 nni = 3742 hu = 1.18e-01 +t = 8.00e+00 nst = 243 nfe = 0 nfi = 4202 nni = 2945 hu = 1.77e-01 -t = 9.00e+00 nst = 345 nfe = 0 nfi = 5536 nni = 3793 hu = 2.11e-01 +t = 9.00e+00 nst = 250 nfe = 0 nfi = 4307 nni = 3012 hu = 2.19e-01 -t = 1.00e+01 nst = 349 nfe = 0 nfi = 5589 nni = 3826 hu = 2.80e-01 +t = 1.00e+01 nst = 256 nfe = 0 nfi = 4390 nni = 3065 hu = 1.33e-01 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 153 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 159 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 349 + Number of steps = 256 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 5589 - Number of f-s (SPGMR) = 12378 - Number of f-s (TOTAL) = 12378 - Number of setups = 244 - Number of nonlinear iterations = 3826 - Number of linear iterations = 12378 - Number of preconditioner evaluations = 244 - Number of preconditioner solves = 15957 + Number of f-s (implicit) = 4390 + Number of f-s (SPGMR) = 10822 + Number of f-s (TOTAL) = 10822 + Number of setups = 245 + Number of nonlinear iterations = 3065 + Number of linear iterations = 10822 + Number of preconditioner evaluations = 245 + Number of preconditioner solves = 13664 Number of error test failures = 0 - Number of nonlinear conv. failures = 113 - Number of linear convergence failures = 977 - Average Krylov subspace dimension = 3.235 + Number of nonlinear conv. failures = 127 + Number of linear convergence failures = 916 + Average Krylov subspace dimension = 3.531 ---------------------------------------------------------------------------- @@ -585,64 +585,64 @@ Preconditioner type is jpre = SUN_PREC_RIGHT Gram-Schmidt method type is gstype = SUN_CLASSICAL_GS -t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-08 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 9.89e-08 +t = 1.00e-07 nst = 5 nfe = 0 nfi = 75 nni = 47 hu = 1.84e-07 -t = 1.00e-06 nst = 8 nfe = 0 nfi = 120 nni = 77 hu = 4.79e-07 +t = 1.00e-06 nst = 7 nfe = 0 nfi = 106 nni = 68 hu = 1.10e-06 -t = 1.00e-05 nst = 27 nfe = 0 nfi = 407 nni = 269 hu = 4.79e-07 +t = 1.00e-05 nst = 15 nfe = 0 nfi = 226 nni = 148 hu = 1.10e-06 -t = 1.00e-04 nst = 106 nfe = 0 nfi = 1688 nni = 1155 hu = 1.70e-05 +t = 1.00e-04 nst = 54 nfe = 0 nfi = 928 nni = 655 hu = 3.03e-05 -t = 1.00e-03 nst = 110 nfe = 0 nfi = 1750 nni = 1197 hu = 1.49e-03 +t = 1.00e-03 nst = 57 nfe = 0 nfi = 975 nni = 687 hu = 2.86e-03 -t = 1.00e-02 nst = 113 nfe = 0 nfi = 1799 nni = 1231 hu = 3.79e-03 +t = 1.00e-02 nst = 59 nfe = 0 nfi = 1027 nni = 726 hu = 2.51e-03 -t = 1.00e-01 nst = 127 nfe = 0 nfi = 2028 nni = 1390 hu = 1.32e-02 +t = 1.00e-01 nst = 72 nfe = 0 nfi = 1303 nni = 928 hu = 6.16e-03 -t = 1.00e+00 nst = 164 nfe = 0 nfi = 2669 nni = 1844 hu = 4.98e-02 +t = 1.00e+00 nst = 124 nfe = 0 nfi = 2243 nni = 1598 hu = 2.32e-02 -t = 2.00e+00 nst = 213 nfe = 0 nfi = 3526 nni = 2444 hu = 2.37e-02 +t = 2.00e+00 nst = 150 nfe = 0 nfi = 2672 nni = 1897 hu = 6.35e-02 -t = 3.00e+00 nst = 248 nfe = 0 nfi = 4087 nni = 2830 hu = 3.53e-02 +t = 3.00e+00 nst = 178 nfe = 0 nfi = 3178 nni = 2253 hu = 4.48e-02 -t = 4.00e+00 nst = 272 nfe = 0 nfi = 4465 nni = 3088 hu = 3.22e-02 +t = 4.00e+00 nst = 197 nfe = 0 nfi = 3492 nni = 2470 hu = 8.26e-02 -t = 5.00e+00 nst = 299 nfe = 0 nfi = 4876 nni = 3363 hu = 3.94e-02 +t = 5.00e+00 nst = 209 nfe = 0 nfi = 3678 nni = 2596 hu = 9.29e-02 -t = 6.00e+00 nst = 316 nfe = 0 nfi = 5130 nni = 3532 hu = 6.86e-02 +t = 6.00e+00 nst = 221 nfe = 0 nfi = 3860 nni = 2718 hu = 1.35e-01 -t = 7.00e+00 nst = 329 nfe = 0 nfi = 5315 nni = 3652 hu = 8.22e-02 +t = 7.00e+00 nst = 233 nfe = 0 nfi = 4050 nni = 2845 hu = 5.15e-02 -t = 8.00e+00 nst = 339 nfe = 0 nfi = 5455 nni = 3742 hu = 1.19e-01 +t = 8.00e+00 nst = 243 nfe = 0 nfi = 4202 nni = 2945 hu = 1.77e-01 -t = 9.00e+00 nst = 345 nfe = 0 nfi = 5536 nni = 3793 hu = 2.11e-01 +t = 9.00e+00 nst = 250 nfe = 0 nfi = 4307 nni = 3012 hu = 2.19e-01 -t = 1.00e+01 nst = 349 nfe = 0 nfi = 5589 nni = 3826 hu = 2.80e-01 +t = 1.00e+01 nst = 256 nfe = 0 nfi = 4390 nni = 3065 hu = 1.33e-01 Final statistics for this run: - ARKStep real workspace length = 3558 - ARKStep integer workspace length = 158 + ARKStep real workspace length = 3790 + ARKStep integer workspace length = 165 ARKLS real workspace length = 2647 ARKLS integer workspace length = 42 - Number of steps = 349 + Number of steps = 256 Number of f-s (explicit) = 0 - Number of f-s (implicit) = 5589 - Number of f-s (SPGMR) = 12378 - Number of f-s (TOTAL) = 12378 - Number of setups = 244 - Number of nonlinear iterations = 3826 - Number of linear iterations = 12378 - Number of preconditioner evaluations = 244 - Number of preconditioner solves = 15957 + Number of f-s (implicit) = 4390 + Number of f-s (SPGMR) = 10824 + Number of f-s (TOTAL) = 10824 + Number of setups = 245 + Number of nonlinear iterations = 3065 + Number of linear iterations = 10824 + Number of preconditioner evaluations = 245 + Number of preconditioner solves = 13666 Number of error test failures = 0 - Number of nonlinear conv. failures = 113 - Number of linear convergence failures = 976 - Average Krylov subspace dimension = 3.235 + Number of nonlinear conv. failures = 127 + Number of linear convergence failures = 916 + Average Krylov subspace dimension = 3.531 ---------------------------------------------------------------------------- diff --git a/examples/arkode/C_serial/ark_analytic.out b/examples/arkode/C_serial/ark_analytic.out index 83a4c0f4d3..6c502d1d6a 100644 --- a/examples/arkode/C_serial/ark_analytic.out +++ b/examples/arkode/C_serial/ark_analytic.out @@ -7,10 +7,10 @@ Analytical ODE test problem: t u --------------------- 1.000000 0.785398 - 2.000000 1.107149 + 2.000000 1.107148 3.000000 1.249046 4.000000 1.325818 - 5.000000 1.373401 + 5.000000 1.373400 6.000000 1.405648 7.000000 1.428899 8.000000 1.446441 @@ -19,12 +19,12 @@ Analytical ODE test problem: --------------------- Final Solver Statistics: - Internal solver steps = 559 (attempted = 559) - Total RHS evals: Fe = 0, Fi = 5593 - Total linear solver setups = 25 + Internal solver steps = 94 (attempted = 94) + Total RHS evals: Fe = 0, Fi = 943 + Total linear solver setups = 21 Total RHS evals for setting up the linear system = 0 - Total number of Jacobian evaluations = 5 - Total number of Newton iterations = 2795 + Total number of Jacobian evaluations = 2 + Total number of Newton iterations = 470 Total number of linear solver convergence failures = 0 Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_analytic_mels.out b/examples/arkode/C_serial/ark_analytic_mels.out index dbe45fe83d..190e03c071 100644 --- a/examples/arkode/C_serial/ark_analytic_mels.out +++ b/examples/arkode/C_serial/ark_analytic_mels.out @@ -7,10 +7,10 @@ Analytical ODE test problem: t u --------------------- 1.000000 0.785398 - 2.000000 1.107149 + 2.000000 1.107148 3.000000 1.249046 4.000000 1.325818 - 5.000000 1.373401 + 5.000000 1.373400 6.000000 1.405648 7.000000 1.428899 8.000000 1.446441 @@ -19,12 +19,12 @@ Analytical ODE test problem: --------------------- Final Solver Statistics: - Internal solver steps = 559 (attempted = 559) - Total RHS evals: Fe = 0, Fi = 5593 + Internal solver steps = 94 (attempted = 94) + Total RHS evals: Fe = 0, Fi = 943 Total linear solver setups = 0 Total RHS evals for setting up the linear system = 0 Total number of Jacobian evaluations = 0 - Total number of Newton iterations = 2795 + Total number of Newton iterations = 470 Total number of linear solver convergence failures = 0 Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_analytic_nonlin.out b/examples/arkode/C_serial/ark_analytic_nonlin.out index 902ace198d..91ee81bc9a 100644 --- a/examples/arkode/C_serial/ark_analytic_nonlin.out +++ b/examples/arkode/C_serial/ark_analytic_nonlin.out @@ -6,10 +6,10 @@ Analytical ODE test problem: t u --------------------- 1.000000 0.916291 - 2.000000 1.609437 + 2.000000 1.609438 3.000000 2.140066 4.000000 2.564949 - 5.000000 2.917770 + 5.000000 2.917771 6.000000 3.218876 7.000000 3.481240 8.000000 3.713572 @@ -18,15 +18,15 @@ Analytical ODE test problem: --------------------- Final Statistics: -Current time = 10.12157090914652 -Steps = 82 -Step attempts = 83 +Current time = 10.12743729989852 +Steps = 62 +Step attempts = 62 Stability limited steps = 0 -Accuracy limited steps = 83 -Error test fails = 1 +Accuracy limited steps = 62 +Error test fails = 0 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 +Last step size = 0.553529760219145 +Current step size = 0.553529760219145 +RHS fn evals = 251 diff --git a/examples/arkode/C_serial/ark_brusselator.out b/examples/arkode/C_serial/ark_brusselator.out index dec501df56..05882e2bd4 100644 --- a/examples/arkode/C_serial/ark_brusselator.out +++ b/examples/arkode/C_serial/ark_brusselator.out @@ -7,25 +7,25 @@ Brusselator ODE test problem: t u v w ------------------------------------------- 0.000000 1.200000 3.100000 3.000000 - 1.000000 1.103849 3.013164 3.499981 - 2.000000 0.687997 3.521384 3.499988 - 3.000000 0.409467 4.277888 3.499993 - 4.000000 0.367889 4.942005 3.499994 - 5.000000 0.413860 5.510615 3.499993 - 6.000000 0.589251 5.855655 3.499990 - 7.000000 4.756472 0.735414 3.499917 - 8.000000 1.813403 1.575799 3.499968 - 9.000000 0.527886 2.807385 3.499991 - 10.000000 0.305598 3.657381 3.499995 + 1.000000 1.103878 3.013131 3.499981 + 2.000000 0.687989 3.521377 3.499988 + 3.000000 0.409465 4.277893 3.499993 + 4.000000 0.367902 4.941998 3.499994 + 5.000000 0.413859 5.510619 3.499993 + 6.000000 0.589265 5.855640 3.499990 + 7.000000 4.756457 0.735481 3.499917 + 8.000000 1.813436 1.575779 3.499968 + 9.000000 0.527882 2.807389 3.499991 + 10.000000 0.305603 3.657381 3.499995 ------------------------------------------- Final Solver Statistics: - Internal solver steps = 252 (attempted = 262) - Total RHS evals: Fe = 0, Fi = 1910 - Total linear solver setups = 111 + Internal solver steps = 151 (attempted = 167) + Total RHS evals: Fe = 0, Fi = 1443 + Total linear solver setups = 124 Total RHS evals for setting up the linear system = 0 - Total number of Jacobian evaluations = 71 - Total number of Newton iterations = 3286 - Total number of nonlinear solver convergence failures = 70 - Total number of error test failures = 9 - Total number of failed steps from solver failure = 1 + Total number of Jacobian evaluations = 74 + Total number of Newton iterations = 2313 + Total number of nonlinear solver convergence failures = 73 + Total number of error test failures = 6 + Total number of failed steps from solver failure = 10 diff --git a/examples/arkode/C_serial/ark_brusselator1D.out b/examples/arkode/C_serial/ark_brusselator1D.out index d430e862df..551ede9364 100644 --- a/examples/arkode/C_serial/ark_brusselator1D.out +++ b/examples/arkode/C_serial/ark_brusselator1D.out @@ -12,110 +12,110 @@ 0.300000 0.695306 3.334633 1.999986 0.400000 0.706918 3.311313 1.999986 0.500000 0.719185 3.286601 1.999986 - 0.600000 0.732137 3.260442 1.999986 - 0.700000 0.745798 3.232787 1.999985 - 0.800000 0.760185 3.203596 1.999985 - 0.900000 0.775302 3.172839 1.999985 + 0.600000 0.732138 3.260442 1.999986 + 0.700000 0.745798 3.232788 1.999985 + 0.800000 0.760187 3.203594 1.999985 + 0.900000 0.775303 3.172838 1.999985 1.000000 0.791135 3.140510 1.999984 - 1.100000 0.807648 3.106624 1.999984 - 1.200000 0.824771 3.071233 1.999984 - 1.300000 0.842402 3.034426 1.999983 - 1.400000 0.860384 2.996350 1.999983 - 1.500000 0.878514 2.957207 1.999983 - 1.600000 0.896525 2.917266 1.999982 - 1.700000 0.914089 2.876873 1.999982 - 1.800000 0.930823 2.836438 1.999982 - 1.900000 0.946292 2.796446 1.999982 - 2.000000 0.960034 2.757430 1.999981 - 2.100000 0.971577 2.719961 1.999981 - 2.200000 0.980476 2.684622 1.999981 - 2.300000 0.986338 2.651980 1.999981 - 2.400000 0.988853 2.622559 1.999981 - 2.500000 0.987816 2.596818 1.999981 - 2.600000 0.983141 2.575127 1.999981 - 2.700000 0.974859 2.557765 1.999981 - 2.800000 0.963115 2.544902 1.999981 - 2.900000 0.948155 2.536610 1.999981 - 3.000000 0.930300 2.532867 1.999982 - 3.100000 0.909931 2.533566 1.999982 - 3.200000 0.887464 2.538528 1.999983 - 3.300000 0.863335 2.547514 1.999983 - 3.400000 0.837978 2.560240 1.999983 - 3.500000 0.811818 2.576391 1.999984 - 3.600000 0.785255 2.595624 1.999984 - 3.700000 0.758658 2.617586 1.999985 - 3.800000 0.732363 2.641921 1.999986 - 3.900000 0.706662 2.668274 1.999986 - 4.000000 0.681809 2.696300 1.999986 - 4.100000 0.658011 2.725670 1.999987 - 4.200000 0.635435 2.756075 1.999987 - 4.300000 0.614204 2.787228 1.999988 + 1.100000 0.807651 3.106620 1.999984 + 1.200000 0.824772 3.071232 1.999984 + 1.300000 0.842404 3.034423 1.999983 + 1.400000 0.860386 2.996347 1.999983 + 1.500000 0.878514 2.957205 1.999983 + 1.600000 0.896528 2.917260 1.999982 + 1.700000 0.914089 2.876871 1.999982 + 1.800000 0.930823 2.836437 1.999982 + 1.900000 0.946293 2.796444 1.999982 + 2.000000 0.960034 2.757429 1.999981 + 2.100000 0.971577 2.719960 1.999981 + 2.200000 0.980475 2.684622 1.999981 + 2.300000 0.986336 2.651980 1.999981 + 2.400000 0.988853 2.622558 1.999981 + 2.500000 0.987814 2.596819 1.999981 + 2.600000 0.983140 2.575127 1.999981 + 2.700000 0.974856 2.557766 1.999981 + 2.800000 0.963114 2.544903 1.999981 + 2.900000 0.948154 2.536611 1.999981 + 3.000000 0.930298 2.532870 1.999982 + 3.100000 0.909929 2.533567 1.999982 + 3.200000 0.887463 2.538530 1.999983 + 3.300000 0.863334 2.547515 1.999983 + 3.400000 0.837978 2.560242 1.999983 + 3.500000 0.811818 2.576392 1.999984 + 3.600000 0.785254 2.595625 1.999984 + 3.700000 0.758658 2.617588 1.999985 + 3.800000 0.732362 2.641923 1.999986 + 3.900000 0.706662 2.668275 1.999986 + 4.000000 0.681808 2.696301 1.999986 + 4.100000 0.658011 2.725672 1.999987 + 4.200000 0.635435 2.756076 1.999987 + 4.300000 0.614204 2.787229 1.999988 4.400000 0.594404 2.818869 1.999988 - 4.500000 0.576082 2.850764 1.999989 - 4.600000 0.559254 2.882710 1.999989 - 4.700000 0.543909 2.914529 1.999989 - 4.800000 0.530011 2.946071 1.999990 + 4.500000 0.576082 2.850766 1.999989 + 4.600000 0.559254 2.882711 1.999989 + 4.700000 0.543909 2.914530 1.999989 + 4.800000 0.530011 2.946072 1.999990 4.900000 0.517506 2.977210 1.999990 - 5.000000 0.506326 3.007843 1.999990 - 5.100000 0.496393 3.037889 1.999990 - 5.200000 0.487625 3.067283 1.999990 - 5.300000 0.479935 3.095976 1.999991 - 5.400000 0.473237 3.123932 1.999991 - 5.500000 0.467445 3.151126 1.999991 - 5.600000 0.462480 3.177540 1.999991 - 5.700000 0.458264 3.203165 1.999991 - 5.800000 0.454726 3.227997 1.999991 - 5.900000 0.451799 3.252035 1.999991 - 6.000000 0.449425 3.275283 1.999991 + 5.000000 0.506325 3.007844 1.999990 + 5.100000 0.496393 3.037890 1.999990 + 5.200000 0.487625 3.067284 1.999990 + 5.300000 0.479935 3.095977 1.999991 + 5.400000 0.473237 3.123933 1.999991 + 5.500000 0.467445 3.151127 1.999991 + 5.600000 0.462480 3.177541 1.999991 + 5.700000 0.458264 3.203166 1.999991 + 5.800000 0.454725 3.227998 1.999991 + 5.900000 0.451799 3.252036 1.999991 + 6.000000 0.449425 3.275284 1.999991 6.100000 0.447546 3.297745 1.999991 - 6.200000 0.446115 3.319428 1.999991 + 6.200000 0.446115 3.319429 1.999991 6.300000 0.445085 3.340341 1.999991 - 6.400000 0.444419 3.360492 1.999991 + 6.400000 0.444418 3.360492 1.999991 6.500000 0.444079 3.379891 1.999991 6.600000 0.444034 3.398547 1.999991 - 6.700000 0.444257 3.416470 1.999991 - 6.800000 0.444722 3.433669 1.999991 - 6.900000 0.445409 3.450154 1.999991 + 6.700000 0.444257 3.416471 1.999991 + 6.800000 0.444722 3.433670 1.999991 + 6.900000 0.445408 3.450155 1.999991 7.000000 0.446297 3.465935 1.999991 - 7.100000 0.447370 3.481018 1.999991 + 7.100000 0.447370 3.481019 1.999991 7.200000 0.448614 3.495415 1.999991 - 7.300000 0.450016 3.509131 1.999991 - 7.400000 0.451564 3.522176 1.999991 + 7.300000 0.450016 3.509132 1.999991 + 7.400000 0.451564 3.522177 1.999991 7.500000 0.453249 3.534557 1.999991 - 7.600000 0.455064 3.546280 1.999991 + 7.600000 0.455064 3.546281 1.999991 7.700000 0.457000 3.557353 1.999991 - 7.800000 0.459052 3.567781 1.999991 - 7.900000 0.461215 3.577572 1.999991 + 7.800000 0.459052 3.567782 1.999991 + 7.900000 0.461216 3.577572 1.999991 8.000000 0.463486 3.586729 1.999991 8.100000 0.465860 3.595257 1.999991 8.200000 0.468335 3.603162 1.999991 8.300000 0.470909 3.610447 1.999991 8.400000 0.473582 3.617116 1.999991 - 8.500000 0.476352 3.623172 1.999991 + 8.500000 0.476352 3.623171 1.999991 8.600000 0.479220 3.628616 1.999991 8.700000 0.482186 3.633451 1.999991 - 8.800000 0.485250 3.637679 1.999990 + 8.800000 0.485251 3.637679 1.999990 8.900000 0.488416 3.641299 1.999990 - 9.000000 0.491684 3.644312 1.999990 - 9.100000 0.495058 3.646716 1.999990 - 9.200000 0.498539 3.648510 1.999990 - 9.300000 0.502133 3.649691 1.999990 - 9.400000 0.505843 3.650257 1.999990 - 9.500000 0.509674 3.650202 1.999990 - 9.600000 0.513632 3.649522 1.999990 - 9.700000 0.517722 3.648210 1.999990 + 9.000000 0.491684 3.644311 1.999990 + 9.100000 0.495058 3.646715 1.999990 + 9.200000 0.498540 3.648509 1.999990 + 9.300000 0.502134 3.649691 1.999990 + 9.400000 0.505844 3.650256 1.999990 + 9.500000 0.509675 3.650202 1.999990 + 9.600000 0.513632 3.649521 1.999990 + 9.700000 0.517722 3.648209 1.999990 9.800000 0.521951 3.646257 1.999990 - 9.900000 0.526326 3.643656 1.999990 + 9.900000 0.526327 3.643656 1.999990 10.000000 0.530857 3.640396 1.999990 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 99 (attempted = 99) - Total RHS evals: Fe = 0, Fi = 1186 - Total linear solver setups = 35 + Internal solver steps = 66 (attempted = 67) + Total RHS evals: Fe = 0, Fi = 887 + Total linear solver setups = 33 Total RHS evals for setting up the linear system = 0 - Total number of Jacobian evaluations = 14 - Total number of Newton iterations = 1196 - Total number of nonlinear solver convergence failures = 13 + Total number of Jacobian evaluations = 16 + Total number of Newton iterations = 899 + Total number of nonlinear solver convergence failures = 15 Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_brusselator1D_FEM_slu.out b/examples/arkode/C_serial/ark_brusselator1D_FEM_slu.out index 8cae2ef2fe..b2f0381093 100644 --- a/examples/arkode/C_serial/ark_brusselator1D_FEM_slu.out +++ b/examples/arkode/C_serial/ark_brusselator1D_FEM_slu.out @@ -10,114 +10,114 @@ ---------------------------------------------- 0.100000 0.637854 3.356025 1.999989 0.200000 0.643035 3.345751 1.999989 - 0.300000 0.648532 3.334867 1.999989 - 0.400000 0.654362 3.323350 1.999989 - 0.500000 0.660542 3.311172 1.999988 - 0.600000 0.667093 3.298309 1.999988 - 0.700000 0.674031 3.284739 1.999989 + 0.300000 0.648532 3.334868 1.999989 + 0.400000 0.654362 3.323350 1.999988 + 0.500000 0.660543 3.311172 1.999988 + 0.600000 0.667094 3.298309 1.999988 + 0.700000 0.674031 3.284739 1.999988 0.800000 0.681370 3.270442 1.999988 - 0.900000 0.689121 3.255404 1.999988 - 1.000000 0.697284 3.239620 1.999988 - 1.100000 0.705853 3.223093 1.999987 - 1.200000 0.714805 3.205842 1.999987 - 1.300000 0.724098 3.187903 1.999987 - 1.400000 0.733670 3.169332 1.999987 - 1.500000 0.743428 3.150212 1.999987 - 1.600000 0.753248 3.130655 1.999987 - 1.700000 0.762974 3.110801 1.999986 - 1.800000 0.772411 3.090829 1.999986 - 1.900000 0.781336 3.070946 1.999986 - 2.000000 0.789499 3.051390 1.999986 - 2.100000 0.796638 3.032422 1.999986 - 2.200000 0.802489 3.014319 1.999986 - 2.300000 0.806808 2.997360 1.999986 - 2.400000 0.809386 2.981819 1.999986 - 2.500000 0.810059 2.967951 1.999986 - 2.600000 0.808728 2.955979 1.999986 - 2.700000 0.805361 2.946086 1.999986 - 2.800000 0.799988 2.938411 1.999986 - 2.900000 0.792711 2.933041 1.999986 - 3.000000 0.783681 2.930010 1.999986 - 3.100000 0.773096 2.929307 1.999986 - 3.200000 0.761187 2.930874 1.999986 - 3.300000 0.748207 2.934613 1.999987 + 0.900000 0.689123 3.255402 1.999988 + 1.000000 0.697286 3.239618 1.999988 + 1.100000 0.705855 3.223091 1.999988 + 1.200000 0.714809 3.205838 1.999987 + 1.300000 0.724100 3.187901 1.999987 + 1.400000 0.733673 3.169328 1.999987 + 1.500000 0.743433 3.150206 1.999987 + 1.600000 0.753250 3.130652 1.999987 + 1.700000 0.762975 3.110798 1.999986 + 1.800000 0.772413 3.090825 1.999986 + 1.900000 0.781338 3.070943 1.999986 + 2.000000 0.789502 3.051386 1.999986 + 2.100000 0.796640 3.032419 1.999986 + 2.200000 0.802491 3.014315 1.999986 + 2.300000 0.806810 2.997356 1.999986 + 2.400000 0.809388 2.981816 1.999986 + 2.500000 0.810060 2.967948 1.999986 + 2.600000 0.808729 2.955976 1.999986 + 2.700000 0.805361 2.946083 1.999986 + 2.800000 0.799988 2.938409 1.999986 + 2.900000 0.792711 2.933038 1.999986 + 3.000000 0.783680 2.930008 1.999986 + 3.100000 0.773094 2.929308 1.999986 + 3.200000 0.761186 2.930875 1.999986 + 3.300000 0.748207 2.934611 1.999987 3.400000 0.734416 2.940394 1.999987 - 3.500000 0.720074 2.948062 1.999987 - 3.600000 0.705429 2.957444 1.999987 - 3.700000 0.690715 2.968354 1.999988 - 3.800000 0.676141 2.980600 1.999988 - 3.900000 0.661892 2.993989 1.999988 - 4.000000 0.648123 3.008331 1.999989 - 4.100000 0.634962 3.023445 1.999989 + 3.500000 0.720073 2.948061 1.999987 + 3.600000 0.705429 2.957443 1.999987 + 3.700000 0.690715 2.968353 1.999988 + 3.800000 0.676140 2.980599 1.999988 + 3.900000 0.661892 2.993988 1.999988 + 4.000000 0.648121 3.008331 1.999989 + 4.100000 0.634962 3.023444 1.999989 4.200000 0.622506 3.039157 1.999989 - 4.300000 0.610828 3.055308 1.999989 + 4.300000 0.610827 3.055308 1.999989 4.400000 0.599972 3.071751 1.999989 - 4.500000 0.589962 3.088356 1.999990 - 4.600000 0.580801 3.105007 1.999990 - 4.700000 0.572477 3.121602 1.999990 - 4.800000 0.564964 3.138058 1.999990 - 4.900000 0.558227 3.154303 1.999990 - 5.000000 0.552224 3.170277 1.999990 + 4.500000 0.589960 3.088357 1.999990 + 4.600000 0.580801 3.105006 1.999990 + 4.700000 0.572476 3.121603 1.999990 + 4.800000 0.564963 3.138059 1.999990 + 4.900000 0.558226 3.154303 1.999990 + 5.000000 0.552223 3.170279 1.999990 5.100000 0.546907 3.185935 1.999991 - 5.200000 0.542229 3.201239 1.999991 - 5.300000 0.538138 3.216162 1.999991 - 5.400000 0.534586 3.230682 1.999991 - 5.500000 0.531525 3.244788 1.999991 - 5.600000 0.528910 3.258468 1.999991 - 5.700000 0.526699 3.271719 1.999991 - 5.800000 0.524852 3.284539 1.999991 - 5.900000 0.523334 3.296928 1.999991 - 6.000000 0.522112 3.308889 1.999991 - 6.100000 0.521154 3.320426 1.999991 - 6.200000 0.520436 3.331545 1.999991 - 6.300000 0.519932 3.342250 1.999991 - 6.400000 0.519621 3.352549 1.999991 - 6.500000 0.519484 3.362446 1.999991 - 6.600000 0.519503 3.371949 1.999991 - 6.700000 0.519664 3.381064 1.999991 - 6.800000 0.519953 3.389797 1.999991 - 6.900000 0.520358 3.398153 1.999991 - 7.000000 0.520869 3.406139 1.999991 - 7.100000 0.521477 3.413759 1.999991 - 7.200000 0.522174 3.421020 1.999991 - 7.300000 0.522953 3.427926 1.999991 - 7.400000 0.523807 3.434482 1.999991 - 7.500000 0.524732 3.440692 1.999991 - 7.600000 0.525723 3.446560 1.999991 - 7.700000 0.526775 3.452091 1.999991 - 7.800000 0.527887 3.457288 1.999991 - 7.900000 0.529055 3.462154 1.999991 - 8.000000 0.530276 3.466692 1.999991 - 8.100000 0.531549 3.470906 1.999991 - 8.200000 0.532872 3.474798 1.999991 - 8.300000 0.534244 3.478370 1.999991 + 5.200000 0.542228 3.201240 1.999991 + 5.300000 0.538137 3.216163 1.999991 + 5.400000 0.534585 3.230684 1.999991 + 5.500000 0.531524 3.244789 1.999991 + 5.600000 0.528909 3.258469 1.999991 + 5.700000 0.526698 3.271720 1.999991 + 5.800000 0.524852 3.284540 1.999991 + 5.900000 0.523334 3.296929 1.999991 + 6.000000 0.522111 3.308890 1.999991 + 6.100000 0.521152 3.320427 1.999991 + 6.200000 0.520433 3.331546 1.999991 + 6.300000 0.519931 3.342252 1.999991 + 6.400000 0.519621 3.352550 1.999991 + 6.500000 0.519483 3.362448 1.999991 + 6.600000 0.519502 3.371951 1.999991 + 6.700000 0.519663 3.381066 1.999991 + 6.800000 0.519953 3.389798 1.999991 + 6.900000 0.520358 3.398154 1.999991 + 7.000000 0.520869 3.406140 1.999991 + 7.100000 0.521477 3.413761 1.999991 + 7.200000 0.522174 3.421021 1.999991 + 7.300000 0.522953 3.427927 1.999991 + 7.400000 0.523807 3.434483 1.999991 + 7.500000 0.524731 3.440693 1.999991 + 7.600000 0.525722 3.446561 1.999991 + 7.700000 0.526776 3.452092 1.999991 + 7.800000 0.527887 3.457289 1.999991 + 7.900000 0.529055 3.462155 1.999991 + 8.000000 0.530276 3.466693 1.999991 + 8.100000 0.531549 3.470907 1.999991 + 8.200000 0.532872 3.474799 1.999991 + 8.300000 0.534244 3.478371 1.999991 8.400000 0.535665 3.481625 1.999991 8.500000 0.537133 3.484564 1.999991 - 8.600000 0.538649 3.487188 1.999991 + 8.600000 0.538649 3.487189 1.999991 8.700000 0.540213 3.489499 1.999991 8.800000 0.541825 3.491498 1.999991 8.900000 0.543486 3.493185 1.999991 9.000000 0.545196 3.494560 1.999991 - 9.100000 0.546957 3.495624 1.999991 - 9.200000 0.548771 3.496375 1.999991 - 9.300000 0.550638 3.496814 1.999990 - 9.400000 0.552561 3.496938 1.999990 - 9.500000 0.554543 3.496746 1.999990 + 9.100000 0.546958 3.495624 1.999991 + 9.200000 0.548771 3.496376 1.999991 + 9.300000 0.550639 3.496814 1.999990 + 9.400000 0.552562 3.496938 1.999990 + 9.500000 0.554543 3.496747 1.999990 9.600000 0.556585 3.496236 1.999990 - 9.700000 0.558691 3.495404 1.999990 - 9.800000 0.560864 3.494248 1.999990 + 9.700000 0.558692 3.495404 1.999990 + 9.800000 0.560865 3.494247 1.999990 9.900000 0.563108 3.492763 1.999990 10.000000 0.565426 3.490945 1.999990 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 95 (attempted = 95) - Total RHS evals: Fe = 0, Fi = 1111 + Internal solver steps = 57 (attempted = 59) + Total RHS evals: Fe = 0, Fi = 769 Total mass matrix setups = 1 - Total mass matrix solves = 193 - Total mass times evals = 1688 - Total linear solver setups = 31 - Total number of Jacobian evaluations = 11 - Total number of Newton iterations = 1118 - Total number of nonlinear solver convergence failures = 10 + Total mass matrix solves = 117 + Total mass times evals = 1135 + Total linear solver setups = 39 + Total number of Jacobian evaluations = 20 + Total number of Newton iterations = 785 + Total number of nonlinear solver convergence failures = 19 Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_brusselator1D_klu.out b/examples/arkode/C_serial/ark_brusselator1D_klu.out index a4e1828ee9..08362ace06 100644 --- a/examples/arkode/C_serial/ark_brusselator1D_klu.out +++ b/examples/arkode/C_serial/ark_brusselator1D_klu.out @@ -8,22 +8,22 @@ t ||u||_rms ||v||_rms ||w||_rms ---------------------------------------------- 1.000000 0.791135 3.140510 1.999984 - 2.000000 0.960034 2.757430 1.999981 - 3.000000 0.930300 2.532867 1.999982 - 4.000000 0.681809 2.696300 1.999986 - 5.000000 0.506326 3.007843 1.999990 - 6.000000 0.449425 3.275283 1.999991 + 2.000000 0.960034 2.757429 1.999981 + 3.000000 0.930298 2.532870 1.999982 + 4.000000 0.681808 2.696301 1.999986 + 5.000000 0.506325 3.007844 1.999990 + 6.000000 0.449425 3.275284 1.999991 7.000000 0.446297 3.465935 1.999991 8.000000 0.463486 3.586729 1.999991 - 9.000000 0.491684 3.644312 1.999990 + 9.000000 0.491684 3.644311 1.999990 10.000000 0.530857 3.640396 1.999990 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 99 (attempted = 99) - Total RHS evals: Fe = 0, Fi = 1186 - Total linear solver setups = 35 - Total number of Jacobian evaluations = 14 - Total number of nonlinear iterations = 1196 - Total number of nonlinear solver convergence failures = 13 + Internal solver steps = 66 (attempted = 67) + Total RHS evals: Fe = 0, Fi = 887 + Total linear solver setups = 33 + Total number of Jacobian evaluations = 16 + Total number of nonlinear iterations = 899 + Total number of nonlinear solver convergence failures = 15 Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_brusselator_fp.out b/examples/arkode/C_serial/ark_brusselator_fp.out index 76e1aa7768..66d08f1734 100644 --- a/examples/arkode/C_serial/ark_brusselator_fp.out +++ b/examples/arkode/C_serial/ark_brusselator_fp.out @@ -6,22 +6,22 @@ Brusselator ODE test problem, fixed-point solver: t u v w ---------------------------------------------- - 1.000000 1.897255 1.274939 2.997155 - 2.000000 0.346125 2.366448 2.999481 - 3.000000 0.147442 2.862061 2.999781 - 4.000000 0.140733 3.226731 2.999780 - 5.000000 0.142659 3.583206 2.999789 - 6.000000 0.145095 3.936910 2.999782 - 7.000000 0.147720 4.287893 2.999780 - 8.000000 0.150542 4.635957 2.999775 - 9.000000 0.153590 4.980863 2.999768 - 10.000000 0.156901 5.322330 2.999763 + 1.000000 1.897255 1.274939 2.997143 + 2.000000 0.346125 2.366448 2.999487 + 3.000000 0.147442 2.862060 2.999779 + 4.000000 0.140733 3.226731 2.999813 + 5.000000 0.142659 3.583206 2.999839 + 6.000000 0.145095 3.936910 2.999785 + 7.000000 0.147720 4.287893 2.999764 + 8.000000 0.150542 4.635957 2.999762 + 9.000000 0.153590 4.980863 2.999787 + 10.000000 0.156901 5.322330 2.999779 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 729 (attempted = 730) - Total RHS evals: Fe = 4382, Fi = 15142 - Total number of fixed-point iterations = 14410 + Internal solver steps = 315 (attempted = 315) + Total RHS evals: Fe = 2208, Fi = 7763 + Total number of fixed-point iterations = 7445 Total number of nonlinear solver convergence failures = 0 - Total number of error test failures = 1 + Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_brusselator_fp_1.out b/examples/arkode/C_serial/ark_brusselator_fp_1.out index 76e1aa7768..66d08f1734 100644 --- a/examples/arkode/C_serial/ark_brusselator_fp_1.out +++ b/examples/arkode/C_serial/ark_brusselator_fp_1.out @@ -6,22 +6,22 @@ Brusselator ODE test problem, fixed-point solver: t u v w ---------------------------------------------- - 1.000000 1.897255 1.274939 2.997155 - 2.000000 0.346125 2.366448 2.999481 - 3.000000 0.147442 2.862061 2.999781 - 4.000000 0.140733 3.226731 2.999780 - 5.000000 0.142659 3.583206 2.999789 - 6.000000 0.145095 3.936910 2.999782 - 7.000000 0.147720 4.287893 2.999780 - 8.000000 0.150542 4.635957 2.999775 - 9.000000 0.153590 4.980863 2.999768 - 10.000000 0.156901 5.322330 2.999763 + 1.000000 1.897255 1.274939 2.997143 + 2.000000 0.346125 2.366448 2.999487 + 3.000000 0.147442 2.862060 2.999779 + 4.000000 0.140733 3.226731 2.999813 + 5.000000 0.142659 3.583206 2.999839 + 6.000000 0.145095 3.936910 2.999785 + 7.000000 0.147720 4.287893 2.999764 + 8.000000 0.150542 4.635957 2.999762 + 9.000000 0.153590 4.980863 2.999787 + 10.000000 0.156901 5.322330 2.999779 ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 729 (attempted = 730) - Total RHS evals: Fe = 4382, Fi = 15142 - Total number of fixed-point iterations = 14410 + Internal solver steps = 315 (attempted = 315) + Total RHS evals: Fe = 2208, Fi = 7763 + Total number of fixed-point iterations = 7445 Total number of nonlinear solver convergence failures = 0 - Total number of error test failures = 1 + Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out b/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out index bbaf5142f3..17ece79919 100644 --- a/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out +++ b/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out @@ -8,18 +8,17 @@ Conserved Exponential Entropy problem: step t u v e delta e ------------------------------------------------------------------------------- 0 0.000000e+00 1.000000e+00 5.000000e-01 4.367003e+00 0.000000e+00 - 40 7.671134e-01 -1.432143e+00 1.417843e+00 4.367003e+00 5.329071e-15 - 80 2.733674e+00 -9.963899e+00 1.474066e+00 4.367003e+00 7.993606e-15 + 40 1.524191e+00 -4.684189e+00 1.471959e+00 4.367003e+00 3.552714e-15 ------------------------------------------------------------------------------- Final Solver Statistics: - Internal solver steps = 86 (attempted = 86) - Total number of error test failures = 0 - Total RHS evals: Fe = 432, Fi = 0 - Total Relaxation Fn evals = 266 - Total Relaxation Jac evals = 524 + Internal solver steps = 49 (attempted = 51) + Total number of error test failures = 2 + Total RHS evals: Fe = 255, Fi = 0 + Total Relaxation Fn evals = 183 + Total Relaxation Jac evals = 336 Total Relaxation fails = 0 Total Relaxation bound fails = 0 Total Relaxation NLS fails = 0 - Total Relaxation NLS iters = 94 + Total Relaxation NLS iters = 81 diff --git a/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out b/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out index e39d0b1160..d62c1791c6 100644 --- a/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out +++ b/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out @@ -8,18 +8,17 @@ Conserved Exponential Entropy problem: step t u v e delta e ------------------------------------------------------------------------------- 0 0.000000e+00 1.000000e+00 5.000000e-01 4.367003e+00 0.000000e+00 - 40 6.829631e-01 -1.088653e+00 1.393849e+00 4.367003e+00 7.993606e-15 - 80 3.316326e+00 -1.250833e+01 1.474076e+00 4.367003e+00 1.332268e-14 + 40 1.735025e+00 -5.603629e+00 1.473233e+00 4.367003e+00 5.329071e-15 ------------------------------------------------------------------------------- Final Solver Statistics: - Internal solver steps = 83 (attempted = 85) - Total number of error test failures = 2 - Total RHS evals = 425 - Total Relaxation Fn evals = 267 - Total Relaxation Jac evals = 522 - Total Relaxation fails = 0 - Total Relaxation bound fails = 0 + Internal solver steps = 47 (attempted = 51) + Total number of error test failures = 3 + Total RHS evals = 253 + Total Relaxation Fn evals = 187 + Total Relaxation Jac evals = 340 + Total Relaxation fails = 1 + Total Relaxation bound fails = 1 Total Relaxation NLS fails = 0 - Total Relaxation NLS iters = 97 + Total Relaxation NLS iters = 85 diff --git a/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out b/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out index 35872dff8b..4b3a9d3aab 100644 --- a/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out +++ b/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out @@ -8,19 +8,17 @@ Dissipated Exponential Entropy problem: step t u e u_err delta e ------------------------------------------------------------------------------- 0 0.000000e+00 1.000000e+00 2.718282e+00 0.000000e+00 0.000000e+00 - 40 4.675332e-01 1.798296e-01 1.197013e+00 1.083801e-01 -1.521269e+00 - 80 1.147092e+00 -4.153968e-01 6.600783e-01 -9.770808e-01 -2.058204e+00 - 120 3.654055e+00 -1.391763e+00 2.486366e-01 -2.841170e+00 -2.469645e+00 + 40 4.820760e+00 -1.646470e+00 1.927290e-01 -3.337911e+00 -2.525553e+00 ------------------------------------------------------------------------------- Final Solver Statistics: - Internal solver steps = 130 (attempted = 130) - Total number of error test failures = 0 - Total RHS evals: Fe = 652, Fi = 0 - Total Relaxation Fn evals = 391 - Total Relaxation Jac evals = 781 + Internal solver steps = 41 (attempted = 42) + Total number of error test failures = 1 + Total RHS evals: Fe = 211, Fi = 0 + Total Relaxation Fn evals = 161 + Total Relaxation Jac evals = 287 Total Relaxation fails = 0 Total Relaxation bound fails = 0 Total Relaxation NLS fails = 0 - Total Relaxation NLS iters = 131 + Total Relaxation NLS iters = 77 diff --git a/examples/arkode/C_serial/ark_heat1D.out b/examples/arkode/C_serial/ark_heat1D.out index 4b1068888c..9af0df2ab1 100644 --- a/examples/arkode/C_serial/ark_heat1D.out +++ b/examples/arkode/C_serial/ark_heat1D.out @@ -18,12 +18,12 @@ ------------------------- Final Solver Statistics: - Internal solver steps = 190 (attempted = 190) - Total RHS evals: Fe = 0, Fi = 1903 + Internal solver steps = 81 (attempted = 81) + Total RHS evals: Fe = 0, Fi = 813 Total linear solver setups = 0 - Total linear iterations = 17826 - Total number of Jacobian-vector products = 17826 + Total linear iterations = 11330 + Total number of Jacobian-vector products = 11330 Total number of linear solver convergence failures = 0 - Total number of Newton iterations = 950 + Total number of Newton iterations = 405 Total number of nonlinear solver convergence failures = 0 Total number of error test failures = 0 diff --git a/examples/arkode/C_serial/ark_heat1D_adapt.out b/examples/arkode/C_serial/ark_heat1D_adapt.out index 8135e3df32..a614c53a0e 100644 --- a/examples/arkode/C_serial/ark_heat1D_adapt.out +++ b/examples/arkode/C_serial/ark_heat1D_adapt.out @@ -6,135 +6,60 @@ ---------------------------------------------------------------------------------------- 0 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 21 0 0 1 3.629021901461023e-12 7.505751048377368e-09 2.979166031180459e-12 21 5 5 - 2 7.505751048377368e-09 1.501150209675474e-07 6.164657920190889e-09 21 5 5 - 3 1.501150209675474e-07 3.002300419350948e-06 1.293969127943737e-07 21 5 10 - 4 3.002300419350948e-06 6.004600838701896e-05 2.593514282988711e-06 21 5 10 - 5 6.004600838701896e-05 2.853823679832573e-04 5.166758334555005e-05 21 5 20 - 6 2.853823679832573e-04 2.575255434332890e-04 2.798555740976005e-04 21 5 25 - 7 2.575255434332890e-04 4.094541134469988e-04 4.794249470975060e-04 21 5 25 - 8 4.094541134469988e-04 4.094541134469988e-04 7.863858401326194e-04 21 5 29 - 9 4.094541134469988e-04 6.522908622655267e-04 1.082809129037782e-03 21 5 29 - 10 6.522908622655267e-04 5.699096897079724e-04 1.606858836596097e-03 23 5 40 - 11 5.699096897079724e-04 1.007836116841849e-03 2.005669425160000e-03 23 5 35 - 12 1.007836116841849e-03 1.007836116841849e-03 2.683040723903781e-03 23 5 40 - 13 1.007836116841849e-03 8.453991367856834e-04 3.678394364905319e-03 25 5 40 - 14 8.453991367856834e-04 1.990429632970147e-03 4.265067457277110e-03 25 5 34 - 15 1.990429632970147e-03 1.990429632970147e-03 5.574933430469675e-03 25 5 41 - 16 1.990429632970147e-03 3.606542084539227e-03 6.798364394830465e-03 25 5 35 - 17 4.980841065373463e-04 4.980841065373463e-04 6.927003185856736e-03 27 15 180 - 18 4.980841065373463e-04 4.980841065373463e-04 7.441563969778088e-03 29 5 30 - 19 4.980841065373463e-04 1.669338950987901e-03 7.722575172690612e-03 29 5 29 - 20 1.669338950987901e-03 3.660363409600048e-03 8.637783681073969e-03 29 5 44 - 21 3.660363409600048e-03 7.228866504893484e-03 1.050862732430420e-02 29 5 66 - 22 2.277066494413550e-04 2.223939246469188e-04 1.033655098852881e-02 32 20 250 - 23 2.223939246469188e-04 4.398048897676356e-04 1.092351423512213e-02 34 5 24 - 24 4.398048897676356e-04 1.023058876200847e-03 1.113462885573467e-02 34 5 33 - 25 1.023058876200847e-03 1.023058876200847e-03 1.161665279683433e-02 34 5 36 - 26 1.023058876200847e-03 3.919845082560766e-03 1.208659994169145e-02 34 5 38 - 27 3.919845082560766e-03 3.863020439217562e-03 1.378155752244160e-02 34 5 81 - 28 3.863020439217562e-03 1.257825200903444e-02 1.530364032030464e-02 34 5 59 - 29 1.533031872906549e-03 1.436302440195315e-03 1.578270750227194e-02 36 15 221 - 30 1.436302440195315e-03 3.755629101798260e-03 1.630186567569052e-02 36 5 31 - 31 2.870300468364886e-03 2.460481648357659e-03 1.728893354958566e-02 38 10 144 - 32 5.484132002743671e-04 5.448534872232822e-04 1.710787102567137e-02 40 15 251 - 33 5.448534872232822e-04 9.911472786863407e-04 1.728222131772621e-02 40 5 43 - 34 9.911472786863407e-04 2.853828564040550e-03 1.759429056441933e-02 40 5 47 - 35 2.853828564040550e-03 8.346188420319504e-03 1.845696364866320e-02 40 5 98 - 36 4.184969207140296e-03 4.184969207140296e-03 1.963139612674647e-02 40 10 209 - 37 7.891664187375526e-04 7.780072216640708e-04 1.916618790361855e-02 44 15 270 - 38 7.780072216640708e-04 1.432006588296146e-03 1.936507264204106e-02 44 5 51 - 39 1.432006588296146e-03 1.432006588296146e-03 1.933721559864914e-02 46 5 63 - 40 1.432006588296146e-03 2.920150155413109e-03 1.967900635018854e-02 46 5 59 - 41 2.920150155413109e-03 8.021410496618760e-03 2.034576732622878e-02 46 5 91 - 42 8.021410496618760e-03 8.021410496618760e-03 2.198707476731612e-02 46 5 105 - 43 8.021410496618760e-03 8.021410496618760e-03 2.338592734070328e-02 46 5 105 - 44 7.749248836531081e-04 7.712524403928612e-04 2.311665583789623e-02 50 15 273 - 45 7.712524403928612e-04 1.454207673515780e-03 2.323643927854141e-02 50 5 59 - 46 1.454207673515780e-03 3.893553595468784e-03 2.345743682946040e-02 50 5 75 - 47 3.893553595468784e-03 8.577785831996225e-03 2.401981148625224e-02 50 5 105 - 48 3.583582798475919e-03 3.583582798475919e-03 2.450182832136591e-02 50 10 210 - 49 3.583582798475919e-03 1.225842385200837e-02 2.495216274153317e-02 50 5 88 - 50 4.962462241849634e-03 4.962462241849634e-03 2.552759545114530e-02 50 10 208 - 51 4.962462241849634e-03 1.668087632819629e-02 2.605197291673569e-02 50 5 95 - 52 4.505316812294505e-03 4.505316812294505e-03 2.648793970156092e-02 50 10 201 - 53 4.505316812294505e-03 2.222468245231715e-02 2.688916611820219e-02 50 5 101 - 54 4.746858164506530e-03 4.746858164506530e-03 2.727761588174917e-02 50 15 298 - 55 4.746858164506530e-03 4.349218756600245e-03 2.848305395101498e-02 52 5 105 - 56 4.349218756600245e-03 4.349218756600245e-03 2.902306824658978e-02 54 5 105 - 57 4.349218756600245e-03 1.066724741463221e-02 2.931026262297523e-02 54 5 105 - 58 6.268748418325634e-03 6.268748418325634e-03 2.936878001655390e-02 56 10 210 - 59 6.268748418325634e-03 1.161381148923531e-02 2.970425918866458e-02 56 5 105 - 60 1.161381148923531e-02 1.028179098818762e-02 2.979356337650783e-02 58 5 105 - 61 1.028179098818762e-02 1.028179098818762e-02 2.969467522937706e-02 60 5 105 - 62 1.028179098818762e-02 3.106655738625877e-02 3.001826469123505e-02 60 5 105 - 63 1.471496945828350e-02 1.469024921725142e-02 3.039908149974539e-02 60 10 210 - 64 1.085599032570171e-02 1.085599032570171e-02 3.063067318046183e-02 60 10 210 - 65 1.085599032570171e-02 1.085599032570171e-02 3.082863809383847e-02 60 5 105 - 66 1.085599032570171e-02 1.085599032570171e-02 3.099902977389579e-02 60 5 105 - 67 7.618142079252098e-03 7.618142079252098e-03 3.110458948722743e-02 60 10 210 - 68 7.618142079252098e-03 3.289115457484437e-02 3.120052296435948e-02 60 5 105 - 69 3.289115457484437e-02 2.984967095026484e-02 3.153119483133013e-02 60 5 105 - 70 7.462417737566209e-03 7.462417737566209e-03 3.159027055714576e-02 60 6 126 - 71 7.462417737566209e-03 1.532601802900749e-02 3.164512521044466e-02 60 5 105 - 72 5.317294174445867e-03 5.317294174445867e-03 3.168191671045904e-02 60 10 210 - 73 5.317294174445867e-03 1.637705260014558e-02 3.171694897858042e-02 60 5 105 - 74 1.637705260014558e-02 5.597209894014091e-02 3.181506419526589e-02 60 5 105 - 75 9.763057448204533e-03 9.763057448204533e-03 3.186752063019930e-02 60 10 210 - 76 9.763057448204533e-03 3.404927513904092e-02 3.191613054349100e-02 60 5 105 - 77 3.404927513904092e-02 2.968548341756130e-02 3.206067821894520e-02 60 5 105 - 78 1.178500969634106e-02 1.178500969634106e-02 3.210368406300197e-02 60 10 210 - 79 1.178500969634106e-02 2.585117047072884e-02 3.214367493868805e-02 60 5 105 - 80 1.411007380226322e-02 1.411007380226322e-02 3.218801588316333e-02 60 10 210 - 81 1.411007380226322e-02 1.411007380226322e-02 3.222893682105193e-02 60 5 105 - 82 1.411007380226322e-02 1.401864440990195e-02 3.226656117886238e-02 60 5 105 - 83 1.401864440990195e-02 1.401864440990195e-02 3.230147951662023e-02 60 5 105 - 84 1.401864440990195e-02 1.303768352877046e-02 3.233369732860109e-02 60 5 105 - 85 7.810676399949200e-03 7.810676399949200e-03 3.235074731143681e-02 60 10 210 - 86 7.810676399949200e-03 7.810676399949200e-03 3.236714343315446e-02 60 5 105 - 87 7.810676399949200e-03 1.411979073878545e-02 3.238290227600748e-02 60 5 105 - 88 1.411979073878545e-02 3.418255178001077e-02 3.240986169975903e-02 60 5 105 - 89 1.683729734872759e-02 1.683729734872759e-02 3.243961052649499e-02 60 10 210 - 90 5.293743003823701e-03 5.293743003823701e-03 3.244847429329385e-02 60 10 210 - 91 5.293743003823701e-03 8.291768498653825e-03 3.245709535299850e-02 60 5 105 - 92 8.291768498653825e-03 1.880612123267676e-02 3.247017621575291e-02 60 5 105 - 93 1.173402792581162e-02 1.173402792581162e-02 3.248779528914644e-02 60 10 209 - 94 1.173402792581162e-02 1.173402792581162e-02 3.250442716997714e-02 60 5 105 - 95 1.173402792581162e-02 3.281754406804230e-02 3.252013886269631e-02 60 5 105 - 96 6.424707662957514e-03 6.424707662957514e-03 3.252836644102348e-02 60 10 197 - 97 6.424707662957514e-03 4.714988041054190e-02 3.253634036181408e-02 60 5 72 - 98 4.714988041054191e-03 4.714988041054191e-03 3.254203651909890e-02 60 10 171 - 99 4.714988041054191e-03 4.282144720721703e-02 3.254760362002126e-02 60 5 56 - 100 4.282144720721703e-02 3.592705003681280e-02 3.259281046463217e-02 60 5 105 - 101 7.349314806790228e-03 7.349314806790228e-03 3.259965013816767e-02 60 15 315 - 102 7.349314806790228e-03 3.112322123785429e-02 3.260625388050781e-02 60 5 96 - 103 3.112322123785429e-02 3.112322123785429e-02 3.263174602069833e-02 60 5 105 - 104 6.839739280813347e-03 6.839739280813347e-03 3.263685222363544e-02 60 15 315 - 105 6.839739280813347e-03 3.638819250655535e-02 3.264179137178386e-02 60 5 77 - 106 3.638819250655535e-02 3.638819250655535e-02 3.266544357612065e-02 60 5 105 - 107 1.812430795718352e-02 1.812430795718352e-02 3.267571852602801e-02 60 10 210 - 108 3.325944651421952e-03 3.325944651421952e-03 3.267751436841327e-02 60 15 315 - 109 3.325944651421952e-03 1.705033487710399e-02 3.267928353707002e-02 60 5 79 - 110 4.262583719275997e-03 4.262583719275997e-03 3.268151038658581e-02 60 6 118 - 111 4.262583719275997e-03 1.551192985487607e-02 3.268369082817933e-02 60 5 87 - 112 1.551192985487607e-02 2.477145186640316e-02 3.269122491441458e-02 60 5 105 - 113 1.660178108793211e-02 1.660178108793211e-02 3.269867454817608e-02 60 10 210 - 114 1.660178108793211e-02 1.660178108793211e-02 3.270557188991038e-02 60 5 105 - 115 1.660178108793211e-02 1.660178108793211e-02 3.271192363723516e-02 60 5 105 - 116 1.660178108793211e-02 3.371605679577483e-02 3.271779428194488e-02 60 5 105 - 117 1.522144924734310e-02 1.522144924734310e-02 3.272271516928414e-02 60 10 210 - 118 1.522144924734310e-02 1.396058321278275e-02 3.272735805276025e-02 60 5 105 - 119 1.396058321278275e-02 2.708386296373138e-02 3.273131056482627e-02 60 5 105 - 120 1.784278714797101e-02 1.559390397930733e-02 3.273593683845105e-02 60 10 210 - 121 1.108547745869386e-02 1.108547745869386e-02 3.273862071549129e-02 60 10 210 - 122 1.108547745869386e-02 3.935975276857615e-02 3.274118608200519e-02 60 5 105 - 123 9.839938192144036e-03 9.839938192144036e-03 3.274329592751463e-02 60 6 126 - 124 9.839938192144036e-03 3.408840272553354e-02 3.274535508616430e-02 60 5 105 - 125 2.571312978993083e-02 2.384800532128622e-02 3.274985374478378e-02 60 10 210 - 126 2.384800532128622e-02 1.550804686753758e-02 3.275393582150888e-02 60 5 105 - 127 1.550804686753758e-02 1.550804686753758e-02 3.275635661747035e-02 60 5 105 + 2 7.505751048377368e-09 1.501150209675474e-07 6.164657920190881e-09 21 5 5 + 3 1.501150209675474e-07 3.002300419350948e-06 1.293969127943736e-07 21 5 10 + 4 3.002300419350948e-06 6.004600838701896e-05 2.593514282988707e-06 21 5 10 + 5 6.004600838701896e-05 9.179695432740554e-04 5.166758334555006e-05 21 5 20 + 6 6.343529631021770e-04 6.343529631021770e-04 5.490107589070345e-04 21 10 71 + 7 6.343529631021770e-04 1.640766607248460e-03 1.016221951592573e-03 21 5 30 + 8 1.640766607248460e-03 1.640766607248460e-03 2.134866313383894e-03 21 5 44 + 9 1.640766607248460e-03 3.176698405719737e-03 3.286762343767416e-03 23 5 49 + 10 3.176698405719737e-03 5.205769554730186e-03 5.734914214529641e-03 25 5 64 + 11 5.205769554730186e-03 1.339482149449628e-02 8.758410337014513e-03 25 5 68 + 12 1.339482149449628e-02 2.332821068681652e-02 1.485648844651735e-02 29 5 105 + 13 1.248179029454408e-02 1.248179029454408e-02 1.921287199748071e-02 36 10 210 + 14 9.588256882437387e-03 9.588256882437387e-03 2.104862438183799e-02 41 10 210 + 15 9.588256882437387e-03 9.072835074236115e-03 2.233672417170544e-02 45 5 105 + 16 9.072835074236115e-03 1.988051835432095e-02 2.343939842488585e-02 47 5 105 + 17 6.960791062868028e-03 6.960791062868028e-03 2.405632210541165e-02 51 10 210 + 18 6.960791062868028e-03 6.960791062868028e-03 2.492132293215528e-02 51 5 105 + 19 6.960791062868028e-03 3.066147567606387e-02 2.568044417989735e-02 51 5 105 + 20 1.520100022024879e-02 1.520100022024879e-02 2.703440991514135e-02 51 10 210 + 21 1.520100022024879e-02 1.402812176548887e-02 2.893254344544397e-02 53 5 105 + 22 3.453230395577901e-03 3.453230395577901e-03 2.907729515230845e-02 57 15 315 + 23 3.453230395577901e-03 4.380619717346660e-02 2.926736320852006e-02 57 5 105 + 24 2.143697625828337e-02 2.143697625828337e-02 3.022770522599001e-02 57 10 210 + 25 1.356011281557917e-02 1.356011281557917e-02 3.023724114482764e-02 59 10 210 + 26 1.356011281557917e-02 1.356011281557917e-02 3.009776300185301e-02 61 5 105 + 27 1.356011281557917e-02 3.138761818464553e-02 3.039254356669188e-02 61 5 105 + 28 7.846904546161384e-03 7.846904546161384e-03 3.053825831218209e-02 61 8 168 + 29 7.846904546161384e-03 2.239691157381613e-02 3.066884228245018e-02 61 5 105 + 30 2.239691157381613e-02 5.412840940406207e-02 3.097561342632622e-02 61 5 105 + 31 1.353210235101552e-02 1.353210235101552e-02 3.112115182492113e-02 61 6 126 + 32 1.353210235101552e-02 4.142434758270885e-02 3.124840273405157e-02 61 5 105 + 33 4.142434758270885e-02 3.618670101066103e-02 3.153571866268843e-02 61 5 105 + 34 3.618670101066103e-02 3.618670101066103e-02 3.173010312408515e-02 61 5 105 + 35 2.214853217414426e-02 2.214853217414426e-02 3.182094040960617e-02 61 10 210 + 36 2.214853217414426e-02 2.214853217414426e-02 3.189816288230699e-02 61 5 105 + 37 2.214853217414426e-02 5.186611313324672e-02 3.196759669660224e-02 61 5 105 + 38 8.040644595736463e-03 8.040644595736463e-03 3.199040525837332e-02 61 15 315 + 39 8.040644595736463e-03 5.876157539566557e-02 3.201252102107658e-02 61 5 105 + 40 3.587005198309809e-02 3.587005198309809e-02 3.210344780887179e-02 61 10 210 + 41 3.587005198309809e-02 5.488468266739412e-02 3.217985412734894e-02 61 5 105 + 42 1.374405125972745e-02 1.374405125972745e-02 3.220409719627156e-02 61 15 315 + 43 1.374405125972745e-02 2.631735687158033e-02 3.222687726392420e-02 61 5 105 + 44 2.631735687158033e-02 4.896506098319962e-02 3.226656316743638e-02 61 5 105 + 45 3.843089200986815e-02 3.509372351306133e-02 3.231817217122992e-02 61 10 210 + 46 3.509372351306133e-02 5.783394726183869e-02 3.235628573228867e-02 61 5 105 + 47 5.783394726183869e-02 5.783394726183869e-02 3.240393576192167e-02 61 5 105 + 48 5.783394726183869e-02 5.783394726183869e-02 3.244648352442751e-02 61 5 105 + 49 5.783394726183869e-02 9.181938668493264e-02 3.247357215372555e-02 61 5 105 + 50 9.181938668493264e-02 8.705576617257466e-02 3.250192810507965e-02 61 5 105 + 51 7.053634514968483e-02 5.234936503647198e-02 3.252069946290664e-02 61 10 210 + 52 5.234936503647198e-02 5.234936503647198e-02 3.252835118465876e-02 61 5 105 ---------------------------------------------------------------------------------------- Final solver statistics: - Total number of time steps = 127 - Total nonlinear iterations = 868 - Total linear iterations = 15028 + Total number of time steps = 52 + Total nonlinear iterations = 349 + Total linear iterations = 6445 diff --git a/examples/arkode/C_serial/ark_robertson.out b/examples/arkode/C_serial/ark_robertson.out index f4774b096c..3c04cc2765 100644 --- a/examples/arkode/C_serial/ark_robertson.out +++ b/examples/arkode/C_serial/ark_robertson.out @@ -4,127 +4,127 @@ Robertson ODE test problem: t u v w -------------------------------------------------- 0.000e+00 1.00000e+00 0.00000e+00 0.00000e+00 - 1.000e+09 2.08319e-06 8.28673e-12 9.99998e-01 - 2.000e+09 1.04165e-06 4.16315e-12 9.99999e-01 - 3.000e+09 6.94436e-07 2.79812e-12 9.99999e-01 - 4.000e+09 5.20822e-07 2.09671e-12 9.99999e-01 - 5.000e+09 4.16653e-07 1.65358e-12 1.00000e+00 - 6.000e+09 3.47215e-07 1.38790e-12 1.00000e+00 - 7.000e+09 2.97617e-07 1.19569e-12 1.00000e+00 - 8.000e+09 2.60418e-07 1.03823e-12 1.00000e+00 - 9.000e+09 2.31478e-07 9.17074e-13 1.00000e+00 - 1.000e+10 2.08331e-07 8.40189e-13 1.00000e+00 - 1.100e+10 1.89393e-07 7.61696e-13 1.00000e+00 - 1.200e+10 1.73605e-07 6.83245e-13 1.00000e+00 - 1.300e+10 1.60257e-07 6.52283e-13 1.00000e+00 - 1.400e+10 1.48808e-07 6.03096e-13 1.00000e+00 - 1.500e+10 1.38890e-07 5.53757e-13 1.00000e+00 - 1.600e+10 1.30208e-07 5.02107e-13 1.00000e+00 - 1.700e+10 1.22550e-07 5.05848e-13 1.00000e+00 - 1.800e+10 1.15741e-07 4.81445e-13 1.00000e+00 - 1.900e+10 1.09650e-07 4.30685e-13 1.00000e+00 - 2.000e+10 1.04164e-07 4.00365e-13 1.00000e+00 - 2.100e+10 9.92051e-08 3.87356e-13 1.00000e+00 - 2.200e+10 9.46982e-08 3.79643e-13 1.00000e+00 - 2.300e+10 9.05793e-08 3.59181e-13 1.00000e+00 - 2.400e+10 8.68052e-08 3.35291e-13 1.00000e+00 - 2.500e+10 8.33344e-08 3.30550e-13 1.00000e+00 - 2.600e+10 8.01274e-08 3.33613e-13 1.00000e+00 - 2.700e+10 7.71569e-08 3.13668e-13 1.00000e+00 - 2.800e+10 7.44011e-08 2.86383e-13 1.00000e+00 - 2.900e+10 7.18380e-08 2.67839e-13 1.00000e+00 - 3.000e+10 6.94456e-08 2.74115e-13 1.00000e+00 - 3.100e+10 6.72046e-08 2.89954e-13 1.00000e+00 - 3.200e+10 6.51032e-08 2.82625e-13 1.00000e+00 - 3.300e+10 6.31303e-08 2.63498e-13 1.00000e+00 - 3.400e+10 6.12746e-08 2.44356e-13 1.00000e+00 - 3.500e+10 5.95249e-08 2.36979e-13 1.00000e+00 - 3.600e+10 5.78710e-08 2.38699e-13 1.00000e+00 - 3.700e+10 5.63063e-08 2.34238e-13 1.00000e+00 - 3.800e+10 5.48245e-08 2.25989e-13 1.00000e+00 - 3.900e+10 5.34192e-08 2.16535e-13 1.00000e+00 - 4.000e+10 5.20842e-08 2.08459e-13 1.00000e+00 - 4.100e+10 5.08134e-08 2.01687e-13 1.00000e+00 - 4.200e+10 4.96024e-08 1.93815e-13 1.00000e+00 - 4.300e+10 4.84479e-08 1.85739e-13 1.00000e+00 - 4.400e+10 4.73465e-08 1.78395e-13 1.00000e+00 - 4.500e+10 4.62947e-08 1.72720e-13 1.00000e+00 - 4.600e+10 4.52893e-08 1.69648e-13 1.00000e+00 - 4.700e+10 4.43267e-08 1.70114e-13 1.00000e+00 - 4.800e+10 4.34036e-08 1.74964e-13 1.00000e+00 - 4.900e+10 4.25175e-08 1.78828e-13 1.00000e+00 - 5.000e+10 4.16666e-08 1.78796e-13 1.00000e+00 - 5.100e+10 4.08492e-08 1.75793e-13 1.00000e+00 - 5.200e+10 4.00636e-08 1.70743e-13 1.00000e+00 - 5.300e+10 3.93079e-08 1.64571e-13 1.00000e+00 - 5.400e+10 3.85805e-08 1.58202e-13 1.00000e+00 - 5.500e+10 3.78794e-08 1.52559e-13 1.00000e+00 - 5.600e+10 3.72031e-08 1.48433e-13 1.00000e+00 - 5.700e+10 3.65504e-08 1.45182e-13 1.00000e+00 - 5.800e+10 3.59202e-08 1.42852e-13 1.00000e+00 - 5.900e+10 3.53114e-08 1.42011e-13 1.00000e+00 - 6.000e+10 3.47228e-08 1.43770e-13 1.00000e+00 - 6.100e+10 3.41536e-08 1.42505e-13 1.00000e+00 - 6.200e+10 3.36028e-08 1.31615e-13 1.00000e+00 - 6.300e+10 3.30693e-08 1.21361e-13 1.00000e+00 - 6.400e+10 3.25524e-08 1.16679e-13 1.00000e+00 - 6.500e+10 3.20514e-08 1.16007e-13 1.00000e+00 - 6.600e+10 3.15658e-08 1.17783e-13 1.00000e+00 - 6.700e+10 3.10947e-08 1.20445e-13 1.00000e+00 - 6.800e+10 3.06376e-08 1.22430e-13 1.00000e+00 - 6.900e+10 3.01937e-08 1.22179e-13 1.00000e+00 - 7.000e+10 2.97624e-08 1.18554e-13 1.00000e+00 - 7.100e+10 2.93432e-08 1.19564e-13 1.00000e+00 - 7.200e+10 2.89357e-08 1.20819e-13 1.00000e+00 - 7.300e+10 2.85393e-08 1.12238e-13 1.00000e+00 - 7.400e+10 2.81536e-08 1.08409e-13 1.00000e+00 - 7.500e+10 2.77782e-08 1.11242e-13 1.00000e+00 - 7.600e+10 2.74127e-08 1.08952e-13 1.00000e+00 - 7.700e+10 2.70567e-08 1.02106e-13 1.00000e+00 - 7.800e+10 2.67098e-08 1.03189e-13 1.00000e+00 - 7.900e+10 2.63717e-08 1.10597e-13 1.00000e+00 - 8.000e+10 2.60421e-08 1.05448e-13 1.00000e+00 - 8.100e+10 2.57206e-08 1.03702e-13 1.00000e+00 - 8.200e+10 2.54069e-08 1.04168e-13 1.00000e+00 - 8.300e+10 2.51008e-08 1.00603e-13 1.00000e+00 - 8.400e+10 2.48020e-08 9.77251e-14 1.00000e+00 - 8.500e+10 2.45102e-08 9.82338e-14 1.00000e+00 - 8.600e+10 2.42252e-08 9.64282e-14 1.00000e+00 - 8.700e+10 2.39467e-08 9.59624e-14 1.00000e+00 - 8.800e+10 2.36746e-08 9.45243e-14 1.00000e+00 - 8.900e+10 2.34086e-08 9.10474e-14 1.00000e+00 - 9.000e+10 2.31485e-08 9.02954e-14 1.00000e+00 - 9.100e+10 2.28941e-08 9.57143e-14 1.00000e+00 - 9.200e+10 2.26452e-08 1.00341e-13 1.00000e+00 - 9.300e+10 2.24017e-08 1.03006e-13 1.00000e+00 - 9.400e+10 2.21634e-08 1.03573e-13 1.00000e+00 - 9.500e+10 2.19301e-08 1.01905e-13 1.00000e+00 - 9.600e+10 2.17016e-08 9.78643e-14 1.00000e+00 - 9.700e+10 2.14779e-08 9.13138e-14 1.00000e+00 - 9.800e+10 2.12588e-08 8.23720e-14 1.00000e+00 - 9.900e+10 2.10440e-08 7.45584e-14 1.00000e+00 - 1.000e+11 2.08334e-08 6.88517e-14 1.00000e+00 + 1.000e+09 2.08331e-06 8.33429e-12 9.99998e-01 + 2.000e+09 1.04164e-06 4.16714e-12 9.99999e-01 + 3.000e+09 6.94449e-07 2.77740e-12 9.99999e-01 + 4.000e+09 5.20749e-07 2.07853e-12 9.99999e-01 + 5.000e+09 4.16649e-07 1.66767e-12 1.00000e+00 + 6.000e+09 3.47167e-07 1.38899e-12 1.00000e+00 + 7.000e+09 2.97627e-07 1.19146e-12 1.00000e+00 + 8.000e+09 2.60419e-07 1.04226e-12 1.00000e+00 + 9.000e+09 2.31453e-07 9.25133e-13 1.00000e+00 + 1.000e+10 2.08319e-07 8.32781e-13 1.00000e+00 + 1.100e+10 1.89396e-07 7.57619e-13 1.00000e+00 + 1.200e+10 1.73606e-07 6.93342e-13 1.00000e+00 + 1.300e+10 1.60262e-07 6.41680e-13 1.00000e+00 + 1.400e+10 1.48789e-07 5.97724e-13 1.00000e+00 + 1.500e+10 1.38865e-07 5.57820e-13 1.00000e+00 + 1.600e+10 1.30210e-07 5.21682e-13 1.00000e+00 + 1.700e+10 1.22552e-07 4.89114e-13 1.00000e+00 + 1.800e+10 1.15736e-07 4.60496e-13 1.00000e+00 + 1.900e+10 1.09647e-07 4.36195e-13 1.00000e+00 + 2.000e+10 1.04172e-07 4.16546e-13 1.00000e+00 + 2.100e+10 9.92030e-08 3.99272e-13 1.00000e+00 + 2.200e+10 9.46813e-08 3.81801e-13 1.00000e+00 + 2.300e+10 9.05601e-08 3.64664e-13 1.00000e+00 + 2.400e+10 8.67926e-08 3.48393e-13 1.00000e+00 + 2.500e+10 8.33323e-08 3.33523e-13 1.00000e+00 + 2.600e+10 8.01327e-08 3.20559e-13 1.00000e+00 + 2.700e+10 7.71616e-08 3.07972e-13 1.00000e+00 + 2.800e+10 7.44020e-08 2.95291e-13 1.00000e+00 + 2.900e+10 7.18354e-08 2.83442e-13 1.00000e+00 + 3.000e+10 6.94432e-08 2.73350e-13 1.00000e+00 + 3.100e+10 6.72067e-08 2.65938e-13 1.00000e+00 + 3.200e+10 6.51076e-08 2.61517e-13 1.00000e+00 + 3.300e+10 6.31345e-08 2.52902e-13 1.00000e+00 + 3.400e+10 6.12776e-08 2.44744e-13 1.00000e+00 + 3.500e+10 5.95267e-08 2.39282e-13 1.00000e+00 + 3.600e+10 5.78731e-08 2.31701e-13 1.00000e+00 + 3.700e+10 5.63088e-08 2.25415e-13 1.00000e+00 + 3.800e+10 5.48259e-08 2.19890e-13 1.00000e+00 + 3.900e+10 5.34190e-08 2.14616e-13 1.00000e+00 + 4.000e+10 5.20832e-08 2.09489e-13 1.00000e+00 + 4.100e+10 5.08134e-08 2.04402e-13 1.00000e+00 + 4.200e+10 4.96046e-08 1.99252e-13 1.00000e+00 + 4.300e+10 4.84517e-08 1.93934e-13 1.00000e+00 + 4.400e+10 4.73499e-08 1.88761e-13 1.00000e+00 + 4.500e+10 4.62960e-08 1.84295e-13 1.00000e+00 + 4.600e+10 4.52878e-08 1.80408e-13 1.00000e+00 + 4.700e+10 4.43228e-08 1.76962e-13 1.00000e+00 + 4.800e+10 4.33987e-08 1.73820e-13 1.00000e+00 + 4.900e+10 4.25132e-08 1.70846e-13 1.00000e+00 + 5.000e+10 4.16639e-08 1.67900e-13 1.00000e+00 + 5.100e+10 4.08484e-08 1.64847e-13 1.00000e+00 + 5.200e+10 4.00645e-08 1.61548e-13 1.00000e+00 + 5.300e+10 3.93097e-08 1.57866e-13 1.00000e+00 + 5.400e+10 3.85818e-08 1.53755e-13 1.00000e+00 + 5.500e+10 3.78790e-08 1.49796e-13 1.00000e+00 + 5.600e+10 3.72005e-08 1.46111e-13 1.00000e+00 + 5.700e+10 3.65453e-08 1.42690e-13 1.00000e+00 + 5.800e+10 3.59126e-08 1.39525e-13 1.00000e+00 + 5.900e+10 3.53016e-08 1.36604e-13 1.00000e+00 + 6.000e+10 3.47113e-08 1.33919e-13 1.00000e+00 + 6.100e+10 3.41410e-08 1.31458e-13 1.00000e+00 + 6.200e+10 3.35898e-08 1.29214e-13 1.00000e+00 + 6.300e+10 3.30568e-08 1.27176e-13 1.00000e+00 + 6.400e+10 3.25411e-08 1.25334e-13 1.00000e+00 + 6.500e+10 3.20419e-08 1.23678e-13 1.00000e+00 + 6.600e+10 3.15583e-08 1.22199e-13 1.00000e+00 + 6.700e+10 3.10895e-08 1.20886e-13 1.00000e+00 + 6.800e+10 3.06346e-08 1.19731e-13 1.00000e+00 + 6.900e+10 3.01927e-08 1.18723e-13 1.00000e+00 + 7.000e+10 2.97630e-08 1.17853e-13 1.00000e+00 + 7.100e+10 2.93446e-08 1.17111e-13 1.00000e+00 + 7.200e+10 2.89370e-08 1.16380e-13 1.00000e+00 + 7.300e+10 2.85401e-08 1.15393e-13 1.00000e+00 + 7.400e+10 2.81538e-08 1.14172e-13 1.00000e+00 + 7.500e+10 2.77777e-08 1.12754e-13 1.00000e+00 + 7.600e+10 2.74115e-08 1.11179e-13 1.00000e+00 + 7.700e+10 2.70548e-08 1.09484e-13 1.00000e+00 + 7.800e+10 2.67075e-08 1.07707e-13 1.00000e+00 + 7.900e+10 2.63691e-08 1.05886e-13 1.00000e+00 + 8.000e+10 2.60394e-08 1.04060e-13 1.00000e+00 + 8.100e+10 2.57180e-08 1.02266e-13 1.00000e+00 + 8.200e+10 2.54046e-08 1.00543e-13 1.00000e+00 + 8.300e+10 2.50989e-08 9.89277e-14 1.00000e+00 + 8.400e+10 2.48007e-08 9.74592e-14 1.00000e+00 + 8.500e+10 2.45096e-08 9.61754e-14 1.00000e+00 + 8.600e+10 2.42252e-08 9.51142e-14 1.00000e+00 + 8.700e+10 2.39473e-08 9.43137e-14 1.00000e+00 + 8.800e+10 2.36756e-08 9.38120e-14 1.00000e+00 + 8.900e+10 2.34097e-08 9.36471e-14 1.00000e+00 + 9.000e+10 2.31496e-08 9.33817e-14 1.00000e+00 + 9.100e+10 2.28952e-08 9.26556e-14 1.00000e+00 + 9.200e+10 2.26463e-08 9.16002e-14 1.00000e+00 + 9.300e+10 2.24027e-08 9.03468e-14 1.00000e+00 + 9.400e+10 2.21644e-08 8.90268e-14 1.00000e+00 + 9.500e+10 2.19311e-08 8.77717e-14 1.00000e+00 + 9.600e+10 2.17027e-08 8.67127e-14 1.00000e+00 + 9.700e+10 2.14789e-08 8.59704e-14 1.00000e+00 + 9.800e+10 2.12597e-08 8.53046e-14 1.00000e+00 + 9.900e+10 2.10450e-08 8.45747e-14 1.00000e+00 + 1.000e+11 2.08345e-08 8.37885e-14 1.00000e+00 -------------------------------------------------- Final Statistics: -Current time = 115949571244.6344 -Steps = 740 -Step attempts = 784 +Current time = 104593591173.6704 +Steps = 139 +Step attempts = 141 Stability limited steps = 0 -Accuracy limited steps = 779 -Error test fails = 39 -NLS step fails = 5 +Accuracy limited steps = 139 +Error test fails = 0 +NLS step fails = 2 Inequality constraint fails = 0 Initial step size = 1e-08 -Last step size = 18264803707.2694 -Current step size = 18264803707.2694 +Last step size = 7800622211.884792 +Current step size = 22352983592.05556 Explicit RHS fn evals = 0 -Implicit RHS fn evals = 25084 -NLS iters = 21171 -NLS fails = 46 -NLS iters per step = 28.60945945945946 -LS setups = 208 -Jac fn evals = 52 +Implicit RHS fn evals = 4997 +NLS iters = 4298 +NLS fails = 39 +NLS iters per step = 30.92086330935252 +LS setups = 110 +Jac fn evals = 40 LS RHS fn evals = 0 Prec setup evals = 0 Prec solves = 0 @@ -133,5 +133,5 @@ LS fails = 0 Jac-times setups = 0 Jac-times evals = 0 LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.002456190071323981 +Jac evals per NLS iter = 0.009306654257794323 Prec evals per NLS iter = 0 diff --git a/examples/arkode/C_serial/ark_robertson_constraints.out b/examples/arkode/C_serial/ark_robertson_constraints.out index a5abcd3dfd..5144c1bda3 100644 --- a/examples/arkode/C_serial/ark_robertson_constraints.out +++ b/examples/arkode/C_serial/ark_robertson_constraints.out @@ -4,116 +4,116 @@ Robertson ODE test problem: t u v w -------------------------------------------------- 0.000e+00 1.00000e+00 0.00000e+00 0.00000e+00 - 1.000e+09 2.08372e-06 1.28623e-11 9.99998e-01 - 2.000e+09 1.04177e-06 4.17962e-12 9.99999e-01 - 3.000e+09 6.94491e-07 1.08662e-12 9.99999e-01 - 4.000e+09 5.20859e-07 2.11202e-12 9.99999e-01 - 5.000e+09 4.16681e-07 2.67597e-12 1.00000e+00 - 6.000e+09 3.47234e-07 1.32035e-12 1.00000e+00 - 7.000e+09 2.97625e-07 9.17289e-13 1.00000e+00 - 8.000e+09 2.60423e-07 1.34317e-12 1.00000e+00 - 9.000e+09 2.31483e-07 1.77831e-13 1.00000e+00 - 1.000e+10 2.08336e-07 8.66411e-14 1.00000e+00 - 1.100e+10 1.89400e-07 -1.20076e-12 1.00000e+00 - 1.200e+10 1.73615e-07 6.95917e-13 1.00000e+00 - 1.300e+10 1.60260e-07 6.35488e-13 1.00000e+00 - 1.400e+10 1.48812e-07 6.62922e-13 1.00000e+00 - 1.500e+10 1.38889e-07 9.89014e-13 1.00000e+00 - 1.600e+10 1.30210e-07 4.44922e-13 1.00000e+00 - 1.700e+10 1.22549e-07 1.72526e-12 1.00000e+00 - 1.800e+10 1.15739e-07 3.90984e-12 1.00000e+00 - 1.900e+10 1.09651e-07 4.44476e-13 1.00000e+00 - 2.000e+10 1.04167e-07 1.31808e-12 1.00000e+00 - 2.100e+10 9.92075e-08 7.65928e-13 1.00000e+00 - 2.200e+10 9.46989e-08 -1.16031e-13 1.00000e+00 - 2.300e+10 9.05834e-08 -2.00950e-12 1.00000e+00 - 2.400e+10 8.68068e-08 3.52748e-13 1.00000e+00 - 2.500e+10 8.33341e-08 4.86598e-13 1.00000e+00 - 2.600e+10 8.01289e-08 5.62896e-13 1.00000e+00 - 2.700e+10 7.71612e-08 6.08319e-13 1.00000e+00 - 2.800e+10 7.44056e-08 4.14818e-13 1.00000e+00 - 2.900e+10 7.18402e-08 6.98424e-14 1.00000e+00 - 3.000e+10 6.94449e-08 6.23385e-13 1.00000e+00 - 3.100e+10 6.72051e-08 2.68162e-13 1.00000e+00 - 3.200e+10 6.51049e-08 2.53517e-13 1.00000e+00 - 3.300e+10 6.31320e-08 2.53703e-13 1.00000e+00 - 3.400e+10 6.12751e-08 2.53682e-13 1.00000e+00 - 3.500e+10 5.95243e-08 2.90151e-13 1.00000e+00 - 3.600e+10 5.78709e-08 2.74982e-13 1.00000e+00 - 3.700e+10 5.63068e-08 2.31075e-13 1.00000e+00 - 3.800e+10 5.48248e-08 4.05480e-13 1.00000e+00 - 3.900e+10 5.34193e-08 2.94098e-13 1.00000e+00 - 4.000e+10 5.20839e-08 1.94391e-13 1.00000e+00 - 4.100e+10 5.08135e-08 2.15900e-13 1.00000e+00 - 4.200e+10 4.96037e-08 1.41126e-13 1.00000e+00 - 4.300e+10 4.84501e-08 1.79785e-13 1.00000e+00 - 4.400e+10 4.73464e-08 2.69369e-12 1.00000e+00 - 4.500e+10 4.62850e-08 1.18598e-11 1.00000e+00 - 4.600e+10 4.52825e-08 7.90431e-12 1.00000e+00 - 4.700e+10 4.43266e-08 1.76122e-13 1.00000e+00 - 4.800e+10 4.34029e-08 2.26422e-13 1.00000e+00 - 4.900e+10 4.25172e-08 1.84214e-13 1.00000e+00 - 5.000e+10 4.16669e-08 1.23287e-13 1.00000e+00 - 5.100e+10 4.08543e-08 -4.28961e-12 1.00000e+00 - 5.200e+10 4.00729e-08 -8.50417e-12 1.00000e+00 - 5.300e+10 3.93110e-08 -2.57802e-12 1.00000e+00 - 5.400e+10 3.85804e-08 1.47943e-13 1.00000e+00 - 5.500e+10 3.78772e-08 1.86930e-12 1.00000e+00 - 5.600e+10 3.72025e-08 1.31732e-13 1.00000e+00 - 5.700e+10 3.65494e-08 5.66584e-13 1.00000e+00 - 5.800e+10 3.59196e-08 1.78679e-13 1.00000e+00 - 5.900e+10 3.53112e-08 -1.92694e-13 1.00000e+00 - 6.000e+10 3.47222e-08 2.42813e-13 1.00000e+00 - 6.100e+10 3.41531e-08 1.50415e-13 1.00000e+00 - 6.200e+10 3.36022e-08 1.34708e-13 1.00000e+00 - 6.300e+10 3.30690e-08 -7.92804e-16 1.00000e+00 - 6.400e+10 3.25522e-08 1.27438e-13 1.00000e+00 - 6.500e+10 3.20515e-08 3.49793e-14 1.00000e+00 - 6.600e+10 3.15669e-08 -1.02211e-12 1.00000e+00 - 6.700e+10 3.10946e-08 1.41439e-13 1.00000e+00 - 6.800e+10 3.06374e-08 7.27249e-14 1.00000e+00 - 6.900e+10 3.01894e-08 4.00333e-12 1.00000e+00 - 7.000e+10 2.97602e-08 1.87205e-12 1.00000e+00 - 7.100e+10 2.93428e-08 1.30225e-13 1.00000e+00 - 7.200e+10 2.89354e-08 1.31656e-14 1.00000e+00 - 7.300e+10 2.85437e-08 -4.70269e-12 1.00000e+00 - 7.400e+10 2.81625e-08 -9.20849e-12 1.00000e+00 - 7.500e+10 2.77780e-08 -5.78693e-14 1.00000e+00 - 7.600e+10 2.74119e-08 5.68095e-13 1.00000e+00 - 7.700e+10 2.70563e-08 1.53510e-13 1.00000e+00 - 7.800e+10 2.67092e-08 3.61374e-13 1.00000e+00 - 7.900e+10 2.63714e-08 9.53870e-14 1.00000e+00 - 8.000e+10 2.60417e-08 1.04868e-13 1.00000e+00 - 8.100e+10 2.57202e-08 9.19696e-14 1.00000e+00 - 8.200e+10 2.54065e-08 1.04617e-13 1.00000e+00 - 8.300e+10 2.51004e-08 1.17459e-13 1.00000e+00 - 8.400e+10 2.48017e-08 4.24962e-14 1.00000e+00 - 8.500e+10 2.45107e-08 -7.68506e-13 1.00000e+00 - 8.600e+10 2.42268e-08 -1.88041e-12 1.00000e+00 - 8.700e+10 2.39489e-08 -2.44492e-12 1.00000e+00 - 8.800e+10 2.36760e-08 -1.61373e-12 1.00000e+00 - 8.900e+10 2.34086e-08 -2.03789e-13 1.00000e+00 - 9.000e+10 2.31474e-08 8.50587e-13 1.00000e+00 - 9.100e+10 2.28938e-08 1.36755e-13 1.00000e+00 - 9.200e+10 2.26451e-08 -2.32772e-14 1.00000e+00 - 9.300e+10 2.24015e-08 8.00906e-14 1.00000e+00 - 9.400e+10 2.21631e-08 8.59755e-14 1.00000e+00 - 9.500e+10 2.19305e-08 -5.14361e-13 1.00000e+00 - 9.600e+10 2.17023e-08 -7.48165e-13 1.00000e+00 - 9.700e+10 2.14796e-08 -1.80243e-12 1.00000e+00 - 9.800e+10 2.12586e-08 5.56097e-14 1.00000e+00 - 9.900e+10 2.10438e-08 1.05420e-13 1.00000e+00 - 1.000e+11 2.08333e-08 9.66856e-14 1.00000e+00 + 1.000e+09 2.08360e-06 8.36400e-12 9.99998e-01 + 2.000e+09 1.04172e-06 4.15311e-12 9.99999e-01 + 3.000e+09 6.94478e-07 2.68507e-12 9.99999e-01 + 4.000e+09 5.20856e-07 2.09660e-12 9.99999e-01 + 5.000e+09 4.16657e-07 1.69078e-12 1.00000e+00 + 6.000e+09 3.47223e-07 1.64565e-12 1.00000e+00 + 7.000e+09 2.97628e-07 1.19352e-12 1.00000e+00 + 8.000e+09 2.60424e-07 8.66465e-13 1.00000e+00 + 9.000e+09 2.31487e-07 9.48683e-13 1.00000e+00 + 1.000e+10 2.08338e-07 8.59228e-13 1.00000e+00 + 1.100e+10 1.89398e-07 7.19219e-13 1.00000e+00 + 1.200e+10 1.73614e-07 9.57213e-13 1.00000e+00 + 1.300e+10 1.60259e-07 6.37403e-13 1.00000e+00 + 1.400e+10 1.48812e-07 6.09353e-13 1.00000e+00 + 1.500e+10 1.38891e-07 6.06346e-13 1.00000e+00 + 1.600e+10 1.30210e-07 5.35055e-13 1.00000e+00 + 1.700e+10 1.22551e-07 3.22042e-13 1.00000e+00 + 1.800e+10 1.15742e-07 4.04820e-13 1.00000e+00 + 1.900e+10 1.09651e-07 3.51504e-13 1.00000e+00 + 2.000e+10 1.04168e-07 9.35110e-13 1.00000e+00 + 2.100e+10 9.92076e-08 3.93511e-13 1.00000e+00 + 2.200e+10 9.46983e-08 2.04458e-13 1.00000e+00 + 2.300e+10 9.05796e-08 1.53673e-12 1.00000e+00 + 2.400e+10 8.68056e-08 1.30024e-12 1.00000e+00 + 2.500e+10 8.33343e-08 3.32990e-13 1.00000e+00 + 2.600e+10 8.01291e-08 3.37100e-13 1.00000e+00 + 2.700e+10 7.71613e-08 3.05620e-13 1.00000e+00 + 2.800e+10 7.44054e-08 3.94416e-13 1.00000e+00 + 2.900e+10 7.18393e-08 7.39108e-13 1.00000e+00 + 3.000e+10 6.94451e-08 2.84752e-13 1.00000e+00 + 3.100e+10 6.72045e-08 6.82125e-13 1.00000e+00 + 3.200e+10 6.51045e-08 5.16099e-13 1.00000e+00 + 3.300e+10 6.31319e-08 2.40192e-13 1.00000e+00 + 3.400e+10 6.12751e-08 2.46306e-13 1.00000e+00 + 3.500e+10 5.95238e-08 7.21721e-13 1.00000e+00 + 3.600e+10 5.78709e-08 2.00297e-13 1.00000e+00 + 3.700e+10 5.63069e-08 1.73639e-13 1.00000e+00 + 3.800e+10 5.48250e-08 2.46595e-13 1.00000e+00 + 3.900e+10 5.34196e-08 -1.16870e-13 1.00000e+00 + 4.000e+10 5.20838e-08 1.99346e-13 1.00000e+00 + 4.100e+10 5.08134e-08 2.04472e-13 1.00000e+00 + 4.200e+10 4.96036e-08 1.87262e-13 1.00000e+00 + 4.300e+10 4.84499e-08 2.13767e-13 1.00000e+00 + 4.400e+10 4.73488e-08 2.29471e-13 1.00000e+00 + 4.500e+10 4.62967e-08 1.76227e-13 1.00000e+00 + 4.600e+10 4.52900e-08 3.33520e-13 1.00000e+00 + 4.700e+10 4.43264e-08 3.88600e-13 1.00000e+00 + 4.800e+10 4.34032e-08 8.18879e-14 1.00000e+00 + 4.900e+10 4.25173e-08 2.33610e-13 1.00000e+00 + 5.000e+10 4.16672e-08 -4.64379e-14 1.00000e+00 + 5.100e+10 4.08497e-08 4.58390e-13 1.00000e+00 + 5.200e+10 4.00644e-08 1.90111e-13 1.00000e+00 + 5.300e+10 3.93085e-08 1.55728e-13 1.00000e+00 + 5.400e+10 3.85806e-08 1.24168e-13 1.00000e+00 + 5.500e+10 3.78791e-08 9.10211e-14 1.00000e+00 + 5.600e+10 3.72026e-08 1.50409e-13 1.00000e+00 + 5.700e+10 3.65499e-08 2.22499e-13 1.00000e+00 + 5.800e+10 3.59194e-08 4.92181e-13 1.00000e+00 + 5.900e+10 3.53104e-08 6.77266e-13 1.00000e+00 + 6.000e+10 3.47221e-08 4.69444e-13 1.00000e+00 + 6.100e+10 3.41531e-08 2.96266e-13 1.00000e+00 + 6.200e+10 3.36027e-08 -2.17071e-13 1.00000e+00 + 6.300e+10 3.30690e-08 1.49732e-13 1.00000e+00 + 6.400e+10 3.25523e-08 1.29854e-13 1.00000e+00 + 6.500e+10 3.20515e-08 1.32955e-13 1.00000e+00 + 6.600e+10 3.15658e-08 1.34510e-13 1.00000e+00 + 6.700e+10 3.10947e-08 1.18914e-13 1.00000e+00 + 6.800e+10 3.06375e-08 1.07076e-13 1.00000e+00 + 6.900e+10 3.01934e-08 1.09958e-13 1.00000e+00 + 7.000e+10 2.97621e-08 1.27044e-13 1.00000e+00 + 7.100e+10 2.93429e-08 1.45700e-13 1.00000e+00 + 7.200e+10 2.89353e-08 1.49766e-13 1.00000e+00 + 7.300e+10 2.85390e-08 1.24366e-13 1.00000e+00 + 7.400e+10 2.81533e-08 9.86242e-14 1.00000e+00 + 7.500e+10 2.77779e-08 1.25270e-13 1.00000e+00 + 7.600e+10 2.74124e-08 1.42888e-13 1.00000e+00 + 7.700e+10 2.70565e-08 5.26740e-14 1.00000e+00 + 7.800e+10 2.67104e-08 -7.28172e-13 1.00000e+00 + 7.900e+10 2.63727e-08 -1.14768e-12 1.00000e+00 + 8.000e+10 2.60415e-08 3.94256e-13 1.00000e+00 + 8.100e+10 2.57207e-08 -2.84679e-13 1.00000e+00 + 8.200e+10 2.54066e-08 1.11491e-13 1.00000e+00 + 8.300e+10 2.51005e-08 1.10618e-13 1.00000e+00 + 8.400e+10 2.48017e-08 1.40226e-13 1.00000e+00 + 8.500e+10 2.45098e-08 2.09575e-13 1.00000e+00 + 8.600e+10 2.42247e-08 3.74730e-13 1.00000e+00 + 8.700e+10 2.39465e-08 8.48621e-14 1.00000e+00 + 8.800e+10 2.36744e-08 9.74612e-14 1.00000e+00 + 8.900e+10 2.34084e-08 8.94206e-14 1.00000e+00 + 9.000e+10 2.31483e-08 1.32787e-14 1.00000e+00 + 9.100e+10 2.28941e-08 -1.24333e-13 1.00000e+00 + 9.200e+10 2.26453e-08 -2.80975e-13 1.00000e+00 + 9.300e+10 2.24020e-08 -4.14209e-13 1.00000e+00 + 9.400e+10 2.21637e-08 -4.81596e-13 1.00000e+00 + 9.500e+10 2.19304e-08 -4.40697e-13 1.00000e+00 + 9.600e+10 2.17018e-08 -2.49072e-13 1.00000e+00 + 9.700e+10 2.14777e-08 1.39454e-13 1.00000e+00 + 9.800e+10 2.12587e-08 3.23759e-14 1.00000e+00 + 9.900e+10 2.10440e-08 -1.79065e-14 1.00000e+00 + 1.000e+11 2.08334e-08 7.89518e-14 1.00000e+00 -------------------------------------------------- Final Solver Statistics: - Internal solver steps = 353 (attempted = 519) - Total RHS evals: Fe = 0, Fi = 13780 - Total linear solver setups = 545 + Internal solver steps = 228 (attempted = 365) + Total RHS evals: Fe = 0, Fi = 8802 + Total linear solver setups = 381 Total RHS evals for setting up the linear system = 0 - Total number of Jacobian evaluations = 366 - Total number of Newton iterations = 11842 - Total number of nonlinear solver convergence failures = 363 + Total number of Jacobian evaluations = 259 + Total number of Newton iterations = 7593 + Total number of nonlinear solver convergence failures = 258 Total number of error test failures = 0 - Total number of constraint test failures = 2 - Total number of failed steps from solver failure = 164 + Total number of constraint test failures = 0 + Total number of failed steps from solver failure = 137 diff --git a/examples/arkode/C_serial/ark_robertson_root.out b/examples/arkode/C_serial/ark_robertson_root.out index f67f8d34a9..f4b80b8bf4 100644 --- a/examples/arkode/C_serial/ark_robertson_root.out +++ b/examples/arkode/C_serial/ark_robertson_root.out @@ -4,30 +4,30 @@ Robertson ODE test problem (with rootfinding): t u v w ----------------------------------------------------- 0.00000e+00 1.00000e+00 0.00000e+00 0.00000e+00 - 2.64019e-01 9.89965e-01 3.47058e-05 1.00000e-02 + 2.64019e-01 9.89965e-01 3.47057e-05 1.00000e-02 rootsfound[] = 0 1 - 4.00000e+00 9.05519e-01 2.24048e-05 9.44589e-02 - 4.00000e+01 7.15827e-01 9.18550e-06 2.84164e-01 - 4.00000e+02 4.50519e-01 3.22290e-06 5.49478e-01 - 4.00000e+03 1.83202e-01 8.94213e-07 8.16797e-01 - 4.00000e+04 3.89834e-02 1.62170e-07 9.61016e-01 - 4.00000e+05 4.93828e-03 1.98505e-08 9.95062e-01 - 4.00000e+06 5.16811e-04 2.06833e-09 9.99483e-01 - 2.07956e+07 1.00000e-04 4.00054e-10 9.99900e-01 + 4.00000e+00 9.05519e-01 2.24054e-05 9.44589e-02 + 4.00000e+01 7.15825e-01 9.18460e-06 2.84166e-01 + 4.00000e+02 4.50519e-01 3.22263e-06 5.49478e-01 + 4.00000e+03 1.83190e-01 8.93942e-07 8.16809e-01 + 4.00000e+04 3.89837e-02 1.62089e-07 9.61016e-01 + 4.00000e+05 4.93828e-03 1.98477e-08 9.95062e-01 + 4.00000e+06 5.16780e-04 2.06948e-09 9.99483e-01 + 2.07922e+07 1.00000e-04 3.98851e-10 9.99900e-01 rootsfound[] = -1 0 - 4.00000e+08 5.20672e-06 2.05159e-11 9.99995e-01 - 4.00000e+09 5.20802e-07 1.54856e-12 9.99999e-01 - 4.00000e+10 5.20846e-08 2.09189e-13 1.00000e+00 + 4.00000e+08 5.20756e-06 2.04508e-11 9.99995e-01 + 4.00000e+09 5.20868e-07 2.08696e-12 9.99999e-01 + 4.00000e+10 5.20728e-08 2.24134e-13 1.00000e+00 ----------------------------------------------------- Final Solver Statistics: - Internal solver steps = 748 (attempted = 813) - Total RHS evals: Fe = 0, Fi = 25698 - Total linear solver setups = 263 + Internal solver steps = 138 (attempted = 151) + Total RHS evals: Fe = 0, Fi = 4875 + Total linear solver setups = 131 Total RHS evals for setting up the linear system = 0 - Total number of Jacobian evaluations = 65 - Total number of Newton iterations = 21684 - Total root-function g evals = 776 - Total number of nonlinear solver convergence failures = 59 - Total number of error test failures = 47 - Total number of failed steps from solver failure = 18 + Total number of Jacobian evaluations = 57 + Total number of Newton iterations = 4161 + Total root-function g evals = 179 + Total number of nonlinear solver convergence failures = 56 + Total number of error test failures = 0 + Total number of failed steps from solver failure = 13 diff --git a/examples/arkode/F2003_serial/ark_analytic_f2003.out b/examples/arkode/F2003_serial/ark_analytic_f2003.out index c5c64ac439..e58085cbae 100644 --- a/examples/arkode/F2003_serial/ark_analytic_f2003.out +++ b/examples/arkode/F2003_serial/ark_analytic_f2003.out @@ -6,7 +6,7 @@ 0.00000E+00 0.00000E+00 1.00000E+00 7.85398E-01 2.00000E+00 1.10715E+00 - 3.00000E+00 1.24905E+00 + 3.00000E+00 1.24904E+00 4.00000E+00 1.32582E+00 5.00000E+00 1.37340E+00 6.00000E+00 1.40565E+00 @@ -16,15 +16,15 @@ 1.00000E+01 1.47113E+00 General Solver Stats: - Total internal steps taken = 419 - Total internal steps attempts = 424 - Total rhs function calls = 5090 - Num lin solver setup calls = 43 - Num error test failures = 5 + Total internal steps taken = 65 + Total internal steps attempts = 69 + Total rhs function calls = 1106 + Num lin solver setup calls = 25 + Num error test failures = 4 First internal step size = 6.10352E-12 - Last internal step size = 6.85164E-02 - Next internal step size = 6.85164E-02 - Current internal time = 1.00642E+01 - Num nonlinear solver iters = 2967 - Num nonlinear solver fails = 4 + Last internal step size = 7.33055E-01 + Next internal step size = 1.15922E+00 + Current internal time = 1.02733E+01 + Num nonlinear solver iters = 758 + Num nonlinear solver fails = 1 diff --git a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out index a78e16c9fd..813100a750 100644 --- a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out +++ b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out @@ -28,10 +28,10 @@ MRIStep Solver Statistics: Internal solver steps = 1000 Total RHS evals: Fe = 2769 Total linear solver setups = 50 - Total linear iterations = 6250 - Total number of Jacobian-vector products = 6250 + Total linear iterations = 6236 + Total number of Jacobian-vector products = 6236 Total number of Preconditioner setups = 50 - Total number of Preconditioner solves = 6250 + Total number of Preconditioner solves = 6236 Total number of linear solver convergence failures = 0 Total number of Newton iterations = 1768 Total number of nonlinear solver convergence failures = 0 diff --git a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out index bbf3267c89..8c26b3c75c 100644 --- a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out +++ b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out @@ -28,10 +28,10 @@ MRIStep Solver Statistics: Internal solver steps = 1000 Total RHS evals: Fe = 2001 Total linear solver setups = 1 - Total linear iterations = 4731 - Total number of Jacobian-vector products = 4731 + Total linear iterations = 4709 + Total number of Jacobian-vector products = 4709 Total number of Preconditioner setups = 1 - Total number of Preconditioner solves = 4731 + Total number of Preconditioner solves = 4709 Total number of linear solver convergence failures = 0 Total number of Newton iterations = 1000 Total number of nonlinear solver convergence failures = 0 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_butcher.out b/test/unit_tests/arkode/CXX_serial/ark_test_butcher.out index 559c92b3ae..af1a1e9936 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_butcher.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_butcher.out @@ -50,6 +50,8 @@ ARKodeButcherTable_CheckOrder: Testing method ARKODE_FORWARD_EULER_1_1: table matches predicted method/embedding orders of 1/0 Testing method ARKODE_RALSTON_EULER_2_1_2: table matches predicted method/embedding orders of 2/1 Testing method ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2: table matches predicted method/embedding orders of 2/1 +Testing method ARKODE_RALSTON_3_1_2: table matches predicted method/embedding orders of 2/1 +Testing method ARKODE_TSITOURAS_7_4_5: table matches predicted method/embedding orders of 5/4 Testing individual DIRK methods: diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_-1_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_-1_0.out index 251a290409..787afaea84 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_-1_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_-1_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_0.out index a5d862a551..91f351282f 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 20 + expected: 20 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 26 + expected: 26 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_1.out index b5755efd07..d83e21f6cc 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_0_1.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 20 + expected: 20 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 26 + expected: 26 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_0.out index 85b1436888..a4250ec2d7 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_1.out index dc65841178..745e569a91 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_0_1_1.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_-1_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_-1_0.out index a635cf9f2b..5b8c3cd4ce 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_-1_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_-1_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_0.out index 17271d2d55..b0729eeb1a 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 20 + expected: 20 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 26 + expected: 26 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_1.out index db53a029b4..4fd408ec58 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_0_1.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 20 + expected: 20 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 26 + expected: 26 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_0.out index 360e2985b9..c7b9c2c722 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_1.out index 7b6e6eaa43..baf8edeaf5 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_1_1_1.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_-1_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_-1_0.out index 7febbb08dc..99d96ef61a 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_-1_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_-1_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_0.out index e10f1f5d4c..9cb1e7c680 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 20 + expected: 20 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 26 + expected: 26 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_1.out index 23ba95fc26..b88535e887 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_0_1.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 20 + expected: 20 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 26 + expected: 26 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_0.out index 6104aab893..f88520d0cc 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_0.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_1.out index 8e069fe420..99cf47e2b0 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_ark_2_1_1.out @@ -888,6 +888,76 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ERK: ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ERK: ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + ======================== Test implicit RK methods ======================== diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_-1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_-1.out index 7943fd7e1b..d560ef3256 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_-1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_-1.out @@ -885,5 +885,75 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + All tests passed! diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_0.out index e252ae486b..cfa9d29396 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_0.out @@ -885,5 +885,75 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 20 + expected: 20 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 26 + expected: 26 +-------------------- + All tests passed! diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_1.out index c62f75edf0..d6e8467efc 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_erk_1.out @@ -885,5 +885,75 @@ Fe RHS evals: expected: 8 -------------------- +======================== +ARKODE_RALSTON_3_1_2 + stages: 3 + order: 2 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 3 + expected: 3 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 5 + expected: 5 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Dense Output +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 9 + expected: 9 +-------------------- + +======================== +ARKODE_TSITOURAS_7_4_5 + stages: 7 + order: 5 + explicit 1st stage: 1 + stiffly accurate: 1 + first same as last: 1 +======================== +-------------------- +Steps: 1 +Fe RHS evals: + actual: 7 + expected: 7 +-------------------- +Steps: 2 +Fe RHS evals: + actual: 13 + expected: 13 +-------------------- +Steps: 3 +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Dense Output +Fe RHS evals: + actual: 19 + expected: 19 +-------------------- +Steps: 4 +Fe RHS evals: + actual: 25 + expected: 25 +-------------------- + All tests passed! diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out index 9f09d86912..39975addfc 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out @@ -149,7 +149,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -5.3153e-12 + Error = -5.31541e-12 Steps = 1 Fe evals = 5 Fi evals = 0 @@ -344,7 +344,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = 1.36036e-12 + Error = 1.3608e-12 Steps = 1 Fe evals = 0 Fi evals = 10 @@ -580,7 +580,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.970446 y_n = 0.970446 - Error = -2.09769e-11 + Error = -2.0977e-11 Steps = 1 Fe evals = 6 Fi evals = 11 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out index 4591cb3cd3..c3dfe1282b 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out @@ -149,7 +149,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -5.3153e-12 + Error = -5.31541e-12 Steps = 1 Fe evals = 5 Fi evals = 0 @@ -344,7 +344,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = 1.36036e-12 + Error = 1.3608e-12 Steps = 1 Fe evals = 0 Fi evals = 10 @@ -580,7 +580,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.970446 y_n = 0.970446 - Error = -2.09769e-11 + Error = -2.0977e-11 Steps = 1 Fe evals = 6 Fi evals = 11 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out index 5311a51fcd..1b28df5a23 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out @@ -149,7 +149,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -5.3153e-12 + Error = -5.31541e-12 Steps = 1 Fe evals = 5 Fi evals = 0 @@ -344,7 +344,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = 1.36036e-12 + Error = 1.3608e-12 Steps = 1 Fe evals = 0 Fi evals = 10 @@ -580,7 +580,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.970446 y_n = 0.970446 - Error = -2.09769e-11 + Error = -2.0977e-11 Steps = 1 Fe evals = 6 Fi evals = 11 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_getjac.out b/test/unit_tests/arkode/CXX_serial/ark_test_getjac.out index 55510d3575..6cd23ccbc6 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_getjac.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_getjac.out @@ -1,9 +1,9 @@ Jac nst = 0 -Jac t = 2.574576339619671e-05 +Jac t = 5.149152679239342e-05 Index J DQ J true absolute difference relative difference ------------------------------------------------------------------------------------------------------------ - 0 -1.999995689060819e+00 -1.999995709039434e+00 1.997861476255025e-08 -9.989328813183135e-09 - 1 4.999999950267850e-01 5.000000000000000e-01 4.973214950965144e-09 9.946429901930287e-09 - 2 4.999999864690596e-01 5.000000000000000e-01 1.353094036815605e-08 2.706188073631211e-08 - 3 -9.982835887986570e-01 -9.982836157735868e-01 2.697492984538030e-08 -2.702130879357063e-08 + 0 -1.999991397768883e+00 -1.999991418078868e+00 2.030998458302236e-08 -1.015503586636963e-08 + 1 4.999999949079691e-01 5.000000000000000e-01 5.092030852527074e-09 1.018406170505415e-08 + 2 4.999999533268726e-01 5.000000000000000e-01 4.667312741846175e-08 9.334625483692349e-08 + 3 -9.965671388854774e-01 -9.965672315471739e-01 9.266169642696553e-08 -9.298087825254695e-08 From 1660217b4a7c158c60a94b4d7ec8e82f6af2e2d2 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 17:49:48 -0700 Subject: [PATCH 22/67] Remove MRI constants --- doc/arkode/guide/source/Constants.rst | 78 --------------------------- 1 file changed, 78 deletions(-) diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index e27a227969..faa8172bf4 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -147,84 +147,6 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | :index:`MRISTEP_IMEX` | Use an ImEx (at the slow time scale) MRI method. | +-----------------------------------------------+------------------------------------------------------------+ - | | | - +-----------------------------------------------+------------------------------------------------------------+ - | **MRI coupling table specification** | | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_FORWARD_EULER` | Use the forward Euler MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_ERK22b` | Use the ERK22b MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_ERK22a` | Use the ERK22a MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_RALSTON2` | Use the second order Ralston MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MIS_MW3` | Use the Knoth-Wolke-3 MIS method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_ERK33a` | Use the ERK33a MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_RALSTON3` | Use the third order Ralston MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_ERK45a` | Use the ERK45a MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_BACKWARD_EULER` | Use the backward Euler MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_IRK21a` | Use the IRK21a MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_IMPLICIT_MIDPOINT` | Use the implicit midpoint MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_ESDIRK34a` | Use the ESDIRK34a MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_MRI_GARK_ESDIRK46a` | Use the ESDIRK46a MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMEX_MRI_GARK_EULER` | Use the Euler IMEX-MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMEX_MRI_GARK_TRAPEZOIDAL` | Use the trapezoidal rule IMEX-MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMEX_MRI_GARK_MIDPOINT` | Use the midpoint rule IMEX-MRI-GARK method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMEX_MRI_GARK3a` | Use the IMEX-MRI-GARK3a method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMEX_MRI_GARK3b` | Use the IMEX-MRI-GARK3b method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_IMEX_MRI_GARK4` | Use the IMEX-MRI-GARK4 method. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_EXPL_TABLE_1` | Use MRIStep's default 1st-order explicit method | - | | (MRI_GARK_FORWARD_EULER). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_EXPL_TABLE_2` | Use MRIStep's default 2nd-order explicit method | - | | (MRI_GARK_ERK22b). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_EXPL_TABLE_3` | Use MRIStep's default 3rd-order explicit method | - | | (MIS_MW3). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_EXPL_TABLE_4` | Use MRIStep's default 4th-order explicit method | - | | (MRI_GARK_ERK45a). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMPL_SD_TABLE_1` | Use MRIStep's default 1st-order solve-decoupled implicit | - | | method (MRI_GARK_BACKWARD_EULER). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMPL_SD_TABLE_2` | Use MRIStep's default 2nd-order solve-decoupled implicit | - | | method (MRI_GARK_IRK21a). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMPL_SD_TABLE_3` | Use MRIStep's default 3rd-order solve-decoupled implicit | - | | method (MRI_GARK_ESDIRK34a). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMPL_SD_TABLE_4` | Use MRIStep's default 4th-order solve-decoupled implicit | - | | method (MRI_GARK_ESDIRK46a). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMEX_SD_TABLE_1` | Use MRIStep's default 1st-order solve-decoupled ImEx | - | | method (IMEX_MRI_GARK_EULER). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMEX_SD_TABLE_2` | Use MRIStep's default 2nd-order solve-decoupled ImEx | - | | method (ARKODE_IMEX_MRI_GARK_TRAPEZOIDAL). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMEX_SD_TABLE_3` | Use MRIStep's default 3rd-order solve-decoupled ImEx | - | | method (IMEX_MRI_GARK3b). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`MRISTEP_DEFAULT_IMEX_SD_TABLE_4` | Use MRIStep's default 4th-order solve-decoupled ImEx | - | | method (IMEX_MRI_GARK4). | - +-----------------------------------------------+------------------------------------------------------------+ From f640b9add810caab11f51cfb3aff33c94626e006 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 17:50:06 -0700 Subject: [PATCH 23/67] Update ERK to use enumerators --- doc/arkode/guide/source/Butcher.rst | 349 +++++++--------------------- 1 file changed, 90 insertions(+), 259 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 49c5d310a0..955a24f35a 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -140,85 +140,78 @@ half-plane indicate an `A-stable` method. Explicit Butcher tables --------------------------- -In the category of explicit Runge--Kutta methods, ARKODE includes -methods that have orders 2 through 9, with embeddings that are of -orders 1 through 8. Each of ARKODE's explicit Butcher tables are -specified via a unique ID and name: +In the category of explicit Runge--Kutta methods, ARKODE includes methods that +have orders 2 through 9, with embeddings that are of orders 1 through 8. +ARKODE's explicit Butcher tables are provided in the enumeration .. c:enum:: ARKODE_ERKTableID -with values specified for each method below (e.g., ``ARKODE_HEUN_EULER_2_1_2``). -A summary of the method is given in :numref:`ARKODE.Butcher.ERK_properties`. +with values specified in :numref:`ARKODE.Butcher.ERK_properties`. .. _ARKODE.Butcher.ERK_properties: .. table:: Explicit Butcher tables. The default method for each order is marked with an asterisk (*). - +------------------------------------------+--------+----------------+-------+ - | Method ID | Stages | Embedded Order | Order | - +==========================================+========+================+=======+ - | ``ARKODE_FORWARD_EULER_1_1`` | 1 | --- | 1* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_RALSTON_3_1_2`` | 3 | 1 | 2* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_HEUN_EULER_2_1_2`` | 2 | 1 | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_RALSTON_EULER_2_1_2`` | 2 | 1 | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2`` | 2 | 1 | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK2_ERK_3_1_2`` | 3 | 1 | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_BOGACKI_SHAMPINE_4_2_3`` | 4 | 2 | 3* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK324L2SA_ERK_4_2_3`` | 4 | 2 | 3 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_SHU_OSHER_3_2_3`` | 3 | 2 | 3 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_KNOTH_WOLKE_3_3`` | 3 | --- | 3 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_SOFRONIOU_SPALETTA_5_3_4`` | 5 | 3 | 4* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ZONNEVELD_5_3_4`` | 5 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK436L2SA_ERK_6_3_4`` | 6 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK437L2SA_ERK_7_3_4`` | 7 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_SAYFY_ABURUB_6_3_4`` | 6 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_TSITOURAS_7_4_5`` | 7 | 4 | 5* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_CASH_KARP_6_4_5`` | 6 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_FEHLBERG_6_4_5`` | 6 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_DORMAND_PRINCE_7_4_5`` | 7 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK548L2SA_ERK_8_4_5`` | 8 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK548L2SAb_ERK_8_4_5`` | 8 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_VERNER_9_5_6`` | 9 | 5 | 6* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_VERNER_8_5_6`` | 8 | 5 | 6 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_VERNER_10_6_7`` | 10 | 6 | 7* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_VERNER_13_7_8`` | 13 | 7 | 8* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_FEHLBERG_13_7_8`` | 13 | 7 | 8 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_VERNER_16_8_9`` | 16 | 8 | 9* | - +------------------------------------------+--------+----------------+-------+ - - -.. _Butcher.Forward_Euler: - -Forward-Euler-1-1 -^^^^^^^^^^^^^^^^^ - -.. index:: Forward-Euler-1-1 ERK method + +------------------------------------------------------+--------+----------------+-------+ + | Method ID | Stages | Embedded Order | Order | + +======================================================+========+================+=======+ + | :c:enumerator:`ARKODE_FORWARD_EULER_1_1` | 1 | --- | 1* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_RALSTON_3_1_2` | 3 | 1 | 2* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_HEUN_EULER_2_1_2` | 2 | 1 | 2 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_RALSTON_EULER_2_1_2` | 2 | 1 | 2 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2` | 2 | 1 | 2 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK2_ERK_3_1_2` | 3 | 1 | 2 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_BOGACKI_SHAMPINE_4_2_3` | 4 | 2 | 3* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK324L2SA_ERK_4_2_3` | 4 | 2 | 3 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_SHU_OSHER_3_2_3` | 3 | 2 | 3 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_KNOTH_WOLKE_3_3` | 3 | --- | 3 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_SOFRONIOU_SPALETTA_5_3_4` | 5 | 3 | 4* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ZONNEVELD_5_3_4` | 5 | 3 | 4 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK436L2SA_ERK_6_3_4` | 6 | 3 | 4 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK437L2SA_ERK_7_3_4` | 7 | 3 | 4 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_SAYFY_ABURUB_6_3_4` | 6 | 3 | 4 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_TSITOURAS_7_4_5` | 7 | 4 | 5* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_CASH_KARP_6_4_5` | 6 | 4 | 5 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_FEHLBERG_6_4_5` | 6 | 4 | 5 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_DORMAND_PRINCE_7_4_5` | 7 | 4 | 5 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK548L2SA_ERK_8_4_5` | 8 | 4 | 5 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK548L2SAb_ERK_8_4_5` | 8 | 4 | 5 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_VERNER_9_5_6` | 9 | 5 | 6* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_VERNER_8_5_6` | 8 | 5 | 6 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_VERNER_10_6_7` | 10 | 6 | 7* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_VERNER_13_7_8` | 13 | 7 | 8* | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_FEHLBERG_13_7_8` | 13 | 7 | 8 | + +------------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_VERNER_16_8_9` | 16 | 8 | 9* | + +------------------------------------------------------+--------+----------------+-------+ + + +.. c:enumerator:: ARKODE_FORWARD_EULER_1_1 Accessible via the constant ``ARKODE_FORWARD_EULER_1_1`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -244,12 +237,7 @@ This is the default 1st order explicit method (from :cite:p:`Euler:68`). Linear stability region for the forward Euler method. -.. _Butcher.Ralston: - -Ralston-3-1-2 -^^^^^^^^^^^^^ - -.. index:: Ralston-3-1-2 ERK method +.. c:enumerator:: ARKODE_RALSTON_3_1_2 Accessible via the constant ``ARKODE_RALSTON_3_1_2`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -284,12 +272,7 @@ This is the default 2nd order explicit method region is outlined in blue; the embedding's region is in red. -.. _Butcher.Heun_Euler: - -Heun-Euler-2-1-2 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: Heun-Euler-2-1-2 ERK method +.. c:enumerator:: ARKODE_HEUN_EULER_2_1_2 Accessible via the constant ``ARKODE_HEUN_EULER_2_1_2`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -322,12 +305,7 @@ Accessible via the string ``"ARKODE_HEUN_EULER_2_1_2"`` to region is outlined in blue; the embedding's region is in red. -.. _Butcher.Ralston_Euler: - -Ralston-Euler-2-1-2 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: Ralston-Euler-2-1-2 ERK method +.. c:enumerator:: ARKODE_RALSTON_EULER_2_1_2 Accessible via the constant ``ARKODE_RALSTON_EULER_2_1_2`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -356,12 +334,7 @@ Accessible via the string ``"ARKODE_RALSTON_EULER_2_1_2"`` to region is outlined in blue; the embedding's region is in red. -.. _Butcher.Explicit_Midpoint_Euler: - -Explicit-Midpoint-Euler-2-1-2 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Explicit-Midpoint-Euler-2-1-2 ERK method +.. c:enumerator:: ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2 Accessible via the constant ``ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -390,12 +363,7 @@ Accessible via the string ``"ARKODE_EXPLICIT_MIDPOINT_EULER_2_1_2"`` to region is outlined in blue; the embedding's region is in red. -.. _Butcher.ARK2_ERK: - -ARK2-ERK-3-1-2 -^^^^^^^^^^^^^^ - -.. index:: ARK2-ERK-3-1-2 +.. c:enumerator:: ARKODE_ARK2_ERK_3_1_2 Accessible via the constant ``ARKODE_ARK2_ERK_3_1_2`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -426,12 +394,7 @@ explicit portion of the ARK2 method from :cite:p:`giraldo2013implicit`). region is outlined in blue; the embedding's region is in red. -.. _Butcher.Bogacki_Shampine: - -Bogacki-Shampine-4-2-3 -^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Bogacki-Shampine-4-2-3 ERK method +.. c:enumerator:: ARKODE_BOGACKI_SHAMPINE_4_2_3 Accessible via the constant ``ARKODE_BOGACKI_SHAMPINE_4_2_3`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -463,14 +426,7 @@ explicit method (from :cite:p:`Bogacki:89`). region is outlined in blue; the embedding's region is in red. - - -.. _Butcher.ARK_4_2_3_E: - -ARK324L2SA-ERK-4-2-3 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK324L2SA-ERK-4-2-3 method +.. c:enumerator:: ARKODE_ARK324L2SA_ERK_4_2_3 Accessible via the constant ``ARKODE_ARK324L2SA_ERK_4_2_3`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -503,10 +459,7 @@ method from :cite:p:`KenCarp:03`). region is outlined in blue; the embedding's region is in red. -Shu-Osher-3-2-3 -^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Shu-Osher-3-2-3 ERK method +.. c:enumerator:: ARKODE_SHU_OSHER_3_2_3 Accessible via the constant ``ARKODE_SHU_OSHER_3_2_3`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` or @@ -536,13 +489,7 @@ Accessible via the string ``"ARKODE_SHU_OSHER_3_2_3"`` to region is outlined in blue; the embedding's region is in red. - -.. _Butcher.Knoth_Wolke: - -Knoth-Wolke-3-3 -^^^^^^^^^^^^^^^^^^ - -.. index:: Knoth-Wolke-3-3 ERK method +.. c:enumerator:: ARKODE_KNOTH_WOLKE_3_3 Accessible via the constant ``ARKODE_KNOTH_WOLKE_3_3`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum`, or @@ -571,12 +518,7 @@ This is the default 3th order slow and fast MRIStep method (from Linear stability region for the Knoth-Wolke method -.. _Butcher.Sofroniou_Spaletta: - -Sofroniou-Spaletta-5-3-4 -^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Sofroniou-Spaletta-5-3-4 ERK method +.. c:enumerator:: ARKODE_SOFRONIOU_SPALETTA_5_3_4 Accessible via the constant ``ARKODE_SOFRONIOU_SPALETTA_5_3_4`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -613,14 +555,7 @@ This is the default 4th order explicit method. region is outlined in blue; the embedding's region is in red. - - -.. _Butcher.Zonneveld: - -Zonneveld-5-3-4 -^^^^^^^^^^^^^^^^^^ - -.. index:: Zonneveld-5-3-4 ERK method +.. c:enumerator:: ARKODE_ZONNEVELD_5_3_4 Accessible via the constant ``ARKODE_ZONNEVELD_5_3_4`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum`, or @@ -656,15 +591,7 @@ Accessible via the string ``"ARKODE_ZONNEVELD_5_3_4"`` to region is outlined in blue; the embedding's region is in red. - - - -.. _Butcher.ARK_6_3_4_E: - -ARK436L2SA-ERK-6-3-4 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK436L2SA-ERK-6-3-4 method +.. c:enumerator:: ARKODE_ARK436L2SA_ERK_6_3_4 Accessible via the constant ``ARKODE_ARK436L2SA_ERK_6_3_4`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -702,14 +629,7 @@ This is the explicit portion of the ARK4(3)6L[2]SA method from region is outlined in blue; the embedding's region is in red. - - -.. _Butcher.ARK_7_3_4_E: - -ARK437L2SA-ERK-7-3-4 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK437L2SA-ERK-7-3-4 method +.. c:enumerator:: ARKODE_ARK437L2SA_ERK_7_3_4 Accessible via the constant ``ARKODE_ARK437L2SA_ERK_7_3_4`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -754,14 +674,7 @@ explicit portion of the ARK4(3)7L[2]SA method from :cite:p:`KenCarp:19`. region is outlined in blue; the embedding's region is in red. - - -.. _Butcher.Sayfy_Aburub: - -Sayfy-Aburub-6-3-4 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Sayfy-Aburub-6-3-4 ERK method +.. c:enumerator:: ARKODE_SAYFY_ABURUB_6_3_4 Accessible via the constant ``ARKODE_SAYFY_ABURUB_6_3_4`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -794,12 +707,7 @@ Accessible via the string ``"ARKODE_SAYFY_ABURUB_6_3_4"`` to region is outlined in blue; the embedding's region is in red. -.. _Butcher.Tsitouras: - -Tsitouras-7-4-5 -^^^^^^^^^^^^^^^ - -.. index:: Tsitouras-7-4-5 ERK method +.. c:enumerator:: ARKODE_TSITOURAS_7_4_5 Accessible via the constant ``ARKODE_TSITOURAS_7_4_5`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -844,12 +752,7 @@ This is the default 5th order explicit method (from :cite:p:`Tsitouras:11`). region is outlined in blue; the embedding's region is in red. -.. _Butcher.Cash-Karp: - -Cash-Karp-6-4-5 -^^^^^^^^^^^^^^^^^^ - -.. index:: Cash-Karp-6-4-5 ERK method +.. c:enumerator:: ARKODE_CASH_KARP_6_4_5 Accessible via the constant ``ARKODE_CASH_KARP_6_4_5`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -886,17 +789,7 @@ Accessible via the string ``"ARKODE_CASH_KARP_6_4_5"`` to region is outlined in blue; the embedding's region is in red. - - - - - -.. _Butcher.Fehlberg: - -Fehlberg-6-4-5 -^^^^^^^^^^^^^^^^^ - -.. index:: Fehlberg-6-4-5 ERK method +.. c:enumerator:: ARKODE_FEHLBERG_6_4_5 Accessible via the constant ``ARKODE_FEHLBERG_6_4_5`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -929,15 +822,7 @@ Accessible via the string ``"ARKODE_FEHLBERG_6_4_5"`` to region is outlined in blue; the embedding's region is in red. - - - -.. _Butcher.Dormand_Prince: - -Dormand-Prince-7-4-5 -^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Dormand-Prince-7-4-5 ERK method +.. c:enumerator:: ARKODE_DORMAND_PRINCE_7_4_5 Accessible via the constant ``ARKODE_DORMAND_PRINCE_7_4_5`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -971,15 +856,7 @@ Accessible via the string ``"ARKODE_DORMAND_PRINCE_7_4_5"`` to region is outlined in blue; the embedding's region is in red. - - - -.. _Butcher.ARK_8_4_5_E: - -ARK548L2SA-ERK-8-4-5 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK548L2SA-ERK-8-4-5 method +.. c:enumerator:: ARKODE_ARK548L2SA_ERK_8_4_5 Accessible via the constant ``ARKODE_ARK548L2SA_ERK_8_4_5`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -1026,16 +903,7 @@ This is the explicit portion of the ARK5(4)8L[2]SA method from region is outlined in blue; the embedding's region is in red. - - - - -.. _Butcher.ARK_8_4_5b_E: - -ARK548L2SAb-ERK-8-4-5 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK548L2SAb-ERK-8-4-5 method +.. c:enumerator:: ARKODE_ARK548L2SAb_ERK_8_4_5 Accessible via the constant ``ARKODE_ARK548L2SAb_ERK_8_4_5`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -1083,13 +951,7 @@ explicit portion of the 5th order ARK5(4)8L[2]SA method from region is outlined in blue; the embedding's region is in red. - -.. _Butcher.Verner-6-5b: - -Verner-9-5-6 -^^^^^^^^^^^^^^ - -.. index:: Verner-9-5-6 ERK method +.. c:enumerator:: ARKODE_VERNER_9_5_6 Accessible via the constant ``ARKODE_VERNER_9_5_6`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -1139,14 +1001,7 @@ This is the default 6th order explicit method region is outlined in blue; the embedding's region is in red. - - -.. _Butcher.Verner-6-5: - -Verner-8-5-6 -^^^^^^^^^^^^^^ - -.. index:: Verner-8-5-6 ERK method +.. c:enumerator:: ARKODE_VERNER_8_5_6 Accessible via the constant ``ARKODE_VERNER_8_5_6`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -1185,13 +1040,7 @@ Accessible via the string ``"ARKODE_VERNER_8_5_6"`` to region is outlined in blue; the embedding's region is in red. - -.. _Butcher.Verner-7-6: - -Verner-10-6-7 -^^^^^^^^^^^^^^ - -.. index:: Verner-10-6-7 ERK method +.. c:enumerator:: ARKODE_VERNER_10_6_7 Accessible via the constant ``ARKODE_VERNER_10_6_7`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -1235,13 +1084,7 @@ This is the default 7th order explicit method (from :cite:p:`Ver:10`). region is outlined in blue; the embedding's region is in red. - -.. _Butcher.Verner-8-7: - -Verner-13-7-8 -^^^^^^^^^^^^^^ - -.. index:: Verner-13-7-8 ERK method +.. c:enumerator:: ARKODE_VERNER_13_7_8 Accessible via the constant ``ARKODE_VERNER_13_7_8`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -1294,13 +1137,7 @@ This is the default 8th order explicit method region is outlined in blue; the embedding's region is in red. - -.. _Butcher.Fehlberg-8-7: - -Fehlberg-13-7-8 -^^^^^^^^^^^^^^^^^^ - -.. index:: Fehlberg-13-7-8 ERK method +.. c:enumerator:: ARKODE_FEHLBERG_13_7_8 Accessible via the constant ``ARKODE_FEHLBERG_13_7_8`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` @@ -1345,13 +1182,7 @@ Accessible via the string ``"ARKODE_FEHLBERG_13_7_8"`` to region is outlined in blue; the embedding's region is in red. - -.. _Butcher.Verner-9-8: - -Verner-16-8-9 -^^^^^^^^^^^^^^ - -.. index:: Verner-16-8-9 ERK method +.. c:enumerator:: ARKODE_VERNER_16_8_9 Accessible via the constant ``ARKODE_VERNER_16_8_9`` to :c:func:`ARKStepSetTableNum`, :c:func:`ERKStepSetTableNum` From d2a3a4a6f0f602a1d0daa1183e08e786f72d5075 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 18:02:03 -0700 Subject: [PATCH 24/67] Update DIRK to use enumerators --- doc/arkode/guide/source/Butcher.rst | 363 +++++++--------------------- 1 file changed, 91 insertions(+), 272 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 955a24f35a..733cf76db2 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -1241,88 +1241,79 @@ This is the default 9th order explicit method (from :cite:p:`Ver:10`). Implicit Butcher tables --------------------------- - -In the category of diagonally implicit Runge--Kutta methods, ARKODE -includes methods that have orders 2 through 5, with embeddings that are of -orders 1 through 4. - -Each of ARKODE's diagonally-implicit Butcher tables are -specified via a unique ID and name: +In the category of diagonally implicit Runge--Kutta methods, ARKODE includes +methods that have orders 2 through 5, with embeddings that are of orders 1 +through 4. ARKODE's diagonally-implicit Butcher tables are +provided in the enumeration .. c:enum:: ARKODE_DIRKTableID -with values specified for each method below (e.g., ``ARKODE_SDIRK_2_1_2``). -A summary of the method is given in :numref:`ARKODE.Butcher.DIRK_properties`. +with values specified in :numref:`ARKODE.Butcher.DIRK_properties`. .. _ARKODE.Butcher.DIRK_properties: .. table:: Implicit Butcher tables. The default method for each order is marked with an asterisk (*). - +------------------------------------------+--------+----------------+-------+ - | Method ID | Stages | Embedded Order | Order | - +==========================================+========+================+=======+ - | ``ARKODE_BACKWARD_EULER_1_1`` | 1 | --- | 1* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK2_DIRK_3_1_2`` | 3 | 1 | 2* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_SDIRK_2_1_2`` | 2 | 1 | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_IMPLICIT_MIDPOINT_1_2`` | 1 | --- | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_IMPLICIT_TRAPEZOIDAL_2_2`` | 2 | --- | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_BILLINGTON_3_3_2`` | 3 | 3 | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_TRBDF2_3_3_2`` | 3 | 3 | 2 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK325L2SA_5_2_3`` | 5 | 2 | 3* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK324L2SA_4_2_3`` | 4 | 2 | 3 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK32I5L2SA_5_2_3`` | 5 | 2 | 3 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_KVAERNO_4_2_3`` | 4 | 2 | 3 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK324L2SA_DIRK_4_2_3`` | 4 | 2 | 3 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK436L2SA_6_3_4`` | 6 | 3 | 4* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_CASH_5_2_4`` | 5 | 2 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_CASH_5_3_4`` | 5 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_SDIRK_5_3_4`` | 5 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_KVAERNO_5_3_4`` | 5 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK436L2SA_DIRK_6_3_4`` | 6 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK437L2SA_DIRK_7_3_4`` | 7 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK43I6L2SA_6_3_4`` | 6 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_QESDIRK436L2SA_6_3_4`` | 6 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK437L2SA_7_3_4`` | 7 | 3 | 4 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK547L2SA2_7_4_5`` | 7 | 4 | 5* | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_KVAERNO_7_4_5`` | 7 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK548L2SA_DIRK_8_4_5`` | 8 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ARK548L2SAb_DIRK_8_4_5`` | 8 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - | ``ARKODE_ESDIRK547L2SA_7_4_5`` | 7 | 4 | 5 | - +------------------------------------------+--------+----------------+-------+ - - -.. _Butcher.Backward-Euler: - -Backward-Euler-1-1 -^^^^^^^^^^^^^^^^^^ - -.. index:: Backward-Euler-1-1 method + +-------------------------------------------------+--------+----------------+-------+ + | Method ID | Stages | Embedded Order | Order | + +=================================================+========+================+=======+ + | :c:enumerator:`ARKODE_BACKWARD_EULER_1_1` | 1 | --- | 1* | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK2_DIRK_3_1_2` | 3 | 1 | 2* | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_SDIRK_2_1_2` | 2 | 1 | 2 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_IMPLICIT_MIDPOINT_1_2` | 1 | --- | 2 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_IMPLICIT_TRAPEZOIDAL_2_2` | 2 | --- | 2 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_BILLINGTON_3_3_2` | 3 | 3 | 2 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_TRBDF2_3_3_2` | 3 | 3 | 2 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK325L2SA_5_2_3` | 5 | 2 | 3* | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK324L2SA_4_2_3` | 4 | 2 | 3 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK32I5L2SA_5_2_3` | 5 | 2 | 3 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_KVAERNO_4_2_3` | 4 | 2 | 3 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK324L2SA_DIRK_4_2_3` | 4 | 2 | 3 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK436L2SA_6_3_4` | 6 | 3 | 4* | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_CASH_5_2_4` | 5 | 2 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_CASH_5_3_4` | 5 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_SDIRK_5_3_4` | 5 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_KVAERNO_5_3_4` | 5 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK436L2SA_DIRK_6_3_4` | 6 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK437L2SA_DIRK_7_3_4` | 7 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK43I6L2SA_6_3_4` | 6 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_QESDIRK436L2SA_6_3_4` | 6 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK437L2SA_7_3_4` | 7 | 3 | 4 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK547L2SA2_7_4_5` | 7 | 4 | 5* | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_KVAERNO_7_4_5` | 7 | 4 | 5 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK548L2SA_DIRK_8_4_5` | 8 | 4 | 5 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK548L2SAb_DIRK_8_4_5` | 8 | 4 | 5 | + +-------------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ESDIRK547L2SA_7_4_5` | 7 | 4 | 5 | + +-------------------------------------------------+--------+----------------+-------+ + + +.. c:enumerator:: ARKODE_BACKWARD_EULER_1_1 Accessible via the constant ``ARKODE_BACKWARD_EULER_1_1`` to :c:func:`ARKStepSetTableNum` or @@ -1348,12 +1339,7 @@ This is the default 1st order implicit method. The method is A-, L-, and B-stab Linear stability region for the backward Euler method. -.. _Butcher.ARK2_DIRK: - -ARK2-DIRK-3-1-2 -^^^^^^^^^^^^^^^ - -.. index:: ARK2-DIRK-3-1-2 +.. c:enumerator:: ARKODE_ARK2_DIRK_3_1_2 Accessible via the constant ``ARKODE_ARK2_DIRK_3_1_2`` to :c:func:`ARKStepSetTableNum`, or @@ -1389,12 +1375,7 @@ default 2nd order additive method region is outlined in blue; the embedding's region is in red. -.. _Butcher.SDIRK-2-1: - -SDIRK-2-1-2 -^^^^^^^^^^^^^^ - -.. index:: SDIRK-2-1-2 method +.. c:enumerator:: ARKODE_SDIRK_2_1_2 Accessible via the constant ``ARKODE_SDIRK_2_1_2`` to :c:func:`ARKStepSetTableNum` or @@ -1427,12 +1408,7 @@ Both the method and embedding are A- and B-stable. region is outlined in blue; the embedding's region is in red. -.. _Butcher.Implicit_Midpoint: - -Implicit-Midpoint-1-2 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Implicit-Midpoint-1-2 method +.. c:enumerator:: ARKODE_IMPLICIT_MIDPOINT_1_2 Accessible via the constant ``ARKODE_IMPLICIT_MIDPOINT_1_2`` to :c:func:`ARKStepSetTableNum` or @@ -1458,12 +1434,7 @@ The method is A- and B-stable. Linear stability region for the implicit midpoint method. -.. _Butcher.Implicit_Trapezoidal: - -Implicit-Trapezoidal-2-2 -^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: Implicit-Trapezoidal-2-2 method +.. c:enumerator:: ARKODE_IMPLICIT_TRAPEZOIDAL_2_2 Accessible via the constant ``ARKODE_IMPLICIT_TRAPEZOIDAL_2_2`` to :c:func:`ARKStepSetTableNum` or @@ -1490,12 +1461,7 @@ The method is A-stable. Linear stability region for the implicit trapezoidal method. -.. _Butcher.Billington: - -Billington-3-3-2 -^^^^^^^^^^^^^^^^^^^ - -.. index:: Billington-3-3-2 SDIRK method +.. c:enumerator:: ARKODE_BILLINGTON_3_3_2 Accessible via the constant ``ARKODE_BILLINGTON_3_3_2`` to :c:func:`ARKStepSetTableNum` or @@ -1526,16 +1492,7 @@ Here, the higher-order embedding is less stable than the lower-order method region is outlined in blue; the embedding's region is in red. - - - - -.. _Butcher.TRBDF2: - -TRBDF2-3-3-2 -^^^^^^^^^^^^^^^ - -.. index:: TRBDF2-3-3-2 ESDIRK method +.. c:enumerator:: ARKODE_TRBDF2_3_3_2 Accessible via the constant ``ARKODE_TRBDF2_3_3_2`` to :c:func:`ARKStepSetTableNum` or @@ -1566,13 +1523,7 @@ lower-order method (from :cite:p:`Bank:85`). region is outlined in blue; the embedding's region is in red. - -.. _Butcher.ESDIRK325L2SA: - -ESDIRK325L2SA-5-2-3 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK325L2SA-5-2-3 method +.. c:enumerator:: ARKODE_ESDIRK325L2SA_5_2_3 Accessible via the constant ``ARKODE_ESDIRK325L2SA_5_2_3`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -1595,12 +1546,7 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK324L2SA: - -ESDIRK324L2SA-4-2-3 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK324L2SA-4-2-3 method +.. c:enumerator:: ARKODE_ESDIRK324L2SA_4_2_3 Accessible via the constant ``ARKODE_ESDIRK324L2SA_4_2_3`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -1618,13 +1564,7 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. - -.. _Butcher.ESDIRK32I5L2SA: - -ESDIRK32I5L2SA-5-2-3 -^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK32I5L2SA-5-2-3 method +.. c:enumerator:: ARKODE_ESDIRK32I5L2SA_5_2_3 Accessible via the constant ``ARKODE_ESDIRK32I5L2SA_5_2_3`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -1642,12 +1582,7 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. -.. _Butcher.Kvaerno_4_2_3: - -Kvaerno-4-2-3 -^^^^^^^^^^^^^^^^ - -.. index:: Kvaerno-4-2-3 ESDIRK method +.. c:enumerator:: ARKODE_KVAERNO_4_2_3 Accessible via the constant ``ARKODE_KVAERNO_4_2_3`` to :c:func:`ARKStepSetTableNum` or @@ -1679,16 +1614,7 @@ Both the method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. - - - - -.. _Butcher.ARK_4_2_3_I: - -ARK324L2SA-DIRK-4-2-3 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK324L2SA-DIRK-4-2-3 method +.. c:enumerator:: ARKODE_ARK324L2SA_DIRK_4_2_3 Accessible via the constant ``ARKODE_ARK324L2SA_DIRK_4_2_3`` to :c:func:`ARKStepSetTableNum` or @@ -1726,12 +1652,7 @@ method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK436L2SA: - -ESDIRK436L2SA-6-3-4 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK436L2SA-6-3-4 method +.. c:enumerator:: ARKODE_ESDIRK436L2SA_6_3_4 Accessible via the constant ``ARKODE_ESDIRK436L2SA_6_3_4`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -1753,13 +1674,7 @@ from :cite:p:`KenCarp:16`. Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. - -.. _Butcher.Cash_5_2_4: - -Cash-5-2-4 -^^^^^^^^^^^^^^ - -.. index:: Cash-5-2-4 SDIRK method +.. c:enumerator:: ARKODE_CASH_5_2_4 Accessible via the constant ``ARKODE_CASH_5_2_4`` to :c:func:`ARKStepSetTableNum` or @@ -1792,16 +1707,7 @@ Both the method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. - - - - -.. _Butcher.Cash_5_3_4: - -Cash-5-3-4 -^^^^^^^^^^^ - -.. index:: Cash-5-3-4 SDIRK method +.. c:enumerator:: ARKODE_CASH_5_3_4 Accessible via the constant ``ARKODE_CASH_5_3_4`` to :c:func:`ARKStepSetTableNum` or @@ -1834,15 +1740,7 @@ Both the method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. - - - -.. _Butcher.SDIRK-5-4: - -SDIRK-5-3-4 -^^^^^^^^^^^^^^ - -.. index:: SDIRK-5-3-4 method +.. c:enumerator:: ARKODE_SDIRK_5_3_4 Accessible via the constant ``ARKODE_SDIRK_5_3_4`` to :c:func:`ARKStepSetTableNum` or @@ -1879,18 +1777,7 @@ stability (from :cite:p:`HaWa:91`). region is outlined in blue; the embedding's region is in red. - - - - - - -.. _Butcher.Kvaerno_5_3_4: - -Kvaerno-5-3-4 -^^^^^^^^^^^^^^^^ - -.. index:: Kvaerno-5-3-4 ESDIRK method +.. c:enumerator:: ARKODE_KVAERNO_5_3_4 Accessible via the constant ``ARKODE_KVAERNO_5_3_4`` to :c:func:`ARKStepSetTableNum` or @@ -1929,16 +1816,7 @@ Both the method and embedding are A-stable (from :cite:p:`Kva:04`). region is outlined in blue; the embedding's region is in red. - - - - -.. _Butcher.ARK_6_3_4_I: - -ARK436L2SA-DIRK-6-3-4 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK436L2SA-DIRK-6-3-4 method +.. c:enumerator:: ARKODE_ARK436L2SA_DIRK_6_3_4 Accessible via the constant ``ARKODE_ARK436L2SA_DIRK_6_3_4`` to :c:func:`ARKStepSetTableNum` or @@ -1977,16 +1855,7 @@ Both the method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. - - - - -.. _Butcher.ARK_7_3_4_I: - -ARK437L2SA-DIRK-7-3-4 -^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK437L2SA-DIRK-7-3-4 method +.. c:enumerator:: ARKODE_ARK437L2SA_DIRK_7_3_4 Accessible via the constant ``ARKODE_ARK437L2SA_DIRK_7_3_4`` to :c:func:`ARKStepSetTableNum` or @@ -2026,12 +1895,7 @@ implicit portion of the 4th order ARK4(3)7L[2]SA method from region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK43I6L2SA: - -ESDIRK43I6L2SA-6-3-4 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK43I6L2SA-6-3-4 method +.. c:enumerator:: ARKODE_ESDIRK43I6L2SA_6_3_4 Accessible via the constant ``ARKODE_ESDIRK43I6L2SA_6_3_4`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -2049,12 +1913,7 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. -.. _Butcher.QESDIRK436L2SA: - -QESDIRK436L2SA-6-3-4 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: QESDIRK436L2SA-6-3-4 method +.. c:enumerator:: ARKODE_QESDIRK436L2SA_6_3_4 Accessible via the constant ``ARKODE_QESDIRK436L2SA_6_3_4`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -2072,12 +1931,7 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK437L2SA: - -ESDIRK437L2SA-7-3-4 -^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK437L2SA-7-3-4 method +.. c:enumerator:: ARKODE_ESDIRK437L2SA_7_3_4 Accessible via the constant ``ARKODE_ESDIRK437L2SA_7_3_4`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -2095,10 +1949,7 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. -ESDIRK547L2SA2-7-4-5 -^^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK547L2SA2-7-4-5 method +.. c:enumerator:: ARKODE_ESDIRK547L2SA2_7_4_5 Accessible via the constant ``ARKODE_ESDIRK547L2SA2_7_4_5`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -2120,12 +1971,7 @@ from :cite:p:`KenCarp:19b`. Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. -.. _Butcher.Kvaerno_7_4_5: - -Kvaerno-7-4-5 -^^^^^^^^^^^^^^^^^ - -.. index:: Kvaerno-7-4-5 ESDIRK method +.. c:enumerator:: ARKODE_KVAERNO_7_4_5 Accessible via the constant ``ARKODE_KVAERNO_7_4_5`` to :c:func:`ARKStepSetTableNum` or @@ -2167,17 +2013,7 @@ L-stable (from :cite:p:`Kva:04`). region is outlined in blue; the embedding's region is in red. - - - - - -.. _Butcher.ARK_8_4_5_I: - -ARK548L2SA-ESDIRK-8-4-5 -^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK548L2SA-ESDIRK-8-4-5 method +.. c:enumerator:: ARKODE_ARK548L2SA_DIRK_8_4_5 Accessible via the constant ``ARKODE_ARK548L2SA_DIRK_8_4_5`` for :c:func:`ARKStepSetTableNum` or @@ -2224,14 +2060,7 @@ Both the method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. - - -.. _Butcher.ARK_8_4_5b_I: - -ARK548L2SAb-DIRK-8-4-5 -^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: ARK548L2SAb-DIRK-8-4-5 method +.. c:enumerator:: ARKODE_ARK548L2SAb_DIRK_8_4_5 Accessible via the constant ``ARKODE_ARK548L2SAb_DIRK_8_4_5`` for :c:func:`ARKStepSetTableNum` or @@ -2280,12 +2109,7 @@ Both the method and embedding are A-stable; additionally the method is L-stable region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK547L2SA: - -ESDIRK547L2SA-7-4-5 -^^^^^^^^^^^^^^^^^^^ - -.. index:: ESDIRK547L2SA-7-4-5 method +.. c:enumerator:: ARKODE_ESDIRK547L2SA_7_4_5 Accessible via the constant ``ARKODE_ESDIRK547L2SA_7_4_5`` to :c:func:`ARKStepSetTableNum` or :c:func:`ARKodeButcherTable_LoadDIRK`. @@ -2303,11 +2127,6 @@ Both the method and embedding are A- and L-stable. region is outlined in blue; the embedding's region is in red. -.. _Butcher.ESDIRK547L2SA2: - - - - .. _Butcher.additive: Additive Butcher tables From 9d865f2b3a9a9fba442d2522dedfe1d3e7c8545e Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 18:17:56 -0700 Subject: [PATCH 25/67] Update ARK to use enumerators --- doc/arkode/guide/source/Butcher.rst | 53 ++++++++++------------------- 1 file changed, 18 insertions(+), 35 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 733cf76db2..1f2b77b9b7 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -2137,42 +2137,25 @@ explicit calculations, ARKODE includes methods that have orders 2 through 5, with embeddings that are of orders 1 through 4. These Butcher table pairs are as follows: -* :index:`2nd-order pair `: - :numref:`Butcher.ARK2_ERK` with :numref:`Butcher.ARK2_DIRK`, - corresponding to Butcher tables ``ARKODE_ARK2_ERK_3_1_2`` and - ``ARKODE_ARK2_DIRK_3_1_2`` for :c:func:`ARKStepSetTableNum` - or :c:func:`ARKStepSetTableName`. - -* :index:`3rd-order pair `: - :numref:`Butcher.ARK_4_2_3_E` with :numref:`Butcher.ARK_4_2_3_I`, - corresponding to Butcher tables ``ARKODE_ARK324L2SA_ERK_4_2_3`` and - ``ARKODE_ARK324L2SA_DIRK_4_2_3`` for :c:func:`ARKStepSetTableNum` - or :c:func:`ARKStepSetTableName`. - -* :index:`4th-order pair `: - :numref:`Butcher.ARK_6_3_4_E` with :numref:`Butcher.ARK_6_3_4_I`, - corresponding to Butcher tables ``ARKODE_ARK436L2SA_ERK_6_3_4`` and - ``ARKODE_ARK436L2SA_DIRK_6_3_4`` for :c:func:`ARKStepSetTableNum` - or :c:func:`ARKStepSetTableName`. - -* :index:`4th-order pair `: - :numref:`Butcher.ARK_7_3_4_E` with :numref:`Butcher.ARK_7_3_4_I`, - corresponding to Butcher tables ``ARKODE_ARK437L2SA_ERK_7_3_4`` and - ``ARKODE_ARK437L2SA_DIRK_7_3_4`` for :c:func:`ARKStepSetTableNum` - or :c:func:`ARKStepSetTableName`. - -* :index:`5th-order pair `: - :numref:`Butcher.ARK_8_4_5_E` with :numref:`Butcher.ARK_8_4_5_I`, - corresponding to Butcher tables ``ARKODE_ARK548L2SA_ERK_8_4_5`` and - ``ARKODE_ARK548L2SA_DIRK_8_4_5`` for :c:func:`ARKStepSetTableNum` - or :c:func:`ARKStepSetTableName`. - -* :index:`5th-order pair `: - :numref:`Butcher.ARK_8_4_5b_E` with :numref:`Butcher.ARK_8_4_5b_I`, - corresponding to Butcher tables ``ARKODE_ARK548L2SAb_ERK_8_4_5`` and - ``ARKODE_ARK548L2SAb_DIRK_8_4_5`` for :c:func:`ARKStepSetTableNum` - or :c:func:`ARKStepSetTableName`. +.. _ARKODE.Butcher.ARK_properties: +.. table:: Additive Butcher tables. The default method for each order is marked + with an asterisk (*). + +----------------------------------------------+-----------------------------------------------+--------+----------------+-------+ + | ERK Method ID | DIRK Method ID | Stages | Embedded Order | Order | + +==============================================+===============================================+========+================+=======+ + | :c:enumerator:`ARKODE_ARK2_ERK_3_1_2` | :c:enumerator:`ARKODE_ARK2_DIRK_3_1_2` | 3 | 1 | 2* | + +----------------------------------------------+-----------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK324L2SA_ERK_4_2_3` | :c:enumerator:`ARKODE_ARK324L2SA_DIRK_4_2_3` | 4 | 2 | 3* | + +----------------------------------------------+-----------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK437L2SA_ERK_7_3_4` | :c:enumerator:`ARKODE_ARK437L2SA_DIRK_7_3_4` | 7 | 3 | 4* | + +----------------------------------------------+-----------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK436L2SA_ERK_6_3_4` | :c:enumerator:`ARKODE_ARK436L2SA_DIRK_6_3_4` | 6 | 3 | 4 | + +----------------------------------------------+-----------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK548L2SAb_ERK_8_4_5` | :c:enumerator:`ARKODE_ARK548L2SAb_DIRK_8_4_5` | 8 | 4 | 5* | + +----------------------------------------------+-----------------------------------------------+--------+----------------+-------+ + | :c:enumerator:`ARKODE_ARK548L2SA_ERK_8_4_5` | :c:enumerator:`ARKODE_ARK548L2SA_DIRK_8_4_5` | 8 | 5 | 5 | + +----------------------------------------------+-----------------------------------------------+--------+----------------+-------+ From a1ec42532107b8b42cdb0f0946d365afbbb41085 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 18:29:09 -0700 Subject: [PATCH 26/67] Update SPRK to use enumerators --- doc/arkode/guide/source/Butcher.rst | 109 ++++++++++++++-------------- 1 file changed, 53 insertions(+), 56 deletions(-) diff --git a/doc/arkode/guide/source/Butcher.rst b/doc/arkode/guide/source/Butcher.rst index 1f2b77b9b7..adfd8f93a2 100644 --- a/doc/arkode/guide/source/Butcher.rst +++ b/doc/arkode/guide/source/Butcher.rst @@ -2165,66 +2165,74 @@ Symplectic Partitioned Butcher tables ------------------------------------- In the category of symplectic partitioned Runge-Kutta (SPRK) methods, ARKODE -includes methods that have orders :math:`q = \{1,2,3,4,5,6,8,10\}`. +includes methods that have orders :math:`q = \{1,2,3,4,5,6,8,10\}`. ARKODE's +symplectic partitioned Butcher tables are provided in the enumeration .. c:enum:: ARKODE_SPRKMethodID - Each of the ARKODE SPRK tables are specified via a unique ID and name. - -ARKODE_SPRK_EULER_1_1 -^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 1st-order symplectic Euler method +with values specified in :numref:`ARKODE.Butcher.SPRK_properties`. + +.. _ARKODE.Butcher.SPRK_properties: +.. table:: Symplectic partitioned Butcher tables. The default method for each + order is marked with an asterisk (*). + + +-------------------------------------------------+--------+-------+ + | Method ID | Stages | Order | + +=================================================+========+=======+ + | :c:enumerator:`ARKODE_SPRK_EULER_1_1` | 1 | 1* | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_LEAPFROG_2_2` | 2 | 2* | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_PSEUDO_LEAPFROG_2_2` | 2 | 2 | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_MCLACHLAN_2_2` | 2 | 2 | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_MCLACHLAN_3_3` | 3 | 3* | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_RUTH_3_3` | 3 | 3 | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_MCLACHLAN_4_4` | 4 | 4* | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_CANDY_ROZMUS_4_4` | 4 | 4 | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_MCLACHLAN_5_6` | 6 | 5* | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_YOSHIDA_6_8` | 8 | 6* | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_SUZUKI_UMENO_8_16` | 16 | 8* | + +-------------------------------------------------+--------+-------+ + | :c:enumerator:`ARKODE_SPRK_SOFRONIOU_10_36` | 36 | 10* | + +-------------------------------------------------+--------+-------+ + +.. c:enumerator:: ARKODE_SPRK_EULER_1_1 Accessible via the constant (or string) ``ARKODE_SPRK_EULER_1_1`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. This is the classic Symplectic Euler method and the default 1st order method. -ARKODE_SPRK_LEAPFROG_2_2 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 2nd-order Leapfrog method +.. c:enumerator:: ARKODE_SPRK_LEAPFROG_2_2 Accessible via the constant (or string) ``ARKODE_SPRK_LEAPFROG_2_2`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. This is the classic Leapfrog/Verlet method and the default 2nd order method. -ARKODE_SPRK_PSEUDO_LEAPFROG_2_2 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 2nd-order Pseudo Leapfrog method +.. c:enumerator:: ARKODE_SPRK_PSEUDO_LEAPFROG_2_2 Accessible via the constant (or string) ``ARKODE_SPRK_PSEUDO_LEAPFROG_2_2`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. This is the classic Pseudo Leapfrog/Verlet method. -ARKODE_SPRK_MCLACHLAN_2_2 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 2nd-order McLachlan method +.. c:enumerator:: ARKODE_SPRK_MCLACHLAN_2_2 Accessible via the constant (or string) ``ARKODE_SPRK_MCLACHLAN_2_2`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. This is the 2nd order method given by McLachlan in :cite:p:`Mclachlan:92`. -ARKODE_SPRK_RUTH_3_3 -^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 3rd-order Ruth method - -Accessible via the constant (or string) ``ARKODE_SPRK_RUTH_3_3`` to -:c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. -This is the 3rd order method given by Ruth in :cite:p:`Ruth:93`. - - -ARKODE_SPRK_MCLACHLAN_3_3 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 3rd-order McLachlan method +.. c:enumerator:: ARKODE_SPRK_MCLACHLAN_3_3 Accessible via the constant (or string) ``ARKODE_SPRK_MCLACHLAN_3_3`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. @@ -2232,10 +2240,14 @@ This is the 3rd order method given by McLachlan in :cite:p:`Mclachlan:92` and the default 3rd order method. -ARKODE_SPRK_MCLACHLAN_4_4 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. c:enumerator:: ARKODE_SPRK_RUTH_3_3 + +Accessible via the constant (or string) ``ARKODE_SPRK_RUTH_3_3`` to +:c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. +This is the 3rd order method given by Ruth in :cite:p:`Ruth:93`. + -.. index:: 4th-order McLachlan method +.. c:enumerator:: ARKODE_SPRK_MCLACHLAN_4_4 Accessible via the constant (or string) ``ARKODE_SPRK_MCLACHLAN_4_4`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. @@ -2247,20 +2259,14 @@ and the default 4th order method. This method only has coefficients sufficient for single or double precision. -ARKODE_SPRK_CANDY_ROZMUS_4_4 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 4th-order Candy-Rozmus method +.. c:enumerator:: ARKODE_SPRK_CANDY_ROZMUS_4_4 Accessible via the constant (or string) ``ARKODE_SPRK_CANDY_ROZMUS_4_4`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. This is the 4th order method given by Candy and Rozmus in :cite:p:`CandyRozmus:91`. -ARKODE_SPRK_MCLACHLAN_5_6 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 5th-order McLachlan method +.. c:enumerator:: ARKODE_SPRK_MCLACHLAN_5_6 Accessible via the constant (or string) ``ARKODE_SPRK_MCLACHLAN_5_6`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. @@ -2272,10 +2278,7 @@ and the default 5th order method. This method only has coefficients sufficient for single or double precision. -ARKODE_SPRK_YOSHIDA_6_8 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 6th-order Yoshida method +.. c:enumerator:: ARKODE_SPRK_YOSHIDA_6_8 Accessible via the constant (or string) ``ARKODE_SPRK_YOSHIDA_6_8`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. @@ -2283,10 +2286,7 @@ This is the 6th order method given by Yoshida in :cite:p:`Yoshida:90` and the 6th order method. -ARKODE_SPRK_SUZUKI_UMENO_8_16 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 8th-order Suzuki-Umeno method +.. c:enumerator:: ARKODE_SPRK_SUZUKI_UMENO_8_16 Accessible via the constant (or string) ``ARKODE_SPRK_SUZUKI_UMENO_8_16`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. @@ -2294,10 +2294,7 @@ This is the 8th order method given by Suzuki and Umeno in :cite:p:`Suzuki:93` and the default 8th order method. -ARKODE_SPRK_SOFRONIOU_10_36 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. index:: 10th-order Sofroniou-Spaletta method +.. c:enumerator:: ARKODE_SPRK_SOFRONIOU_10_36 Accessible via the constant (or string) ``ARKODE_SPRK_SOFRONIOU_10_36`` to :c:func:`ARKodeSPRKTable_Load` or :c:func:`ARKodeSPRKTable_LoadByName`. From 641746ec1f89cfee52aea97d5e7bdb873df30ed6 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 18:59:25 -0700 Subject: [PATCH 27/67] Fix broken refs --- doc/arkode/guide/source/Mathematics.rst | 17 +++++------------ doc/shared/Changelog.rst | 4 ++-- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/doc/arkode/guide/source/Mathematics.rst b/doc/arkode/guide/source/Mathematics.rst index 9d9835c53d..2c9d8b1cb6 100644 --- a/doc/arkode/guide/source/Mathematics.rst +++ b/doc/arkode/guide/source/Mathematics.rst @@ -392,13 +392,9 @@ In this scenario, the coefficients :math:`A^I=0`, :math:`c^I=0`, methods reduce to classical :index:`explicit Runge--Kutta methods` (ERK). For these classes of methods, ARKODE provides coefficients with orders of accuracy :math:`q = \{2,3,4,5,6,7,8,9\}`, with embeddings -of orders :math:`p = \{1,2,3,4,5,6,7,8\}`. These default to the methods in -sections -:numref:`Butcher.Heun_Euler`, -:numref:`Butcher.Bogacki_Shampine`, :numref:`Butcher.Zonneveld`, -:numref:`Butcher.Cash-Karp`, :numref:`Butcher.Verner-6-5`, and -:numref:`Butcher.Fehlberg-8-7`, respectively. As with ARK -methods, user-defined ERK tables are supported. +of orders :math:`p = \{1,2,3,4,5,6,7,8\}`; the tables for these methods are +given in section :numref:`Butcher.explicit`. As with ARK methods, user-defined +ERK tables are supported. Alternately, for stiff problems the user may specify that :math:`f^E = 0`, so the equation :eq:`ARKODE_IMEX_IVP` reduces to the non-split IVP @@ -413,11 +409,8 @@ in :eq:`ARKODE_ARK`, and the ARK methods reduce to classical :index:`diagonally-implicit Runge--Kutta methods` (DIRK). For these classes of methods, ARKODE provides tables with orders of accuracy :math:`q = \{2,3,4,5\}`, with embeddings of orders -:math:`p = \{1,2,3,4\}`. These default to the methods -:numref:`Butcher.SDIRK-2-1`, :numref:`Butcher.ARK_4_2_3_I`, -:numref:`Butcher.SDIRK-5-4`, and :numref:`Butcher.ARK_8_4_5_I`, -respectively. Again, user-defined DIRK tables are supported. - +:math:`p = \{1,2,3,4\}`; the tables for these methods are given in section +:numref:`Butcher.implicit`. Again, user-defined DIRK tables are supported. .. _ARKODE.Mathematics.ERK: diff --git a/doc/shared/Changelog.rst b/doc/shared/Changelog.rst index bc9d5c1ad9..686ed622e1 100644 --- a/doc/shared/Changelog.rst +++ b/doc/shared/Changelog.rst @@ -510,8 +510,8 @@ or :c:func:`MRIStepSetInterpolateStopTime`. Added the second order IMEX method from :cite:p:`giraldo2013implicit` as the default second order IMEX method in ARKStep. The explicit table is given by -``ARKODE_ARK2_ERK_3_1_2`` (see :ref:`Butcher.ARK2_ERK`) and the implicit -table by ``ARKODE_ARK2_DIRK_3_1_2`` (see :ref:`Butcher.ARK2_DIRK`). +:c:enumerator:`ARKODE_ARK2_ERK_3_1_2` and the implicit table by +:c:enumerator:`ARKODE_ARK2_DIRK_3_1_2`. Updated the F2003 utility routines :c:func:`SUNDIALSFileOpen` and :c:func:`SUNDIALSFileClose` to support user specification of ``stdout`` and From 58206dd81e1d07c622540f51b4dfb1020e9caeab Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Mon, 16 Sep 2024 18:59:54 -0700 Subject: [PATCH 28/67] Remove old constants --- doc/arkode/guide/source/Constants.rst | 65 --------------------------- 1 file changed, 65 deletions(-) diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index faa8172bf4..105f69e1a7 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -74,71 +74,6 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | | | +-----------------------------------------------+------------------------------------------------------------+ - | **ImEx Butcher table specification** | | - +-----------------------------------------------+------------------------------------------------------------+ - | ARKODE_ARK2_ERK_3_1_2 & | Use the :index:`ARK-3-1-2 ARK method`. | - | ARKODE_ARK2_DIRK_3_1_2 | | - +-----------------------------------------------+------------------------------------------------------------+ - | ARKODE_ARK324L2SA_ERK_4_2_3 & | Use the :index:`ARK-4-2-3 ARK method`. | - | ARKODE_ARK324L2SA_DIRK_4_2_3 | | - +-----------------------------------------------+------------------------------------------------------------+ - | ARKODE_ARK436L2SA_ERK_6_3_4 & | Use the :index:`ARK-6-3-4 ARK method`. | - | ARKODE_ARK436L2SA_DIRK_6_3_4 | | - +-----------------------------------------------+------------------------------------------------------------+ - | ARKODE_ARK437L2SA_ERK_7_3_4 & | Use the :index:`ARK-7-3-4 ARK method`. | - | ARKODE_ARK437L2SA_DIRK_7_3_4 | | - +-----------------------------------------------+------------------------------------------------------------+ - | ARKODE_ARK548L2SA_ERK_8_4_5 & | Use the :index:`ARK-8-4-5 ARK method`. | - | ARKODE_ARK548L2SA_DIRK_8_4_5 | | - +-----------------------------------------------+------------------------------------------------------------+ - | ARKODE_ARK548L2SAb_ERK_8_4_5 & | Use the :index:`ARK-8-4-5b ARK method`. | - | ARKODE_ARK548L2SAb_DIRK_8_4_5 | | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_2` & | Use ARKStep's default second-order ARK method | - | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_2` | (ARKODE_ARK2_ERK_3_1_2 and ARKODE_ARK2_DIRK_3_1_2). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_3` & | Use ARKStep's default third-order ARK method | - | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_3` | (ARKODE_ARK324L2SA_ERK_4_2_3 and | - | | ARKODE_ARK324L2SA_DIRK_4_2_3). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_4` & | Use ARKStep's default fourth-order ARK method | - | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_4` | (ARKODE_ARK437L2SA_ERK_7_3_4 and | - | | ARKODE_ARK437L2SA_DIRK_7_3_4). | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_5` & | Use ARKStep's default fifth-order ARK method | - | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_5` | (ARKODE_ARK548L2SAb_ERK_8_4_5 and | - | | ARKODE_ARK548L2SAb_DIRK_8_4_5). | - +-----------------------------------------------+------------------------------------------------------------+ - | | | - +-----------------------------------------------+------------------------------------------------------------+ - | **Symplectic Method storage specification** | | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_EULER_1_1` | Symplectic Euler 1st order method with 1 stage. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_LEAPFROG_2_2` | Symplectic Leapfrog 2nd order method with 2 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_PSEUDO_LEAPFROG_2_2` | Symplectic Pseudo Leapfrog 2nd order method with 2 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_RUTH_3_3` | Symplectic Ruth 3rd order method with 3 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_MCLACHLAN_2_2` | Symplectic McLachlan 2nd order method with 2 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_MCLACHLAN_3_3` | Symplectic McLachlan 3rd order method with 3 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_CANDY_ROZMUS_4_4` | Symplectic Candy-Rozmus 4th order method with 4 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_MCLACHLAN_4_4` | Symplectic McLachlan 4th order method with 4 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_MCLACHLAN_5_6` | Symplectic McLachlan 5th order method with 6 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_YOSHIDA_6_8` | Symplectic Yoshida 6th order method with 8 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_SUZUKI_UMENO_8_16` | Symplectic McLachlan 8th order method with 16 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | :index:`ARKODE_SPRK_SOFRONIOU_10_36` | Symplectic Sofroniou 10th order method with 36 stages. | - +-----------------------------------------------+------------------------------------------------------------+ - | | | - +-----------------------------------------------+------------------------------------------------------------+ | **MRI method types** | | +-----------------------------------------------+------------------------------------------------------------+ | :index:`MRISTEP_EXPLICIT` | Use an explicit (at the slow time scale) MRI method. | From 49cabed887656e7090de0ece87b3877e0d21b5d2 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 17 Sep 2024 18:16:33 -0700 Subject: [PATCH 29/67] Correct types of default tables --- include/arkode/arkode_arkstep.h | 44 ++++++++++++++++----------------- include/arkode/arkode_erkstep.h | 18 +++++++------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/include/arkode/arkode_arkstep.h b/include/arkode/arkode_arkstep.h index 5e491afb37..35aa1c2494 100644 --- a/include/arkode/arkode_arkstep.h +++ b/include/arkode/arkode_arkstep.h @@ -35,32 +35,32 @@ extern "C" { /* Default Butcher tables for each method/order */ /* explicit */ -static const int ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; -static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2; -static const int ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; -static const int ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; -static const int ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5; -static const int ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6; -static const int ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7; -static const int ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8; -static const int ARKSTEP_DEFAULT_ERK_9 = ARKODE_VERNER_16_8_9; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_9 = ARKODE_VERNER_16_8_9; /* implicit */ -static const int ARKSTEP_DEFAULT_DIRK_1 = ARKODE_BACKWARD_EULER_1_1; -static const int ARKSTEP_DEFAULT_DIRK_2 = ARKODE_ARK2_DIRK_3_1_2; -static const int ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ESDIRK325L2SA_5_2_3; -static const int ARKSTEP_DEFAULT_DIRK_4 = ARKODE_ESDIRK436L2SA_6_3_4; -static const int ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ESDIRK547L2SA2_7_4_5; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_1 = ARKODE_BACKWARD_EULER_1_1; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_2 = ARKODE_ARK2_DIRK_3_1_2; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ESDIRK325L2SA_5_2_3; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_4 = ARKODE_ESDIRK436L2SA_6_3_4; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ESDIRK547L2SA2_7_4_5; /* ImEx */ -static const int ARKSTEP_DEFAULT_ARK_ETABLE_2 = ARKODE_ARK2_ERK_3_1_2; -static const int ARKSTEP_DEFAULT_ARK_ETABLE_3 = ARKODE_ARK324L2SA_ERK_4_2_3; -static const int ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK437L2SA_ERK_7_3_4; -static const int ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SAb_ERK_8_4_5; -static const int ARKSTEP_DEFAULT_ARK_ITABLE_2 = ARKODE_ARK2_DIRK_3_1_2; -static const int ARKSTEP_DEFAULT_ARK_ITABLE_3 = ARKODE_ARK324L2SA_DIRK_4_2_3; -static const int ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK437L2SA_DIRK_7_3_4; -static const int ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SAb_DIRK_8_4_5; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_2 = ARKODE_ARK2_ERK_3_1_2; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_3 = ARKODE_ARK324L2SA_ERK_4_2_3; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK437L2SA_ERK_7_3_4; +static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SAb_ERK_8_4_5; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_2 = ARKODE_ARK2_DIRK_3_1_2; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_3 = ARKODE_ARK324L2SA_DIRK_4_2_3; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK437L2SA_DIRK_7_3_4; +static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SAb_DIRK_8_4_5; /* ------------------- * Exported Functions diff --git a/include/arkode/arkode_erkstep.h b/include/arkode/arkode_erkstep.h index c8a5b883e6..614e296437 100644 --- a/include/arkode/arkode_erkstep.h +++ b/include/arkode/arkode_erkstep.h @@ -32,15 +32,15 @@ extern "C" { /* Default Butcher tables for each order */ -static const int ERKSTEP_DEFAULT_1 = ARKODE_FORWARD_EULER_1_1; -static const int ERKSTEP_DEFAULT_2 = ARKODE_RALSTON_3_1_2; -static const int ERKSTEP_DEFAULT_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; -static const int ERKSTEP_DEFAULT_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; -static const int ERKSTEP_DEFAULT_5 = ARKODE_TSITOURAS_7_4_5; -static const int ERKSTEP_DEFAULT_6 = ARKODE_VERNER_9_5_6; -static const int ERKSTEP_DEFAULT_7 = ARKODE_VERNER_10_6_7; -static const int ERKSTEP_DEFAULT_8 = ARKODE_VERNER_13_7_8; -static const int ERKSTEP_DEFAULT_9 = ARKODE_VERNER_16_8_9; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_1 = ARKODE_FORWARD_EULER_1_1; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_2 = ARKODE_RALSTON_3_1_2; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_5 = ARKODE_TSITOURAS_7_4_5; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_6 = ARKODE_VERNER_9_5_6; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_7 = ARKODE_VERNER_10_6_7; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_8 = ARKODE_VERNER_13_7_8; +static const ARKODE_ERKTableID ERKSTEP_DEFAULT_9 = ARKODE_VERNER_16_8_9; /* ------------------- * Exported Functions From 6666fe7f0684e9ba6f1db5683fe2b4ef0b3b0d77 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 17 Sep 2024 18:48:44 -0700 Subject: [PATCH 30/67] Bring back default tables to constants docs --- doc/arkode/guide/source/Constants.rst | 77 +++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index 105f69e1a7..e3147c17b9 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -74,6 +74,83 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | | | +-----------------------------------------------+------------------------------------------------------------+ + | **Default explicit Butcher tables** | | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_1` | Use ARKStep's default first-order ERK method | + | | :c:enumerator:`ARKODE_FORWARD_EULER_1_1`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_2` | Use ARKStep's default second-order ERK method | + | | :c:enumerator:`ARKODE_RALSTON_3_1_2`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_3` | Use ARKStep's default third-order ERK method | + | | :c:enumerator:`ARKODE_BOGACKI_SHAMPINE_4_2_3`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_4` | Use ARKStep's default fourth-order ERK method | + | | :c:enumerator:`ARKODE_SOFRONIOU_SPALETTA_5_3_4`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_5` | Use ARKStep's default fifth-order ERK method | + | | :c:enumerator:`ARKODE_TSITOURAS_7_4_5`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_6` | Use ARKStep's default sixth-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_9_5_6`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_7` | Use ARKStep's default seventh-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_10_6_7`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_8` | Use ARKStep's default eighth-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_13_7_8`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ERK_9` | Use ARKStep's default ninth-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_16_8_9`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_1` | Use ERKStep's default first-order ERK method | + | | :c:enumerator:`ARKODE_FORWARD_EULER_1_1`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_2` | Use ERKStep's default second-order ERK method | + | | :c:enumerator:`ARKODE_RALSTON_3_1_2`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_3` | Use ERKStep's default third-order ERK method | + | | :c:enumerator:`ARKODE_BOGACKI_SHAMPINE_4_2_3`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_4` | Use ERKStep's default fourth-order ERK method | + | | :c:enumerator:`ARKODE_SOFRONIOU_SPALETTA_5_3_4`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_5` | Use ERKStep's default fifth-order ERK method | + | | :c:enumerator:`ARKODE_TSITOURAS_7_4_5`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_6` | Use ERKStep's default sixth-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_9_5_6`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_7` | Use ERKStep's default seventh-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_10_6_7`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_8` | Use ERKStep's default eighth-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_13_7_8`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ERKSTEP_DEFAULT_9` | Use ERKStep's default ninth-order ERK method | + | | :c:enumerator:`ARKODE_VERNER_16_8_9`. | + +-----------------------------------------------+------------------------------------------------------------+ + | | | + +-----------------------------------------------+------------------------------------------------------------+ + | **Default implicit Butcher tables** | | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_DIRK_1` | Use ARKStep's default first-order DIRK method | + | | :c:enumerator:`ARKODE_BACKWARD_EULER_1_1`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_DIRK_2` | Use ARKStep's default second-order DIRK method | + | | :c:enumerator:`ARKODE_ARK2_DIRK_3_1_2`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_DIRK_3` | Use ARKStep's default third-order DIRK method | + | | :c:enumerator:`ARKODE_ESDIRK325L2SA_5_2_3`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_DIRK_4` | Use ARKStep's default fourth-order DIRK method | + | | :c:enumerator:`ARKODE_ESDIRK436L2SA_6_3_4`. | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_DIRK_5` | Use ARKStep's default fifth-order DIRK method | + | | :c:enumerator:`ARKODE_ESDIRK547L2SA2_7_4_5`. | + +-----------------------------------------------+------------------------------------------------------------+ + | | | + +-----------------------------------------------+------------------------------------------------------------+ | **MRI method types** | | +-----------------------------------------------+------------------------------------------------------------+ | :index:`MRISTEP_EXPLICIT` | Use an explicit (at the slow time scale) MRI method. | From 9fefa0df82398e053e3b4c17c0aca34b34b8e893 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 24 Sep 2024 17:44:09 -0700 Subject: [PATCH 31/67] Revert default table constants to int --- include/arkode/arkode_arkstep.h | 48 ++++++++++++++++++--------------- include/arkode/arkode_erkstep.h | 18 ++++++------- 2 files changed, 35 insertions(+), 31 deletions(-) diff --git a/include/arkode/arkode_arkstep.h b/include/arkode/arkode_arkstep.h index 35aa1c2494..4736d74f63 100644 --- a/include/arkode/arkode_arkstep.h +++ b/include/arkode/arkode_arkstep.h @@ -34,33 +34,37 @@ extern "C" { /* Default Butcher tables for each method/order */ +/* Ideally these defaults would be declared with types ARKODE_ERKTableID and + * ARKODE_DIRKTableID, but this causes swig to unnecessarily append `C_INT` to + * the variable names */ + /* explicit */ -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ERK_9 = ARKODE_VERNER_16_8_9; +static const int ARKSTEP_DEFAULT_ERK_1 = ARKODE_FORWARD_EULER_1_1; +static const int ARKSTEP_DEFAULT_ERK_2 = ARKODE_RALSTON_3_1_2; +static const int ARKSTEP_DEFAULT_ERK_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; +static const int ARKSTEP_DEFAULT_ERK_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; +static const int ARKSTEP_DEFAULT_ERK_5 = ARKODE_TSITOURAS_7_4_5; +static const int ARKSTEP_DEFAULT_ERK_6 = ARKODE_VERNER_9_5_6; +static const int ARKSTEP_DEFAULT_ERK_7 = ARKODE_VERNER_10_6_7; +static const int ARKSTEP_DEFAULT_ERK_8 = ARKODE_VERNER_13_7_8; +static const int ARKSTEP_DEFAULT_ERK_9 = ARKODE_VERNER_16_8_9; /* implicit */ -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_1 = ARKODE_BACKWARD_EULER_1_1; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_2 = ARKODE_ARK2_DIRK_3_1_2; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ESDIRK325L2SA_5_2_3; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_4 = ARKODE_ESDIRK436L2SA_6_3_4; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ESDIRK547L2SA2_7_4_5; +static const int ARKSTEP_DEFAULT_DIRK_1 = ARKODE_BACKWARD_EULER_1_1; +static const int ARKSTEP_DEFAULT_DIRK_2 = ARKODE_ARK2_DIRK_3_1_2; +static const int ARKSTEP_DEFAULT_DIRK_3 = ARKODE_ESDIRK325L2SA_5_2_3; +static const int ARKSTEP_DEFAULT_DIRK_4 = ARKODE_ESDIRK436L2SA_6_3_4; +static const int ARKSTEP_DEFAULT_DIRK_5 = ARKODE_ESDIRK547L2SA2_7_4_5; /* ImEx */ -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_2 = ARKODE_ARK2_ERK_3_1_2; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_3 = ARKODE_ARK324L2SA_ERK_4_2_3; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK437L2SA_ERK_7_3_4; -static const ARKODE_ERKTableID ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SAb_ERK_8_4_5; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_2 = ARKODE_ARK2_DIRK_3_1_2; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_3 = ARKODE_ARK324L2SA_DIRK_4_2_3; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK437L2SA_DIRK_7_3_4; -static const ARKODE_DIRKTableID ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SAb_DIRK_8_4_5; +static const int ARKSTEP_DEFAULT_ARK_ETABLE_2 = ARKODE_ARK2_ERK_3_1_2; +static const int ARKSTEP_DEFAULT_ARK_ETABLE_3 = ARKODE_ARK324L2SA_ERK_4_2_3; +static const int ARKSTEP_DEFAULT_ARK_ETABLE_4 = ARKODE_ARK437L2SA_ERK_7_3_4; +static const int ARKSTEP_DEFAULT_ARK_ETABLE_5 = ARKODE_ARK548L2SAb_ERK_8_4_5; +static const int ARKSTEP_DEFAULT_ARK_ITABLE_2 = ARKODE_ARK2_DIRK_3_1_2; +static const int ARKSTEP_DEFAULT_ARK_ITABLE_3 = ARKODE_ARK324L2SA_DIRK_4_2_3; +static const int ARKSTEP_DEFAULT_ARK_ITABLE_4 = ARKODE_ARK437L2SA_DIRK_7_3_4; +static const int ARKSTEP_DEFAULT_ARK_ITABLE_5 = ARKODE_ARK548L2SAb_DIRK_8_4_5; /* ------------------- * Exported Functions diff --git a/include/arkode/arkode_erkstep.h b/include/arkode/arkode_erkstep.h index 614e296437..c8a5b883e6 100644 --- a/include/arkode/arkode_erkstep.h +++ b/include/arkode/arkode_erkstep.h @@ -32,15 +32,15 @@ extern "C" { /* Default Butcher tables for each order */ -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_1 = ARKODE_FORWARD_EULER_1_1; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_2 = ARKODE_RALSTON_3_1_2; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_5 = ARKODE_TSITOURAS_7_4_5; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_6 = ARKODE_VERNER_9_5_6; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_7 = ARKODE_VERNER_10_6_7; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_8 = ARKODE_VERNER_13_7_8; -static const ARKODE_ERKTableID ERKSTEP_DEFAULT_9 = ARKODE_VERNER_16_8_9; +static const int ERKSTEP_DEFAULT_1 = ARKODE_FORWARD_EULER_1_1; +static const int ERKSTEP_DEFAULT_2 = ARKODE_RALSTON_3_1_2; +static const int ERKSTEP_DEFAULT_3 = ARKODE_BOGACKI_SHAMPINE_4_2_3; +static const int ERKSTEP_DEFAULT_4 = ARKODE_SOFRONIOU_SPALETTA_5_3_4; +static const int ERKSTEP_DEFAULT_5 = ARKODE_TSITOURAS_7_4_5; +static const int ERKSTEP_DEFAULT_6 = ARKODE_VERNER_9_5_6; +static const int ERKSTEP_DEFAULT_7 = ARKODE_VERNER_10_6_7; +static const int ERKSTEP_DEFAULT_8 = ARKODE_VERNER_13_7_8; +static const int ERKSTEP_DEFAULT_9 = ARKODE_VERNER_16_8_9; /* ------------------- * Exported Functions From f433f7ee5bea640baee09a9df4252b9d1e1305f6 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Thu, 9 Jan 2025 16:35:39 -0800 Subject: [PATCH 32/67] Add missing whitespace --- CHANGELOG.md | 1 + doc/shared/RecentChanges.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08cb22be1c..30db5be31d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Major Features ### New Features and Enhancements + Added the `ARKODE_RALSTON_3_1_2` and `ARKODE_TSITOURAS_7_4_5` explicit Runge-Kutta Butcher tables. diff --git a/doc/shared/RecentChanges.rst b/doc/shared/RecentChanges.rst index 309a2c9f6e..65c0146646 100644 --- a/doc/shared/RecentChanges.rst +++ b/doc/shared/RecentChanges.rst @@ -1,6 +1,7 @@ **Major Features** **New Features and Enhancements** + Added the ``ARKODE_RALSTON_3_1_2`` and ``ARKODE_TSITOURAS_7_4_5`` explicit Runge-Kutta Butcher tables. From bab2097ba7f638b45007e39decfcf405650c1a89 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 08:51:53 -0800 Subject: [PATCH 33/67] Update single precision files --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index c813f41172..1876287631 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit c813f41172667ffd9176ffb9f044c787a7d60436 +Subproject commit 1876287631d7afae576430425df985313935dea4 From 74bd101baa7f52b535cfbfff30bd79515f06b28a Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 09:12:04 -0800 Subject: [PATCH 34/67] Update additional single precision out file --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index 1876287631..8be7d6c59e 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit 1876287631d7afae576430425df985313935dea4 +Subproject commit 8be7d6c59eee9b818500cabbb5c3fe8e7f15a7e8 From 7149aecd63deefe41e600cb26ff8ba99ea22e626 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 10:01:00 -0800 Subject: [PATCH 35/67] Enable artifacts for logging tests --- .github/workflows/ubuntu-clang-latest.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ubuntu-clang-latest.yml b/.github/workflows/ubuntu-clang-latest.yml index 8171847cc2..1f3eba705f 100644 --- a/.github/workflows/ubuntu-clang-latest.yml +++ b/.github/workflows/ubuntu-clang-latest.yml @@ -82,3 +82,20 @@ jobs: - name: Build # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + - name: Archive build files from failed build + uses: actions/upload-artifact@v4 + if: failure() + with: + name: build_files + path: | + ${{ github.workspace }}/build + !${{ github.workspace }}/build/Testing/output + + - name: Archive output files from failed build + uses: actions/upload-artifact@v4 + if: failure() + with: + name: output_files + path: | + ${{ github.workspace }}/build/Testing/ From 2987445c90b03eeec516fd75da8a00fba2d4fb5e Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 10:09:46 -0800 Subject: [PATCH 36/67] Update double precision files --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index 8be7d6c59e..d6e9fdf155 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit 8be7d6c59eee9b818500cabbb5c3fe8e7f15a7e8 +Subproject commit d6e9fdf155753559e8b693af65b29ae019c59cfd From 0ac44228dd4a6ee66ad346faa336f2fc76325366 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 10:31:52 -0800 Subject: [PATCH 37/67] Enable artifacts for logging tests --- .github/workflows/ubuntu-clang-latest.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ubuntu-clang-latest.yml b/.github/workflows/ubuntu-clang-latest.yml index 1f3eba705f..2031797a42 100644 --- a/.github/workflows/ubuntu-clang-latest.yml +++ b/.github/workflows/ubuntu-clang-latest.yml @@ -57,6 +57,23 @@ jobs: --label-regex logging \ --verbose + - name: Archive build files from failed build + uses: actions/upload-artifact@v4 + if: failure() + with: + name: build_files + path: | + ${{ github.workspace }}/build + !${{ github.workspace }}/build/Testing/output + + - name: Archive output files from failed build + uses: actions/upload-artifact@v4 + if: failure() + with: + name: output_files + path: | + ${{ github.workspace }}/build/Testing/ + build_cycle_profiling: runs-on: ubuntu-latest From ffed497c3ba263356163d6938e81b8372837d3c3 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 10:44:22 -0800 Subject: [PATCH 38/67] Update logging test out files --- .../logging/test_logging_arkode_arkstep_0.out | 12 ++++---- .../test_logging_arkode_arkstep_1_0.out | 18 ++++++------ .../test_logging_arkode_arkstep_1_1_0.out | 10 +++---- .../test_logging_arkode_arkstep_1_1_1.out | 12 ++++---- .../test_logging_arkode_arkstep_2_0.out | 20 ++++++------- .../test_logging_arkode_arkstep_2_1_0.out | 28 +++++++++---------- .../test_logging_arkode_arkstep_2_1_1.out | 20 ++++++------- .../logging/test_logging_arkode_erkstep.out | 12 ++++---- .../logging/test_logging_arkode_mristep_0.out | 6 ++-- .../test_logging_arkode_mristep_1_0.out | 4 +-- .../test_logging_arkode_mristep_1_1_0.out | 4 +-- .../test_logging_arkode_mristep_1_1_1.out | 6 ++-- .../test_logging_arkode_mristep_2_0.out | 6 ++-- .../test_logging_arkode_mristep_2_1_0.out | 4 +-- .../test_logging_arkode_mristep_2_1_1.out | 2 +- .../logging/test_logging_arkode_mristep_3.out | 4 +-- .../test_logging_arkode_mristep_4_0.out | 6 ++-- .../test_logging_arkode_mristep_4_1_0.out | 6 ++-- .../test_logging_arkode_mristep_4_1_1.out | 6 ++-- .../test_logging_arkode_mristep_5_0.out | 4 +-- .../test_logging_arkode_mristep_5_1_0.out | 4 +-- .../test_logging_arkode_mristep_5_1_1.out | 4 +-- .../logging/test_logging_arkode_mristep_6.out | 6 ++-- 23 files changed, 102 insertions(+), 102 deletions(-) diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_0.out index 3231e1f77b..16a5e5f54d 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_0.out @@ -4,10 +4,10 @@ Using ERK method ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 - 2.517915854919593e-03 1.224744224325435e+00 1.731684811946959e+00 2.964961609563943e-12 1.116839953851922e-11 - 4.069501512093439e-03 1.224743181155563e+00 1.731094930827531e+00 3.276268145668837e-12 1.207456357121828e-11 + 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 + 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.004069501512093439 +Current time = 0.007384426414984546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -16,9 +16,9 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001551585657173846 -Current step size = 0.005891448410411261 -Explicit RHS fn evals = 17 +Last step size = 0.002691250845256152 +Current step size = 0.01338285379548646 +Explicit RHS fn evals = 15 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out index dc63f717b1..4a7dc1c79b 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out @@ -4,11 +4,11 @@ Using fixed-point nonlinear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.029860256095084e-04 1.224744870309104e+00 1.732050195224279e+00 2.442490654175344e-15 1.998401444325282e-15 - 3.747645245885612e-03 1.224743437035635e+00 1.731240118427390e+00 9.108140908153928e-10 5.271953984475886e-10 - 5.983772473598933e-03 1.224741215598295e+00 1.729984808853534e+00 1.411835537368233e-09 7.625806652811207e-10 + 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.005983772473598933 +Current time = 0.007971479491300691 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -17,12 +17,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002236127227713321 -Current step size = 0.01008263498360196 +Last step size = 0.002894351482645774 +Current step size = 0.01488513257284924 Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 +Implicit RHS fn evals = 49 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out index 95dfaba3c7..8f21bae9ac 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out @@ -6,10 +6,10 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 - 3.781706040192805e-03 1.224743411877806e+00 1.731225318313145e+00 1.057254284120290e-10 1.072486544018147e-10 - 6.015016008565610e-03 1.224741178982448e+00 1.729963189938353e+00 2.336992821483364e-10 1.590565457121329e-10 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601501600856561 +Current time = 0.007964681773481579 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -18,8 +18,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233309968372805 -Current step size = 0.01012222046831338 +Last step size = 0.002894941524745254 +Current step size = 0.01487588631018596 Explicit RHS fn evals = 0 Implicit RHS fn evals = 45 NLS iters = 27 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out index 32ed4bcd8a..130fb81915 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out @@ -5,11 +5,11 @@ Using dense direct linear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224358e+00 2.220446049250313e-16 8.104628079763643e-14 - 3.781888019234090e-03 1.224743411639714e+00 1.731225239016591e+00 8.112177596331094e-12 2.569811030639357e-11 - 6.015183160113438e-03 1.224741178552313e+00 1.729963074226947e+00 8.796519068710040e-12 8.689449160215190e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.006015183160113438 +Current time = 0.007964648470398546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -18,8 +18,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233295140879348 -Current step size = 0.01012243049502511 +Last step size = 0.002894945180045727 +Current step size = 0.01487583719865171 Explicit RHS fn evals = 0 Implicit RHS fn evals = 44 NLS iters = 26 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out index 630881c055..b8ede9ca26 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out @@ -4,11 +4,11 @@ Using fixed-point nonlinear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 6.661338147750939e-16 4.440892098500626e-16 - 6.516232489625870e-03 1.224740537689633e+00 1.729601039259757e+00 2.278266464372791e-11 2.184104008762233e-10 - 1.016972555592109e-02 1.224734315814070e+00 1.726089959024652e+00 2.482614114285298e-11 2.127358289527592e-10 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 2.220446049250313e-16 + 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 + 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01016972555592109 +Current time = 0.01344993250857926 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -17,12 +17,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003653493066295218 -Current step size = 0.02097401965432383 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 +Last step size = 0.004867200072334344 +Current step size = 0.03107316478401382 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 NLS fails = 0 -NLS iters per step = 11.66666666666667 +NLS iters per step = 13.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out index b313e81b9e..574685ec73 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out @@ -5,11 +5,11 @@ Using GMRES iterative linear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 4.440892098500626e-16 0.000000000000000e+00 - 6.554112583561956e-03 1.224740487151591e+00 1.729572495016884e+00 2.946975996565016e-11 2.206064220189319e-10 - 1.020477566424183e-02 1.224734242922404e+00 1.726048871574017e+00 3.169020601490047e-11 2.147166888732954e-10 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 + 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 + 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020477566424183 +Current time = 0.01344992439355806 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -18,23 +18,23 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650663080679877 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 +Last step size = 0.004867191957313147 +Current step size = 0.03107313681729517 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.66666666666667 LS setups = 0 Jac fn evals = 0 -LS RHS fn evals = 29 +LS RHS fn evals = 33 Prec setup evals = 0 Prec solves = 0 -LS iters = 29 +LS iters = 33 LS fails = 0 Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.074074074074074 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 Jac evals per NLS iter = 0 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out index 58b43ea292..683ecc9120 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out @@ -6,10 +6,10 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 0.000000000000000e+00 0.000000000000000e+00 - 6.554114938847760e-03 1.224740487151368e+00 1.729572493235030e+00 2.654254593892347e-11 2.225244433162743e-10 - 1.020478290001611e-02 1.224734242910499e+00 1.726048863075356e+00 2.852318381485475e-11 2.167570567479515e-10 + 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 + 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020478290001611 +Current time = 0.0134499246632141 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -18,13 +18,13 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650667961168346 -Current step size = 0.02102619488941004 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 +Last step size = 0.004867192226969185 +Current step size = 0.03107318825976415 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 8.666666666666666 +NLS iters per step = 10.33333333333333 LS setups = 3 Jac fn evals = 1 LS RHS fn evals = 0 @@ -35,6 +35,6 @@ LS fails = 0 Jac-times setups = 0 Jac-times evals = 0 LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.03846153846153846 +Jac evals per NLS iter = 0.03225806451612903 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep.out b/test/unit_tests/logging/test_logging_arkode_erkstep.out index 6b5321f906..4dad838034 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep.out @@ -3,10 +3,10 @@ Start ERKStep Logging test ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 - 1.269512694589208e-03 1.224744706901909e+00 1.731957760691857e+00 7.771561172376096e-14 3.164135620181696e-13 - 2.436039363568907e-03 1.224744265725872e+00 1.731708225192427e+00 1.558753126573720e-13 5.899725152858082e-13 + 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 + 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.002436039363568907 +Current time = 0.004411173125219851 Steps = 3 Step attempts = 4 Stability limited steps = 0 @@ -15,7 +15,7 @@ Error test fails = 1 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001166526668979699 -Current step size = 0.003648121325513829 -RHS fn evals = 21 +Last step size = 0.002154093549805171 +Current step size = 0.007723857230083399 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_0.out index ac27da23bd..8005747a85 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_0.out @@ -3,9 +3,9 @@ Using Ex-MRI-GARK method t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769329543e+00 1.731993073504213e+00 2.242650509742816e-14 2.664535259100376e-15 - 2.000000000000000e-03 1.224744463143411e+00 1.731819882857615e+00 4.485301019485632e-14 4.218847493575595e-15 - 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.217248937900877e-15 + 1.000000000000000e-03 1.224744769329543e+00 1.731993073504212e+00 2.242650509742816e-14 3.330669073875470e-15 + 2.000000000000000e-03 1.224744463143411e+00 1.731819882857614e+00 4.485301019485632e-14 5.107025913275720e-15 + 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out index 47733731e6..1c5f9a65f4 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out @@ -4,9 +4,9 @@ Using fixed-point nonlinear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769312645e+00 1.731993073504226e+00 1.687561201890730e-11 1.043609643147647e-14 + 1.000000000000000e-03 1.224744769312645e+00 1.731993073504225e+00 1.687561201890730e-11 1.021405182655144e-14 2.000000000000000e-03 1.224744463066094e+00 1.731819882857627e+00 7.727218864772567e-11 7.993605777301127e-15 - 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.975397705995420e-14 + 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out index 4f37f708a3..5a3946ce15 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out @@ -5,8 +5,8 @@ Using GMRES iterative linear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.154631945610163e-14 - 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.398081733190338e-14 + 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.132427485117660e-14 + 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.375877272697835e-14 3.000000000000000e-03 1.224743952843819e+00 1.731531270273608e+00 1.053868103895184e-11 3.752553823233029e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out index c78f6fd09b..2c8ba356dd 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out @@ -5,9 +5,9 @@ Using dense direct linear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628497336980672e-11 - 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441158800247649e-11 - 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179997030935e-07 + 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628475132520180e-11 + 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441136595787157e-11 + 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out index 5e53d4b2ee..7101ea207b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out @@ -4,9 +4,9 @@ Using fixed-point nonlinear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.437694987151190e-15 - 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.019806626980426e-14 - 3.000000000000000e-03 1.224743952637017e+00 1.731531270273480e+00 1.962627838025810e-10 8.992806499463768e-14 + 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.659739592076221e-15 + 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.042011087472929e-14 + 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out index e450b9fb23..fd24ba0ae1 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out @@ -6,8 +6,8 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.000000000000000e-03 1.224744769329784e+00 1.731993073504208e+00 2.637889906509372e-13 7.105427357601002e-15 - 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.332267629550188e-14 - 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.776356839400250e-14 + 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.287858708565182e-14 + 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out index da3019afb6..9c031d136e 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out @@ -7,7 +7,7 @@ Using dense direct linear solver 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.000000000000000e-03 1.224744769329530e+00 1.731993073522877e+00 9.103828801926284e-15 1.866129473171441e-11 2.000000000000000e-03 1.224744463143402e+00 1.731819882942073e+00 3.552713678800501e-14 8.445355526021103e-11 - 3.000000000000000e-03 1.224743952868526e+00 1.731531529558496e+00 3.524580627356499e-11 2.592849255300678e-07 + 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_3.out index fdfb2626b9..12d3d8306b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_3.out @@ -4,8 +4,8 @@ Using Ex-MRI-SR method ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.000000000000000e-03 1.224744769314268e+00 1.731993073495719e+00 1.525224391230040e-11 8.496092718246473e-12 - 2.000000000000000e-03 1.224744463112885e+00 1.731819882840752e+00 3.048206131950337e-11 1.686739636852508e-11 - 3.000000000000000e-03 1.224743952787591e+00 1.731531270248313e+00 4.568923017700399e-11 2.525712972101246e-11 + 2.000000000000000e-03 1.224744463112885e+00 1.731819882840751e+00 3.048206131950337e-11 1.686806250233985e-11 + 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out index 6de8a27c70..b0b6d013ed 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out @@ -4,9 +4,9 @@ Using fixed-point nonlinear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487210934049472e-12 - 2.000000000000000e-03 1.224744463044450e+00 1.731819882840759e+00 9.891665264660787e-11 1.686029094116748e-11 - 3.000000000000000e-03 1.224743952645809e+00 1.731531270248295e+00 1.874711497151793e-10 2.527533737861631e-11 + 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487655023259322e-12 + 2.000000000000000e-03 1.224744463044450e+00 1.731819882840758e+00 9.891665264660787e-11 1.686140116419210e-11 + 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out index 319f0bc47a..1c01fe07f1 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out @@ -5,9 +5,9 @@ Using GMRES iterative linear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487210934049472e-12 - 2.000000000000000e-03 1.224744463099111e+00 1.731819882840765e+00 4.425571020760799e-11 1.685385164762465e-11 - 3.000000000000000e-03 1.224743952771547e+00 1.731531270248329e+00 6.173306310586213e-11 2.524158659866771e-11 + 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487655023259322e-12 + 2.000000000000000e-03 1.224744463099111e+00 1.731819882840764e+00 4.425571020760799e-11 1.685473982604435e-11 + 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out index 2c2896ad6f..07542ffbd4 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out @@ -5,9 +5,9 @@ Using dense direct linear solver t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.659073044559591e-12 - 2.000000000000000e-03 1.224744463096872e+00 1.731819882889337e+00 4.649436391446216e-11 3.171818363512102e-11 - 3.000000000000000e-03 1.224743952790514e+00 1.731531402623384e+00 4.276623499777088e-11 1.323498133309897e-07 + 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.658628955349741e-12 + 2.000000000000000e-03 1.224744463096872e+00 1.731819882889336e+00 4.649436391446216e-11 3.171707341209640e-11 + 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out index 0599c21ae4..bdbd20e460 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out @@ -5,8 +5,8 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.000000000000000e-03 1.224744769381067e+00 1.731993073495719e+00 5.154610072111154e-11 8.496092718246473e-12 - 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683408967778632e-11 - 3.000000000000000e-03 1.224743952908896e+00 1.731531270248400e+00 7.561573589498494e-11 2.517031028048677e-11 + 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683453376699617e-11 + 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out index b2645972c0..8c159b07a5 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out @@ -6,8 +6,8 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.000000000000000e-03 1.224744769394401e+00 1.731993073495719e+00 6.488076742527937e-11 8.496092718246473e-12 - 2.000000000000000e-03 1.224744463274739e+00 1.731819882840792e+00 1.313724684592898e-10 1.682742833963857e-11 - 3.000000000000000e-03 1.224743953034659e+00 1.731531270248434e+00 2.013786915000537e-10 2.513611541132832e-11 + 2.000000000000000e-03 1.224744463274739e+00 1.731819882840791e+00 1.313724684592898e-10 1.682787242884842e-11 + 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out index 1bbfb08a0a..84acc9698a 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out @@ -6,8 +6,8 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.000000000000000e-03 1.224744769394184e+00 1.731993073508899e+00 6.466338575705777e-11 4.683364807078760e-12 - 2.000000000000000e-03 1.224744463272502e+00 1.731819882893496e+00 1.291351470200652e-10 3.587685704076193e-11 - 3.000000000000000e-03 1.224743953054848e+00 1.731531408143622e+00 2.215676531136523e-10 1.378700513754438e-07 + 2.000000000000000e-03 1.224744463272502e+00 1.731819882893495e+00 1.291351470200652e-10 3.587596886234223e-11 + 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_6.out index 50eb484aeb..b86b15958f 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_6.out @@ -3,9 +3,9 @@ Using MERK method t u v u err v err ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 - 1.000000000000000e-03 1.224744769278491e+00 1.731993073504249e+00 5.103006905926577e-11 3.375077994860476e-14 - 2.000000000000000e-03 1.224744463041408e+00 1.731819882857753e+00 1.019582196448710e-10 1.338928967697939e-13 - 3.000000000000000e-03 1.224743952680496e+00 1.731531270273762e+00 1.527842297122106e-10 1.914024494453770e-13 + 1.000000000000000e-03 1.224744769278491e+00 1.731993073504248e+00 5.103006905926577e-11 3.286260152890463e-14 + 2.000000000000000e-03 1.224744463041408e+00 1.731819882857751e+00 1.019582196448710e-10 1.321165399303936e-13 + 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 From f689914960495a0a8f2091c2e2c87111d56e7c6f Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 14:11:59 -0800 Subject: [PATCH 39/67] Level 3 logging out files --- .../test_logging_arkode_arkstep_lvl3_0.out | 46 +-- .../test_logging_arkode_arkstep_lvl3_1_0.out | 146 +++---- ...test_logging_arkode_arkstep_lvl3_1_1_0.out | 262 ++++++------- ...test_logging_arkode_arkstep_lvl3_1_1_1.out | 122 +++--- .../test_logging_arkode_arkstep_lvl3_2_0.out | 166 ++++---- ...test_logging_arkode_arkstep_lvl3_2_1_0.out | 356 ++++++++++-------- ...test_logging_arkode_arkstep_lvl3_2_1_1.out | 154 +++++--- .../test_logging_arkode_erkstep_lvl3.out | 60 +-- .../test_logging_arkode_forcingstep_lvl3.out | 108 +++--- .../test_logging_arkode_mristep_lvl3_0.out | 118 +++--- .../test_logging_arkode_mristep_lvl3_1_0.out | 142 +++---- ...test_logging_arkode_mristep_lvl3_1_1_0.out | 230 +++++------ ...test_logging_arkode_mristep_lvl3_1_1_1.out | 144 +++---- .../test_logging_arkode_mristep_lvl3_2_0.out | 148 ++++---- ...test_logging_arkode_mristep_lvl3_2_1_0.out | 186 ++++----- ...test_logging_arkode_mristep_lvl3_2_1_1.out | 128 +++---- .../test_logging_arkode_mristep_lvl3_3.out | 132 +++---- .../test_logging_arkode_mristep_lvl3_4_0.out | 168 ++++----- ...test_logging_arkode_mristep_lvl3_4_1_0.out | 254 ++++++------- ...test_logging_arkode_mristep_lvl3_4_1_1.out | 158 ++++---- .../test_logging_arkode_mristep_lvl3_5_0.out | 154 ++++---- ...test_logging_arkode_mristep_lvl3_5_1_0.out | 244 ++++++------ ...test_logging_arkode_mristep_lvl3_5_1_1.out | 150 ++++---- .../test_logging_arkode_mristep_lvl3_6.out | 94 ++--- ...test_logging_arkode_splittingstep_lvl3.out | 108 +++--- 25 files changed, 2068 insertions(+), 1910 deletions(-) diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out index 213d39f82b..66787746b4 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out @@ -6,50 +6,50 @@ Using ERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.119441024380336e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.179161536570504e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.419249037637078e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.594510015625189e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.002414929829310085 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004590189544118885 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001310450940264551 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001939061843257063 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001310450940264551 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002857099752080839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002517915854919593 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.004693175569728394 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001914183397592072 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.004693175569728394 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0133919487764742 - 2.517915854919593e-03 1.224744224325435e+00 1.731684811946959e+00 2.964961609563943e-12 1.116839953851922e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002517915854919593, h = 0.001551585657173846 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002517915854919593 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.006457592697574643 + 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.004693175569728394, h = 0.002691250845256152 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.004693175569728394 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.003293708683506516 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.005769675907830855 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.003293708683506516 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.006307926076882085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.004069501512093439 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.007384426414984546 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003681605097799978 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.007384426414984546 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002281919499449541 - 4.069501512093439e-03 1.224743181155563e+00 1.731094930827531e+00 3.276268145668837e-12 1.207456357121828e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007698613381948886 + 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.004069501512093439 +Current time = 0.007384426414984546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -58,9 +58,9 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001551585657173846 -Current step size = 0.005891448410411261 -Explicit RHS fn evals = 17 +Last step size = 0.002691250845256152 +Current step size = 0.01338285379548646 +Explicit RHS fn evals = 15 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out index 133c9cc8fc..dc77c3f64c 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out @@ -5,178 +5,196 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.03124727847178982 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.06249535103583782 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1562371643297375 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 4.895203386441746e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.005361255358247282 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09624183453536866 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09764898308268008 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.08528677931681904 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.270379821731715 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801208512e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813593647933 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813597902462 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414317944671e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414356077108e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.257351772282993e-09 - 1.029860256095084e-04 1.224744870309104e+00 1.732050195224279e+00 2.442490654175344e-15 1.998401444325282e-15 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003644659220276104 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001014150830678534 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.052384307479459e-09 + 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004974141983045409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002590057017132213 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 43.57700668684354 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878045794722 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.04633595994229208 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2132943179163734 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002836480440816586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008314322537341579 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 209.0149703261905 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745956564198 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2042649292783136 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682984423547 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002107548596761365 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003211824765012889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 130.3177912362241 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628485946814 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1317639651299175 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005044937403 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00192531563574756 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005276093687976734 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 115.7066352240969 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028113429431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991732185001 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1179815315332422 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087293412658 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.003747645245885612 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005077128008654917 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 330.9200194658451 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286068246216 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994911904798 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3098605220101286 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537235589097 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.007864906415392474 - 3.747645245885612e-03 1.224743437035635e+00 1.731240118427390e+00 9.108140908153928e-10 5.271953984475886e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.003747645245885612, h = 0.002236127227713321 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004306677052813943 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005777685801326963 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005077128008654917, h = 0.002894351482645774 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005077128008654917 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006524303749977804 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 113.5127839162196 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422796849768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.06347372373964355 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841554791242 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005424740666670603 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005500995969719722 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 369.9413329159526 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191489779 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1961628166373034 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307475559162 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.004977515221127939 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006886097685308526 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 262.6686572611258 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655472878314 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1422666879689584 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988497214 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004865708859742272 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008087253550606523 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 237.752750401516 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341499829686 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1294572005123361 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855435739141 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950527502381 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005983772473598933 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007971479491300691 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 512.8615902035506 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724335587325 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2648770776226016 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528495900837 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559093605087 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.001116850591343922 - 5.983772473598933e-03 1.224741215598295e+00 1.729984808853534e+00 1.411835537368233e-09 7.625806652811207e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006675414612441149 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.005983772473598933 +Current time = 0.007971479491300691 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -185,12 +203,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002236127227713321 -Current step size = 0.01008263498360196 +Last step size = 0.002894351482645774 +Current step size = 0.01488513257284924 Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 +Implicit RHS fn evals = 49 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out index f74ac6e566..1ea9940c35 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out @@ -6,91 +6,93 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.03124727847178982, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.06249535103583782, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.044190325002054, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.08838177302014931, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 8.016227206018892e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.603276888666014e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 8.016227206018892e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647747457602 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.603276888666014e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375176740569 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1562371643708069, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.005361255349771264, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.2209527167999096, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.007581960026991833, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 4.008105378087632e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.375406356692272e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 4.008105378087632e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1562331731583946 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.834156785593834e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.375406356692272e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361117819127116 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09624183456739453, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09764898307759746, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1361065077128771, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1380965162202792, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.468991359913261e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.505112439889124e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.468991359913261e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623937258978928 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.505112439889124e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648637841014 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.08528677935133332, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2703798218034756, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1206137200497772, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3823748109864959, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.187949946472201e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.936323710727879e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.187949946472201e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459686493964 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.936323710727879e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729285399011 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824623e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599405794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599404871, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295684377, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295683072, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919782981e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919779191e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919782981e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849628705 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919779191e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849627783 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165771e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165041e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -98,124 +100,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.010389402682452e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060506166026043e-09 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003678720014583297 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001022666029255333 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004966754223126817 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586363137172917 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 44.35369875822553, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366823253987, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 62.72560232529324, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905127158407, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.04062175054285926 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351659917327 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.005089991166117e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.539312788374185e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.005089991166117e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31583324937814 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.539312788374185e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754497113704 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.393376666599104e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448156610062e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002862026036546981 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303503413429693 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 212.8147091519881, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497452804125, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 300.9654479552272, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273631423932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948470890329139 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553135597982 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.023368215406643e-17 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.071535650853336e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.023368215406643e-17 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 212.6569919499078 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.071535650853336e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624678638776 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.748984444407891e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395866022775986e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002126282033630322 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207207415063769 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 132.6733466500091, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636799879348, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 187.6284461978699, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540032655901, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1214861228197153 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964986383052 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.410337134365055e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.948588646235637e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.410337134365055e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 132.5690472826842 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.948588646235637e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280762384555 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.141721415834757e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896834065384e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.001942346032901157 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268410417661398 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.7961695173268, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935820216669, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.5889405270037, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280147562397, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1078639628765014 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.80823181193877 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.818288520560997e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.635179301029465e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.818288520560997e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7022409131975 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.635179301029465e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692023218828 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.14887367151013e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00028701536186056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.003781706040192805 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069740248736325 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 336.9671105380513, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615178930309, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 476.5434577965859, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761541680366, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3085169077524141 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726379422214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.17116109814417e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.08971449261438e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.17116109814417e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 336.736319034684 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.08971449261438e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.265941067359 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.346288867431381e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.000249564687271857, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -223,124 +227,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.008163105466437349 - 3.781706040192805e-03 1.224743411877806e+00 1.731225318313145e+00 1.057254284120290e-10 1.072486544018147e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.003781706040192805, h = 0.002233309968372805 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004340033532286006 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743360545342547 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069740248736325, h = 0.002894941524745254 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069740248736325 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517211011108952 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 114.2475703576066, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291832667672, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 161.5704634679017, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.079892577741, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.06347262680418689 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2844296690428963 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.746714923333988e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.689625129912962e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.746714923333988e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.2024221826183 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.689625129912962e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681714724712 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.199113684336701e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724634024090804e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005456688516472409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005493694619466006 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 372.0708229808176, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918432218, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 526.1876040227913, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372636959103, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.206598731109143 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702546356424 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.060023072317438e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.743428383750915e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.060023072317438e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 371.939257112824 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.743428383750915e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491707937726 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.123782867339571e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265621792903265e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005010026522797847 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879078701702109 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 264.2522611564104, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555520155276, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 373.7091316151527, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203724428682, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1467632212595206 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.366534529643799 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.453408637887063e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.506305455047092e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.453408637887063e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 264.1544278478215 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.506305455047092e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569019654059 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.142262491733078e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.41936993456799e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004898361024379207 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080479434471389 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 239.1950412070286, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.820797410297, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 338.2728713273712, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207822961327, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1328534050683189 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810696378324 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.003480721324008e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.043442040705694e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.003480721324008e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 239.1054906887548 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.043442040705694e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110606696143 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.769091705246994e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313402503713, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00601501600856561 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964681773481579 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 515.6509104293493, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870949936611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 729.2405109792198, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.359027870932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2862495506617406 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969989650043 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.660035032647116e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.97124359201826e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.660035032647116e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 515.479276837567 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.97124359201826e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869312485084 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 7.67937747240094e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267402460637, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -348,10 +354,10 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.001111259275024442 - 6.015016008565610e-03 1.224741178982448e+00 1.729963189938353e+00 2.336992821483364e-10 1.590565457121329e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680659089283182 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601501600856561 +Current time = 0.007964681773481579 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -360,8 +366,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233309968372805 -Current step size = 0.01012222046831338 +Last step size = 0.002894941524745254 +Current step size = 0.01487588631018596 Explicit RHS fn evals = 0 Implicit RHS fn evals = 45 NLS iters = 27 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out index 3ff3e766e9..7adbb8afdb 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out @@ -6,227 +6,233 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647749568791 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375180962681 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1562331594653479 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.380843176869396e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361118155683129 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623936755399637 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648428541893 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459315580529 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729029309684 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842759940812e-08 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749520049542 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749630505384 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.009107594385155e-09 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224358e+00 2.220446049250313e-16 8.104628079763643e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003678901993624582 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001022711524015654 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060546984496858e-09 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.00496671726474331 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586344657981163 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31728809265712 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401886078219 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002706685111211134 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824834014635 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002862162520827944 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303449289130156 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 212.6403773707838 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500371247808 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03696205723054138 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799203649459 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002126382122103028 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207184316074077 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 132.5646009288685 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613569759502 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01706360659869033 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324507830747 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.001942437022421799 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268371980942552 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.69961092995 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775595050387 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01382292596398069 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769922509453 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00378188801923409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069703290352819 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 336.69118258825 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.0057975967644 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.07750779266514742 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2511122224022418 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.008164718360412736 - 3.781888019234090e-03 1.224743411639714e+00 1.731225239016591e+00 8.112177596331094e-12 2.569811030639357e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00378188801923409, h = 0.002233295140879348 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004340211804453927 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743182020382792 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069703290352819, h = 0.002894945180045727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069703290352819 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517175880375682 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.1880202704021 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.0430042964744 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01832920615797257 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599515968683 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005456859374893601 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 371.8754828183439 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208731951771 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.07514845578796357 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02768906071174051 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005010200346717731 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879044027881399 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 264.1139062313106 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868001832096 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.04898184989809135 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1676270895079329 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004898535589673764 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080446277600375 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 239.0698529878246 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463592806854 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.04334360894804039 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066040662974 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.006015183160113438 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964648470398546 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 515.3793206142866 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442245792432 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1148530271845262 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383851641306 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111123036409299 - 6.015183160113438e-03 1.224741178552313e+00 1.729963074226947e+00 8.796519068710040e-12 8.689449160215190e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680697280368452 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.006015183160113438 +Current time = 0.007964648470398546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -235,8 +241,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233295140879348 -Current step size = 0.01012243049502511 +Last step size = 0.002894945180045727 +Current step size = 0.01487583719865171 Explicit RHS fn evals = 0 Implicit RHS fn evals = 44 NLS iters = 26 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out index 5b62247a95..b00fb093c9 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out @@ -7,206 +7,236 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.964790102879962e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.02755359227464431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.04444466957300736 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09609143371919215 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.02805399819163158 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1806077954736169 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.001406013957715032 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1224890674762599 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 5.678291534219827e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.902425639273363e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499814051260959 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499781580918246 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.859528530294883e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 3.882514578718288e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.827144826036898e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 6.661338147750939e-16 4.440892098500626e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006413246464016361 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.978178734921257e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 2.220446049250313e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003309609257617689 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 15.98161350203798 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.28676295640456 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0319537758652567 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01327964506398449 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00223218385166294 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.2088497628645 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 319.038855971821 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2296232565062182 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.4083960595797016 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008591478259674878 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004079198833299652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 392.2454526225389 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 204.2604304098407 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.768204971049801 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2615189380810247 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.61650766660443 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.00247350314635035 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.016080355714478 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005554245520023415 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 727.0172799128682 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 859.4593635466485 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.423068579652633 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.099240451491132 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.004581420253567278 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002311994534000555 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00651623248962587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1001.424779946844 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1735.696263548979 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.961856568802519 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 2.218847433921493 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.006318952069057399 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.004667092324739613 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004005675669815595 - 6.516232489625870e-03 1.224740537689633e+00 1.729601039259757e+00 2.278266464372791e-11 2.184104008762233e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00651623248962587, h = 0.003653493066295218 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00651623248962587 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283528804423328 + 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867200072334344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008342979022773478 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784930854111496 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 561.6874348987023 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 486.6849733552747 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.6264035376264484 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3569950644413023 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001148411251882187 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0004304924100195743 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007729192187635882 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350135077167 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 407.4437320238362 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 929.5046859262942 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.45442507084866 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.6816226096899868 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008331059917899451 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008219657363979175 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.008781398190728904 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324446047692 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 816.9903551651699 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 722.3829889045846 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.9109014874897468 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5298154349220007 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001669947504647432 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0006389028715493185 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.009621701595976804 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947772441669988 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 150.9207596467068 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1107245052612964 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198977248687895 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1181.257906176007 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1650.910714051643 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.316629339620776 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.20997962940408 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002413704717815864 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001459084170060892 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01016972555592109 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344993250857926 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1436.644014581929 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2524.632948028877 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.601181087086898 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.849220051021347 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002935513140712882 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.00222993820597665 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004151480914860668 - 1.016972555592109e-02 1.224734315814070e+00 1.726089959024652e+00 2.482614114285298e-11 2.127358289527592e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508382967907606 + 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01016972555592109 +Current time = 0.01344993250857926 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -215,12 +245,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003653493066295218 -Current step size = 0.02097401965432383 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 +Last step size = 0.004867200072334344 +Current step size = 0.03107316478401382 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 NLS fails = 0 -NLS iters per step = 11.66666666666667 +NLS iters per step = 13.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out index a42a7302fa..a392103e98 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out @@ -8,85 +8,101 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.964790102879962e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.368628977311079e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.964790102879962e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.02755359227464431, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.04444466957300736, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.03896666388690052, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.06285425448533784, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 7.068684245838184e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 5.632677908218931e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 7.068684245838184e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02755288474442038 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 5.632677908218931e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.04444410578228845 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09609143375169925, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.02805399818943428, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1358938088395288, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.03967434471828821, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.465154402188027e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.555418780415207e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.465154402188027e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09608896628805572 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.555418780415207e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364231763626 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1806077956037432, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001406013956085092, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.2554179940131215, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001988404005581387, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 4.633330046263267e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.781750861212226e-08 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 4.633330046263267e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1806031579260884 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.781750861212226e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.00140599612163296 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1224890674957951, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1732257004949869, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.552348977012323e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.552348977012323e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.122487513702728 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.276257185735068e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.097675801631708e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499814053442976, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499781581065444, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270937789918, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535225014913209, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413182655035927e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.168070754129446e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413182655035927e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.24997498617904 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.168070754129446e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749870902664 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534802522694541e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.240163117980688e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -94,294 +110,336 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.742325031242378e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 4.440892098500626e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006451126557952447 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.962608770598098e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003328549304585732 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.28676295640445, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.54767968586433, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01084488338297794 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.062457463863292e-18 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.062457463863292e-18 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.27594417400336 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.641449462771085e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.08083333497015, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 319.0388559495085, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.74173259657616, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 451.1890770077911, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.02645577285028037 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3329076500534073 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.441887564474575e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.501210144697988e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.441887564474575e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.0545285272489 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.501210144697988e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 318.7059367116414 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.371604616849797e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.179446848380409e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002244760042849721 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 118.5357260444194, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 204.2604304099707, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 167.6348313977596, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 288.8678709419464, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1903179152662646 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2132014287585624 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.729212284236706e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.282566364595847e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.729212284236706e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 118.3454261629101 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.282566364595847e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 204.0472286166169 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.939363556579449e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.756635827914268e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004102684491540025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 396.7799729589967, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 12.61650664748519, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 561.131619036643, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 17.84243481064386, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.636716394760145 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01309836989019836 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.484127247738153e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.46244039757209e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.484127247738153e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 396.1432917940788 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.46244039757209e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 12.60338892277173 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002185148605823037, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.326173761070803e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005586443599869088 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 735.4741661021753, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 859.4593617170807, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1040.117540476739, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1215.459085648819, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.179209245221302 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.8956246239443026 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.439840890719091e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.030226860465728e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.439840890719091e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 734.2949033035875 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.030226860465728e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 858.5635718918842 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0007513008267848697, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0006669704702946733, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001062499818661282, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.0009432386847930886, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.409470765856917e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 8.133359313453013e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.409470765856917e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007490846834053407 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 8.133359313453013e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006656918969127018 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006554112583561956 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1013.105862937948, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1735.696266435071, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1432.748051486545, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2454.645200152823, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.625758816210647 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.806765737992726 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.461866393280248e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.563499989384819e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.461866393280248e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1011.480559058974 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.563499989384819e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.889229165088 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001425560608310061, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.002718457019141684, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.002016047146256928, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.003844478785198506, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.674392594609514e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.315013662036427e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.674392594609514e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001421355552797087 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.315013662036427e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002713245768397989 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004100678731752195 - 6.554112583561956e-03 1.224740487151591e+00 1.729572495016884e+00 2.946975996565016e-11 2.206064220189319e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.006554112583561956, h = 0.003650663080679877 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.006554112583561956 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283548497449123 + 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867191957313147 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008379444123901894 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784928849701259 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 564.5140709613839, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 486.6841613576611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 798.343455304037, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 688.2753415841802, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.5122389740491479 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2905838027315988 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.025142508879052e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.972086024975875e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.025142508879052e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 564.0009893185947 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.972086024975875e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 486.3927263744305 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002506099885822652, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0001227094375903753, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007766132726347675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.01063501008597439 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 409.2658290091583, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 929.5029709021572, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 578.7892860006197, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1314.515707715915, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3714280685337064 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.5546445680830815 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.888978519100137e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.037889406088299e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.888978519100137e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 408.893774404372 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.037889406088299e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 928.9466973418515 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0001316914393787291, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0004477970003846742, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00881752369358348 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324174194482 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 820.3045390101707, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 722.3816799642682, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1160.085804344393, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1021.601969015329, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7440015048060086 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.4311810707199935 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.496786641166685e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.593994958436902e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.496786641166685e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 819.5592726848695 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.593994958436902e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 721.9492334869299 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0005293932474467006, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002704617787686389, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771833043398 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 150.9205026779972, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.0007486751103678599, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 213.4338217273886, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.09014627001527259 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 5.624757031827298e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.517528050101038e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 5.624757031827298e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0005285091861003915 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.517528050101038e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 150.8300897407031 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.175251756248302e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00965717620213985 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198976680636412 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1185.704265874136, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1650.907508329884, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1676.839053762838, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2334.735788503695, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.074784364303355 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.9840615809730719 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.722145958622607e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.040342380620992e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.722145958622607e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1184.627633160195 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.040342380620992e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1649.920539763122 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001105910995128215, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00141184262919741, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001563994328087847, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001996646994147466, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.175020868105581e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 9.881988225013894e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.175020868105581e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001104064176681669 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 9.881988225013894e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001410289763273809 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01020477566424183 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344992439355806 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1441.799134798569, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2524.627810473625, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2039.011890649931, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3570.362889516092, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.306631795919364 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.503016169962119 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.979711756780436e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.200228842881807e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.979711756780436e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1440.490301836212 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.200228842881807e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.120349586974 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001634877898056415, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.003298297688278241, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.002312066496255401, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.004664497323506916, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.737042516505863e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.308595340591967e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.737042516505863e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001632147729277761 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.308595340591967e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003294669935556694 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004138555190661009 - 1.020477566424183e-02 1.224734242922404e+00 1.726048871574017e+00 3.169020601490047e-11 2.147166888732954e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508380845468441 + 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020477566424183 +Current time = 0.01344992439355806 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -390,23 +448,23 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650663080679877 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 +Last step size = 0.004867191957313147 +Current step size = 0.03107313681729517 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.66666666666667 LS setups = 0 Jac fn evals = 0 -LS RHS fn evals = 29 +LS RHS fn evals = 33 Prec setup evals = 0 Prec solves = 0 -LS iters = 29 +LS iters = 33 LS fails = 0 Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.074074074074074 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 Jac evals per NLS iter = 0 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out index 63c8ea6012..49d554a3bd 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out @@ -8,231 +8,271 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.964697559380313e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368573862746562e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02755288476307282 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.0444441057897963 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09608896636098527 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364232183439 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.180603158079822 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.001405996121470046 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1224875137281462 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.25245970796259e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.259048948413402e-13 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749863599196 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749871485559 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.742319852554314e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.962603584910639e-11 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 0.000000000000000e+00 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006451128913238251 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003328550482228634 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.27594245005348 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.016614577411573e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.05452507214864 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 318.7057870277454 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.129920641765477e-05 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 9.187893730682911e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002244760824804608 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 118.3454769917176 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 204.0471672974475 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.953618323509618e-05 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 3.764993563400174e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004102685951817224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 396.1432178884001 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 12.60338862820494 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0002187086232103356 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.438321343380526e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005586445601862022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 734.2942058683061 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 858.5624846927961 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007520421592194119 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006675017140435614 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00655411493884776 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1011.478964763825 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.884798165494 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001424579352601338 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00272110725063923 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004100655316169613 - 6.554114938847760e-03 1.224740487151368e+00 1.729572493235030e+00 2.654254593892347e-11 2.225244433162743e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411493884776, h = 0.003650667961168346 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411493884776 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283547843061466 + 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867192226969185 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784928916306302 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 486.3925390340005 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0001400250965491854 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008379448919431933 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.01063501019967631 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 564.0014806129656 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 928.9460233583245 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0003203746251509396 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0004483582992973109 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007766136701955651 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324183227959 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 408.8942864970894 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 721.9488354659991 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0001318689853766368 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0002707998091281837 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.008817529074772134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771853267601 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 819.5599166135717 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 150.8300789506056 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0005296666417807359 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.181473423917798e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.009657182705840853 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198976699512334 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1184.62805856745 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1649.918340583196 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001106743799152199 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001414605565722521 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01020478290001611 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499246632141 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1440.490382360151 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.115136876571 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001636494915150856 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003307199228182218 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004138569211494713 - 1.020478290001611e-02 1.224734242910499e+00 1.726048863075356e+00 2.852318381485475e-11 2.167570567479515e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508359824665829 + 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020478290001611 +Current time = 0.0134499246632141 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -241,13 +281,13 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650667961168346 -Current step size = 0.02102619488941004 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 +Last step size = 0.004867192226969185 +Current step size = 0.03107318825976415 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 8.666666666666666 +NLS iters per step = 10.33333333333333 LS setups = 3 Jac fn evals = 1 LS RHS fn evals = 0 @@ -258,6 +298,6 @@ LS fails = 0 Jac-times setups = 0 Jac-times evals = 0 LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.03846153846153846 +Jac evals per NLS iter = 0.03225806451612903 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out index 9809f9d359..7865c98f39 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out @@ -5,64 +5,64 @@ Start ERKStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.119441024380336e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 5.14930128047542e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.179161536570504e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 7.723951920713131e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.419249037637078e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.594510015625189e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008882575353349156 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.02154093549805171 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.004544273702284087 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.008719360224830193 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.004544273702284087 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.01302754732444054 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.008985561378958664 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.02164392152366122 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.006764917540621375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.02164392152366122 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 2.462475155319869, kflag = 5 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.001166526668979699 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.006764917540621375 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 3.140201787461667, kflag = 5 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.002154093549805171 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.02164392152366122 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006862493600993581 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000964623445531577 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0006862493600993581 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001395442155492611 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001269512694589208 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002257079575414679 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000977881027344283 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002257079575414679 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007282628719708946 - 1.269512694589208e-03 1.224744706901909e+00 1.731957760691857e+00 7.771561172376096e-14 3.164135620181696e-13 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.001269512694589208, h = 0.001166526668979699 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001269512694589208 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003093648788603309 + 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002257079575414679, h = 0.002154093549805171 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002257079575414679 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001852776029079057 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.003118716995336748 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001852776029079057 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.003549535705297782 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002436039363568907 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.004411173125219851 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002144407696323982 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.004411173125219851 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007283923530119241 - 2.436039363568907e-03 1.224744265725872e+00 1.731708225192427e+00 1.558753126573720e-13 5.899725152858082e-13 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003130074629321011 + 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.002436039363568907 +Current time = 0.004411173125219851 Steps = 3 Step attempts = 4 Stability limited steps = 0 @@ -71,7 +71,7 @@ Error test fails = 1 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001166526668979699 -Current step size = 0.003648121325513829 -RHS fn evals = 21 +Last step size = 0.002154093549805171 +Current step size = 0.007723857230083399 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out index 5f36995dc7..1cb90776c4 100644 --- a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out +++ b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out @@ -7,13 +7,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -21,13 +21,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0005, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -37,13 +37,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -51,13 +51,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.00025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0004375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -65,13 +65,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0006875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -79,13 +79,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0009375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -98,13 +98,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.001, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -112,13 +112,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.0015, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -128,13 +128,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.001, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0011875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -142,13 +142,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.00125, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0014375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -156,13 +156,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0015, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0016875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -170,13 +170,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00175, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0019375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -189,13 +189,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.002, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -203,13 +203,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0025, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -219,13 +219,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.002, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0021875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -233,13 +233,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00225, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0024375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -247,13 +247,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002687500000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -261,13 +261,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002750000000000001, h = 0.0002499999999999991 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0029375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out index df003f735b..cfefb66d81 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out @@ -11,73 +11,73 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00075 @@ -85,31 +85,31 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618640185768e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783215943582465e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0002691273172028848 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006154363413985574 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005885236096782689 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006154363413985574 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006423490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006827181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.061352125450266e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.524836630178692e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -117,21 +117,21 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00075, h = 0.0002499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009374999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.534938689302334e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.613867963908573e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329543e+00 1.731993073504213e+00 2.242650509742816e-14 2.664535259100376e-15 + 1.000000000000000e-03 1.224744769329543e+00 1.731993073504212e+00 2.242650509742816e-14 3.330669073875470e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -140,17 +140,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185275272059e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469718993709e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00175 @@ -158,17 +158,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.0004166666666666664 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001583333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001645833333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.184752984633551e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.354351058885305e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -176,21 +176,21 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00175, h = 0.0002499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0019 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0019375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.535440853723494e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.653375431797445e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463143411e+00 1.731819882857615e+00 4.485301019485632e-14 4.218847493575595e-15 + 2.000000000000000e-03 1.224744463143411e+00 1.731819882857614e+00 4.485301019485632e-14 5.107025913275720e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -199,17 +199,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335258683e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448229966051e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00275 @@ -217,17 +217,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0004166666666666659 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002583333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002749999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002645833333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.185319915370691e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.382019849665957e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -235,21 +235,21 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00275, h = 0.00025 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0029 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0029375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53635312385524e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.687683867585899e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.217248937900877e-15 + 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out index 4e9fc5212f..a80c7ebcbc 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out @@ -12,83 +12,83 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.618808553272737 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.618808553454022 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0007928652556788505 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0007928652557433674 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -97,41 +97,41 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618612523282e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783214733348721e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681769616071643e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242761669623e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.47508400821115 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.47508400830179 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00318668913410324 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.003186689134226742 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -140,34 +140,34 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0006666666666666666, h = 0.0003333333333333331 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151446454876e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.774107490330471e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56852920005934 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56852920014998 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00721853154020951 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007218531540241768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769312645e+00 1.731993073504226e+00 1.687561201890730e-11 1.043609643147647e-14 + 1.000000000000000e-03 1.224744769312645e+00 1.731993073504225e+00 1.687561201890730e-11 1.021405182655144e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -176,24 +176,24 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852819112485e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469774320306e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 18.33117208795071 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 18.33117208795072 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.005605053590958301 @@ -205,27 +205,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341067341592e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645787296775e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 41.89912728820217 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 41.89912728811153 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.012810580405903 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01281058040587075 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -234,27 +234,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983467222143e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663319968874e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70323030012283 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.7032303000322 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02165342185634298 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02165342185631074 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -270,17 +270,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753308321081e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448202299966e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 @@ -299,17 +299,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0003333333333333328 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.854673527563141e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.794076539327454e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 @@ -328,34 +328,34 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748234790955e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.797515668534437e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347848203848 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347848202942 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03608300450075731 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03608300450074117 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.975397705995420e-14 + 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out index 74bc33b4dd..13792d3f61 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out @@ -13,94 +13,94 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.618808553272737, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.618808553454022, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3.703554573296969, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3.703554573553344, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.00112125978322437 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.001121259783301988 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.161068318927283e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.56118489021115e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.161068318927283e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.618813609683919 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.56118489021115e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.618813609865203 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.232026095373332e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.232122958362191e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -111,52 +111,52 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618889148138e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783216980925674e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681770943876267e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242312152432e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.4750840049673, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.47508400505794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.81400586682223, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.81400586695041, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.00450658843870752 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004506588438746522 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.098125567835629e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.261664520803773e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.098125567835629e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47509900841071 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.261664520803773e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47509900850135 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.162702708411542e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.162703179451021e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -167,38 +167,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0006666666666666666, h = 0.0003333333333333331 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851514752241806e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.774107486872622e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56852919194102, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56852919203166, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093362842919, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093362855737, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01020836739073424 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0102083673907735 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.355663625576664e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.494355680485315e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.355663625576664e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854611856336 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.494355680485315e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854611865401 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.159124529421133e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.159124413361278e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -207,7 +207,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.154631945610163e-14 + 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.132427485117660e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -216,38 +216,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852796981838e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469746657e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 18.33117208679076, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 18.33117208679077, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 25.9241921793346, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 25.92419217933461, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.007926620801967321 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.007926620802385322 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.96020189895167e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.394322923365522e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.96020189895167e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.3311884590036 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.394322923365522e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.33118845900361 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.923065181149995e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.92303726031012e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -258,38 +258,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341067341581e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645828792804e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 41.8991272714572, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 41.89912727145721, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 59.25431403889118, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 59.2543140388912, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01811631882340358 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01811631882435978 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.767859298135969e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.427179818558752e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.767859298135969e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 41.89916487967248 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.427179818558752e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 41.8991648796725 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.734177522130014e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.734170929715859e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -300,38 +300,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983533617987e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663313052637e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70323025789027, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70323025789028, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946713429621, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946713429622, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0306210098787736 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03062100988038579 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.142537668128806e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.052242434539098e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.142537668128806e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328103277684 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.052242434539098e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328103277686 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884719277568e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073883596683003e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -340,7 +340,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.398081733190338e-14 + 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.375877272697835e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -349,17 +349,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753396852466e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448223049503e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 @@ -371,16 +371,16 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 48.14435875066259, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0147300815422269 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01473008154222755 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.475993886304119e-19 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.419550203029483e-18 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.475993886304119e-19 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.419550203029483e-18 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.04323020408164 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.451037074099789e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.451037069515462e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -391,17 +391,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0003333333333333328 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467361609875e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.794076553161126e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 @@ -413,16 +413,16 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 103.6926707248469, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03172118985328261 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03172118985328404 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.528691940896443e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.528326328881616e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.528691940896443e-14 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.528326328881616e-14 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.32185080179332 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.155370726632578e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.155370725624026e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -433,38 +433,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748234790828e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751564086545e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347847337331, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347847336424, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435506897594, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435506896312, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05102477837646521 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05102477837373687 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.409058797851785e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.559886651444443e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.409058797851785e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348693449266 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.559886651444443e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.834869344836 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999452862407404e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999454757690655e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out index 88baba4c9a..15b5a2dc1d 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out @@ -13,73 +13,73 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 @@ -88,12 +88,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.617700682819475 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.617700683000682 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001112474382861515 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001112474382938587 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -102,31 +102,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861619470059087e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783216635140057e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681769782044082e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242381307778e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 @@ -135,12 +135,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47064411639136 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47064411648196 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004452567171048158 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004452567171086871 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -149,17 +149,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0006666666666666666, h = 0.0003333333333333331 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851514785420889e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749724022e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -168,19 +168,19 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55851273849144 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55851273858204 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01002676147689013 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01002676147692884 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628497336980672e-11 + 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628475132520180e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -189,17 +189,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852664152388e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469732808638e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 @@ -208,12 +208,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.3233881738182 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.32338817381821 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.007796994789490233 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.007796994789490242 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -222,17 +222,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341133666858e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645808019667e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 @@ -246,7 +246,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01782130916736245 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01782130916736246 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -255,17 +255,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983334309895e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.786633165063192e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -274,19 +274,19 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67317810828131 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67317810828132 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.030079277696704 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03007927769670401 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441158800247649e-11 + 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441136595787157e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -295,17 +295,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753352378277e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448181473495e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 @@ -314,7 +314,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.02874272231963 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.02874272231964 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -323,17 +323,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0003333333333333328 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.854673693492052e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407635032002e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 @@ -342,7 +342,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.2761708669783 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.27617086697832 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -351,17 +351,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748275024137e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.797514971275444e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -377,7 +377,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179997030935e-07 + 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out index 5727f91ed5..6f08b065b3 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out @@ -12,73 +12,73 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -97,41 +97,41 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.0001929223891091975 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270566101614e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278340402164e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480983041563123e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057658423235529e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0007179332607542295 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.14796270537412 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.14796270546477 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.003729401476593421 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00372940147662568 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -140,34 +140,34 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0007179332607542295, h = 0.0002820667392457702 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0007179332607542295 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422835575235e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971638889635e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56857053242068 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56857053251133 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007204341456067922 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007204341456084042 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.437694987151190e-15 + 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.659739592076221e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -176,27 +176,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0004358665215084587 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573793277643e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645527883502e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 25.02295754400714 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 25.02295754400715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007673490841823296 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007673490841839424 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -205,27 +205,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001435866521508459, h = 0.0002820667392457701 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487925979834815e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825627642645e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.9883942369528 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.98839423695281 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01409326137946229 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01409326137947841 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -234,17 +234,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213435739734e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.161071371876041e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -254,14 +254,14 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70326789489285 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02163921128613955 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02163921128615572 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.019806626980426e-14 + 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.042011087472929e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -270,27 +270,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0004358665215084585 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419125643031044e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102673e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.56773766995966 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.567737669869 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01396408830693848 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01396408830690622 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -299,27 +299,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002435866521508459, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193419476551e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201878237253858e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 79.82720625180357 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 79.82720625171292 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02445379030807663 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02445379030804438 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -328,34 +328,34 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668466049585e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.216745165531386e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8348216738145 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8348216736332 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0360687584086095 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03606875840854498 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952637017e+00 1.731531270273480e+00 1.962627838025810e-10 8.992806499463768e-14 + 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out index db122e64bc..c47fd34c92 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out @@ -13,73 +13,73 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -111,31 +111,31 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.0001929223891091975 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.442705992966839e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278478714956e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480987744230228e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057649778626881e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0007179332607542295 @@ -167,17 +167,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0007179332607542295, h = 0.0002820667392457702 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0007179332607542295 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422957291812e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971638889631e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -216,17 +216,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0004358665215084587 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573779999255e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645597041759e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 @@ -258,38 +258,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001435866521508459, h = 0.0002820667392457701 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487925957703379e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825904285456e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.98839422006409, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.98839421997345, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 65.0374108177751, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 65.03741081764692, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01993022435383186 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01993022435379259 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.601715600583093e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.761880948336852e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.601715600583093e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.98842420996601 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.761880948336852e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.98842420987538 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.508449719859987e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.50844967414183e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -300,38 +300,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213391475553e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.161071371875986e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70326784116725, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70326784098594, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98952028507621, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98952028481982, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03060090279483382 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03060090279475539 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.928833636261717e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.732171617718288e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.928833636261717e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.7033235562848 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.732171617718288e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.7033235561035 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884213617642e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884204471758e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -340,7 +340,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.332267629550188e-14 + 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.287858708565182e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -349,38 +349,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0004358665215084585 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419125651884173e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.237313391026676e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.56773766224819, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.56773766224818, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 64.44251260861067, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 64.44251260861066, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0197475505808735 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01974755058191296 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.813872614936062e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.326799159987934e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.813872614936062e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.56776698106852 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.326799159987934e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.56776698106851 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.425041483437005e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.425034303297187e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -391,38 +391,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002435866521508459, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193375207932e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201878652271481e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 79.82720621190367, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 79.82720621181299, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 112.892717671228, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 112.8927176710997, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03458090468247423 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03458090468425559 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.108501437863291e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.833427354139076e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.108501437863291e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.82726049775935 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.833427354139076e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.82726049766868 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.371022992941138e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.371021702201104e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -433,38 +433,38 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668421778799e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674544222306e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8348215690963, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8348215690056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6436027828297, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6436027827015, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05100462411786148 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05100462412051134 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.464460115747127e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.277024904141939e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.464460115747127e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8349111208192 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.277024904141939e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8349111207285 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999444839290604e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.99944295172404e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -473,7 +473,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.776356839400250e-14 + 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out index cd2d17b023..edd0b876cc 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out @@ -13,73 +13,73 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -102,31 +102,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.0001929223891091975 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.442705218408666e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278496001669e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480985254579955e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057660152146372e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0007179332607542295 @@ -149,17 +149,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0007179332607542295, h = 0.0002820667392457702 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0007179332607542295 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422913020145e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971880899068e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -189,17 +189,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0004358665215084587 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573779983966e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645603901512e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 @@ -208,12 +208,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 25.01207820825822 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 25.01207820816762 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01088917366868417 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01088917366864545 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -222,17 +222,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001435866521508459, h = 0.0002820667392457701 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487926046185586e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825834964861e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 @@ -241,12 +241,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.96839978231188 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.96839978222128 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02001100770869457 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02001100770865586 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -255,17 +255,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213369269281e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107130244008e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -295,17 +295,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0004358665215084585 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564738839e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731336310518e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 @@ -314,7 +314,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.54793022201162 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.54793022210224 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -323,17 +323,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002435866521508459, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193460191508e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201876802759877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 @@ -342,7 +342,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.77268774500753 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.77268774518876 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -351,17 +351,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668406571682e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.216741548409017e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -370,14 +370,14 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7290852919884 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7290852921696 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952868526e+00 1.731531529558496e+00 3.524580627356499e-11 2.592849255300678e-07 + 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out index f13bddbf6f..f1e80db03d 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out @@ -11,73 +11,73 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 @@ -85,31 +85,31 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469436431449e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360662349899e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.618934781454142e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.26243167642398e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -117,45 +117,45 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.064153609642308e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809673922718e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176952124453e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844413390305e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -168,17 +168,17 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654011537726e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780367e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 @@ -186,17 +186,17 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892963146e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555340877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -204,21 +204,21 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462524817 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437386314593e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463112885e+00 1.731819882840752e+00 3.048206131950337e-11 1.686739636852508e-11 + 2.000000000000000e-03 1.224744463112885e+00 1.731819882840751e+00 3.048206131950337e-11 1.686806250233985e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -227,17 +227,17 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614179993884e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025737e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 @@ -245,17 +245,17 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964755177207e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938743709458e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -263,21 +263,21 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086788760326 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477366838e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952787591e+00 1.731531270248313e+00 4.568923017700399e-11 2.525712972101246e-11 + 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out index 7bac9765c4..8798ac0b6c 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out @@ -12,81 +12,81 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484795600596831 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484795600868763 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002839677462856478 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002839677462944967 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -95,36 +95,36 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469364509253e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360861173277e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.646426838510152e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.722149487020822e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.676008618859752 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.676008618859751 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0005643456517840985 @@ -136,58 +136,58 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.064449683586706e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290986831944231e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809670049984e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176895070787e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844435520364e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952890957e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56853116193789 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56853116211918 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007921301090223275 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007921301090276377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487210934049472e-12 + 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487655023259322e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -196,25 +196,25 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654015963828e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062644397192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76658769079079 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.7665876907908 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01234458166289366 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01234458166291139 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -223,25 +223,25 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182826571203e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555415092209e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 14.24595765940638 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 14.24595765949703 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004788932282498826 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004788932282534239 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -250,30 +250,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614628789052 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697751e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322912588983 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.7032291261618 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376154766714745 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376154766725365 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463044450e+00 1.731819882840759e+00 9.891665264660787e-11 1.686029094116748e-11 + 2.000000000000000e-03 1.224744463044450e+00 1.731819882840758e+00 9.891665264660787e-11 1.686140116419210e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -282,25 +282,25 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614193273577e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433642426e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04725301387548 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04725301378485 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02184661245053742 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02184661245050203 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -309,25 +309,25 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964799442913e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938674544252e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.81568292207747 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.81568292207749 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009012485355207473 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009012485355207489 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -336,30 +336,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876031 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507476813511e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347805661338 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347805647741 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959596958504103 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0395959695845631 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952645809e+00 1.731531270248295e+00 1.874711497151793e-10 2.527533737861631e-11 + 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out index 80bf3a0135..1b93eb7ba1 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out @@ -13,92 +13,92 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484795600596831, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484795600868763, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99931301232761, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99931301271218, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004015866839014629 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004015866839143335 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.355316732970741e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.778821860355241e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.355316732970741e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484806428685115 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.778821860355241e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484806428957047 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518415627456097e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518415382958716e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -109,31 +109,31 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446933684687e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360861173277e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034588e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.553311302995434e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -143,13 +143,13 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370234119443755, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007981043352652857 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007981043352652858 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.774836283552402e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.715118584856955e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.774836283552402e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676009569925 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.715118584856955e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676009569924999 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.704998826808452e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 @@ -163,71 +163,71 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.063963430758315e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809665070755e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176886426292e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844451011408e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952890957e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56853116193524, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56853116211653, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093641442174, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093641467812, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120221282537529 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120221282546144 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.829268876391666e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.799831347143072e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.829268876391666e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.5685496216454 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.799831347143072e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854962182669 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.271877873619188e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.271877795991267e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487210934049472e-12 + 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487655023259322e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -236,36 +236,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654020389957e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780357e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76658771011432, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76658771011433, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99580698182362, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99580698182364, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01745737857060591 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01745737857152503 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.044483986313881e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.74083550528487e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.044483986313881e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76662068822849 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.74083550528487e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.7666206882285 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144290571601441e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144284255622165e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -276,36 +276,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182771244593e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555311354814e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24595765886783, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24595765877719, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14682653016375, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14682653003556, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006772498770722619 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006772498771035941 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.42491424547357e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.596828472046789e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.42491424547357e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24596845308144 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.596828472046789e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.2459684529908 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511949813658031e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511925909452149e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -316,43 +316,43 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614629674277 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387144485e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322912330754, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322912348885, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.9894655297539, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946553001032, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360218033634896 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360218033643214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.152035138603228e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.130462187373386e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.152035138603228e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328448815538 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.130462187373386e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328448833669 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178327890492011e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178327902961379e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463099111e+00 1.731819882840765e+00 4.425571020760799e-11 1.685385164762465e-11 + 2.000000000000000e-03 1.224744463099111e+00 1.731819882840764e+00 4.425571020760799e-11 1.685473982604435e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -361,36 +361,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614171140701e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433642419e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04725306864341, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04725306855279, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99070748479045, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99070748466229, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03089427150794729 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0308942715079056 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.181096200144441e-18 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.425501543806094e-18 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.181096200144441e-18 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04730818679262 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.425501543806094e-18 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.047308186702 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960152942248941e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960152883263926e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -401,36 +401,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964733044334e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330939020370118e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81568291912277, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81568291912279, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92310246851997, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92310246852, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01274532455113983 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01274532455113927 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.285389427812277e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.274290566911092e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.285389427812277e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81570355371161 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.274290566911092e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81570355371163 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655086190669431e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655086194489704e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -441,43 +441,43 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086789645609 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477643487e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347805551639, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347805538041, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435447803702, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435447784472, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599240898342154 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599240898277301 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.717421103006767e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.724618265009032e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.717421103006767e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348728123731 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.724618265009032e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348728110133 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291179996932946e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291179994976966e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952771547e+00 1.731531270248329e+00 6.173306310586213e-11 2.524158659866771e-11 + 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out index 0d9de09509..7a6039a60e 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out @@ -13,85 +13,85 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480918398010767 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480918398282574 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003886272468077529 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00388627246820195 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -100,31 +100,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469389405397e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360869817772e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.970596152824813e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.587078939791771e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -145,62 +145,62 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.063963430758315e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809670603232e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176893341888e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844435520364e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952199393e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55774369269417 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55774369287537 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01080099623073331 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01080099623081625 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.659073044559591e-12 + 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.658628955349741e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -209,24 +209,24 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654002685442e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062644397192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74977069074764 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74977069074765 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 @@ -240,29 +240,29 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892949201e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555380462016e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.23943664292217 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.23943664301278 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006528828278646521 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006528828278687991 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -271,34 +271,34 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614626991023 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387410975e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.6708677907402 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67086779101204 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03240190722051899 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03240190722064065 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463096872e+00 1.731819882889337e+00 4.649436391446216e-11 3.171818363512102e-11 + 2.000000000000000e-03 1.224744463096872e+00 1.731819882889336e+00 4.649436391446216e-11 3.171707341209640e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -307,24 +307,24 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614202090989e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435012534e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01750170982633 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01750170982636 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -333,24 +333,24 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796482152001e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938743503804e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80340866628079 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80340866637142 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -359,29 +359,29 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086790420591 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477049346e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7808468031958 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7808468018366 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952790514e+00 1.731531402623384e+00 4.276623499777088e-11 1.323498133309897e-07 + 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out index 2c9426d02a..01887122b7 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out @@ -12,81 +12,81 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484739570785543 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484739571057476 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002872021134577523 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002872021134666013 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -95,31 +95,31 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469444730164e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360636416414e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.483386286293241e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.992290581650285e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -136,45 +136,45 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290959817898209e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967336947e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176950395554e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844408964292e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382965339118e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -196,25 +196,25 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654020389983e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780367e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76651861107677 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76651861098613 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01237684727413916 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01237684727410377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -223,17 +223,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892963146e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555484250507e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -250,30 +250,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614627903846 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697758e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322900199585 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322900217715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376157169292097 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376157169297406 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683408967778632e-11 + 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683453376699617e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -282,25 +282,25 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614197700071e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025701e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04718221193126 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04718221184059 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02187885806556827 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02187885806555057 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -309,17 +309,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964733044311e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938536213781e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -327,7 +327,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.8157053695451 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009003158261554924 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009003158261572643 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -336,30 +336,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086786989621 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478196792e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347804246883 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347804232378 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959595686370691 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959595686321129 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952908896e+00 1.731531270248400e+00 7.561573589498494e-11 2.517031028048677e-11 + 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out index 94170fae9c..9e8f163780 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out @@ -13,92 +13,92 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484739570785543, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484739571057476, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99923377420859, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99923377459316, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004061628839918641 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004061628840048816 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.261188224676155e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.083520046626938e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.261188224676155e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484739092489631 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.083520046626938e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484739092761568 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518443352071625e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518443005346105e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -109,31 +109,31 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469455795117e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360696927877e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034592e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.059825855331695e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -141,18 +141,18 @@ Using GMRES iterative linear solver [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.676051713894338, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370295065028044, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370295065028043, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.000784909752142059 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007849097521420567 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.830518996709413e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.760577365668639e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.830518996709413e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676055870103954 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.760577365668639e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676055870103953 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.705857208966444e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.705857285371877e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -163,45 +163,45 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06434270796446e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290969948165467e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809675029214e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176960768948e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844413390305e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -214,9 +214,9 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120227586871812 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.102299192199702e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.018784119370388e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.102299192199702e-15 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.018784119370388e-15 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854949834894 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -236,36 +236,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654029242241e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062647163532e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76651862332542, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76651862323477, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99570927834978, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99570927822159, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01750303644230911 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01750303644226596 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.148830835061795e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.533910544486994e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.148830835061795e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76654034473584 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.533910544486994e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76654034464521 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144297537687311e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144297488406733e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -276,36 +276,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718285976718e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555587987901e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.2459813244254, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24598132451604, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14685999831622, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14685999844442, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006759308947646806 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006759308947689816 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.729049992208015e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.622139432217848e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.729049992208015e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24599536081284 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.622139432217848e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24599536090348 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511848546542516e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511849046876151e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -316,43 +316,43 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261463144475 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697758e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322899932275, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322899950403, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946535441294, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946535466932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360221435305671 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360221435314287 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.396025428056713e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.84604680634702e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.396025428056713e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328434722259 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.84604680634702e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328434740387 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178331477975891e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178331487927094e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463274739e+00 1.731819882840792e+00 1.313724684592898e-10 1.682742833963857e-11 + 2.000000000000000e-03 1.224744463274739e+00 1.731819882840791e+00 1.313724684592898e-10 1.682787242884842e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -361,36 +361,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614184420337e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025693e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04718225429593, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.0471822542053, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99060733817983, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99060733805163, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03093990190491139 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03093990190324049 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.983157730959663e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.691739216530515e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.983157730959663e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04722612054304 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.691739216530515e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04722612045241 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.96013596045361e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960147406422026e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -401,36 +401,36 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964644512875e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938605378931e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.815705366597, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81570536659701, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92313421404247, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92313421404248, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01273212495283929 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01273212495283927 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.431424283260585e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.001484200761597e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.431424283260585e-15 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.001484200761597e-15 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81572924528313 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655080176519261e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655080175202964e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -441,43 +441,43 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086786989607 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478473447e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347804136278, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.834780412268, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.643544580208, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435445782849, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599239103918983 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599239103559429 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.062550360780627e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.417568230519699e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.062550360780627e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348726538357 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.417568230519699e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348726524759 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291178169077933e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.29118023041469e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743953034659e+00 1.731531270248434e+00 2.013786915000537e-10 2.513611541132832e-11 + 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out index 12f1e71ba5..f0bb32ad02 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out @@ -13,85 +13,85 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480683165445265 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480683165717068 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004053988672151497 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004053988672281447 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -100,31 +100,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469486223738e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360766083835e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034592e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.093593492175645e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -145,45 +145,45 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290959817898209e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809672262975e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176946937756e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844417816317e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -209,29 +209,29 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654024816112e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062647163532e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74898235634708 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74898235625648 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01755499643145954 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0175549964314153 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -240,17 +240,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182826556093e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555553353365e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -271,34 +271,34 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614629644375 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387410119e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.66951636300151 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.66951636336393 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0337519319761958 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03375193197636171 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463272502e+00 1.731819882893496e+00 1.291351470200652e-10 3.587685704076193e-11 + 2.000000000000000e-03 1.224744463272502e+00 1.731819882893495e+00 1.291351470200652e-10 3.587596886234223e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -307,24 +307,24 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614184381587e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433628079e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01617199533266 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01617199524209 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -333,24 +333,24 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964732983807e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938881816559e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80292351487524 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80292351487525 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -359,29 +359,29 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086787755202 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478152494e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7785945816081 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7785945802489 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743953054848e+00 1.731531408143622e+00 2.215676531136523e-10 1.378700513754438e-07 + 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out index b64d29efd2..3ef9393574 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out @@ -12,73 +12,73 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.864518129765004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.029677719464751e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.287097149330938e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.681308618402001e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.190755053532049e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.716129532441251e-08, h = 1.413040570968547e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.236815808086858e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.823775237118312e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.236815808086858e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.649856379055404e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.430201866292959e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.076941723550822e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.430201866292959e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.649460766305993e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.148169834022209e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.430201866292959e-06, h = 2.321449271066302e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.430201866292959e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.303744822162447e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.071599895055817e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.303744822162447e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.535889749269077e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.464469457695598e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.884107139929023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.464469457695598e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140805973034775e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.142628945702048e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.464469457695598e-05, h = 0.0004642898542132603 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.464469457695598e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002567896216835862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002103606362622601 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002567896216835862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003032186071049122 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004889345487902163 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003728620852369013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004889345487902163 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.826224996633818e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.650159831488266e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004889345487902163, h = 1.106545120978371e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004889345487902163 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004944672743951082 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004933607292741298 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004944672743951082 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004955738195160865 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004972336371975541 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.889886968307349e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.147633771228545e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -88,36 +88,36 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001106545120978371 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.852360967826967e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001106545120978371 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174045 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001659817681467556 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.425094080723045e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.426606245722151e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002213090241956742, h = 0.0007786909758043252 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006106545120978368 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005327854145174043 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006106545120978368 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006885236096782693 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999994 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008053272560489181 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999994 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0001445442462304924 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.281335509330192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769278491e+00 1.731993073504249e+00 5.103006905926577e-11 3.375077994860476e-14 + 1.000000000000000e-03 1.224744769278491e+00 1.731993073504248e+00 5.103006905926577e-11 3.286260152890463e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success @@ -127,17 +127,17 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.001, h = 0.0004999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.456665619756245e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.012873279361316e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -147,22 +147,22 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932628225837462 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446484263437875e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463041408e+00 1.731819882857753e+00 1.019582196448710e-10 1.338928967697939e-13 + 2.000000000000000e-03 1.224744463041408e+00 1.731819882857751e+00 1.019582196448710e-10 1.321165399303936e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success @@ -172,17 +172,17 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.002, h = 0.0004999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.457617220747888e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.072526561087752e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -192,22 +192,22 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934099230043387 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455550664643448e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952680496e+00 1.731531270273762e+00 1.527842297122106e-10 1.914024494453770e-13 + 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out index dc0292704a..99ac6b30d5 100644 --- a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out +++ b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out @@ -9,13 +9,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -23,13 +23,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0005, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -39,13 +39,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -53,13 +53,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.00025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0004375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -67,13 +67,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0006875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -81,13 +81,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0009375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -104,13 +104,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.001, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -118,13 +118,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.0015, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -134,13 +134,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.001, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0011875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -148,13 +148,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.00125, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0014375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -162,13 +162,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0015, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0016875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -176,13 +176,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00175, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0019375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -199,13 +199,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.002, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -213,13 +213,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0025, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -229,13 +229,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.002, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0021875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -243,13 +243,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00225, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0024375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -257,13 +257,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002687500000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -271,13 +271,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002750000000000001, h = 0.0002499999999999991 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0029375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success From 271ae5b2885ee43c893fed14212cf8af854e8f42 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 14:29:49 -0800 Subject: [PATCH 40/67] Level 4 logging out files --- .../test_logging_arkode_arkstep_lvl5_0.out | 220 ++-- .../test_logging_arkode_arkstep_lvl5_1_0.out | 520 ++++---- ...test_logging_arkode_arkstep_lvl5_1_1_0.out | 624 +++++----- ...test_logging_arkode_arkstep_lvl5_1_1_1.out | 502 ++++---- .../test_logging_arkode_arkstep_lvl5_2_0.out | 652 +++++----- ...test_logging_arkode_arkstep_lvl5_2_1_0.out | 840 +++++++------ ...test_logging_arkode_arkstep_lvl5_2_1_1.out | 592 +++++---- .../test_logging_arkode_erkstep_lvl5.out | 166 +-- .../test_logging_arkode_forcingstep_lvl5.out | 252 ++-- .../test_logging_arkode_mristep_lvl5_0.out | 810 ++++++------- .../test_logging_arkode_mristep_lvl5_1_0.out | 846 ++++++------- ...test_logging_arkode_mristep_lvl5_1_1_0.out | 1000 +++++++-------- ...test_logging_arkode_mristep_lvl5_1_1_1.out | 912 +++++++------- .../test_logging_arkode_mristep_lvl5_2_0.out | 882 +++++++------- ...test_logging_arkode_mristep_lvl5_2_1_0.out | 866 ++++++------- ...test_logging_arkode_mristep_lvl5_2_1_1.out | 798 ++++++------ .../test_logging_arkode_mristep_lvl5_3.out | 854 ++++++------- .../test_logging_arkode_mristep_lvl5_4_0.out | 990 +++++++-------- ...test_logging_arkode_mristep_lvl5_4_1_0.out | 1078 ++++++++--------- ...test_logging_arkode_mristep_lvl5_4_1_1.out | 978 +++++++-------- .../test_logging_arkode_mristep_lvl5_5_0.out | 928 +++++++------- ...test_logging_arkode_mristep_lvl5_5_1_0.out | 1032 ++++++++-------- ...test_logging_arkode_mristep_lvl5_5_1_1.out | 924 +++++++------- .../test_logging_arkode_mristep_lvl5_6.out | 624 +++++----- ...test_logging_arkode_splittingstep_lvl5.out | 252 ++-- 25 files changed, 9294 insertions(+), 8848 deletions(-) diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out index bd71dbaa45..7d40eafa2f 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out @@ -14,60 +14,60 @@ Using ERK method 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.119441024380336e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.0349761842647577e-21 -4.2673725841929259e-21 +4.8279809474118066e-21 +3.4138980673543407e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.0434965378977631e-05 --5.9460528606460573e-03 +-8.3601325974164024e-06 +-4.7568181190855447e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.179161536570504e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.3732780587686200e-10 --3.0618017609099279e-07 +-6.4573262233411922e-10 +-3.6741434447393941e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448708542612e+00 -1.7320505013887011e+00 +1.2247448707458564e+00 +1.7320504401545327e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.0586980816170437e-05 --5.9457480002098806e-03 +-1.2686133724669499e-05 +-7.1349340080889608e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0903110774615028e-09 --6.1232895581729812e-07 +-8.9420743771143064e-10 +-5.0099211294748092e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = -1.2247448703012778e+00 -1.7320501952399214e+00 +1.2247448704973816e+00 +1.7320503065767643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --2.1021910950562200e-05 --1.1891797736938324e-02 +-2.0966634735151845e-05 +-1.1891908211316433e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1036469467812032e-10 --3.4444093451935336e-07 +-1.0824827397251969e-09 +-6.1234460037972259e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448707812243e+00 -1.7320504631279428e+00 +1.2247448703091062e+00 +1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.5766446427037753e-05 --8.9188496712662869e-03 +-2.1021934429493368e-05 +-1.1891797717486953e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -76,12 +76,12 @@ Using ERK method 1.7320501952242768e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002515551905531338, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002414929829310085, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 23.44910209921841 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.419249037637078e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004781447441790506, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004590189544118885, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 44.57099414170505 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.594510015625189e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.002414929829310085 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004590189544118885 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448703091062e+00 @@ -92,153 +92,153 @@ Using ERK method -1.1891797717486953e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001310450940264551 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001939061843257063 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5383248261792105e-08 --1.4358928516040411e-05 +-3.8597865446165307e-08 +-2.1834242217434174e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448449258580e+00 -1.7320358362957609e+00 +1.2247448317112408e+00 +1.7320283609820595e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --2.2570664088408641e-04 --1.5138592207716248e-01 +-2.9919208664674348e-04 +-2.2404479435656036e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001310450940264551 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002857099752080839 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7253284987217969e-07 --1.8279318948087589e-04 +-1.0155370913144331e-06 +-7.6311821352077400e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247445977762563e+00 -1.7318674020347959e+00 +1.2247438547720149e+00 +1.7312870770107560e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --3.0942952838901327e-04 --1.5123232637631015e-01 +-7.2909939942674979e-04 +-3.2958297410606480e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002517915854919593 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.004693175569728394 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.4725059817597985e-07 --3.6521545612210971e-04 +-2.6159397815099765e-06 +-1.0482940519257371e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = -1.2247441230585081e+00 -1.7316849797681548e+00 +1.2247422543693247e+00 +1.7310019011723512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --5.1368073663721485e-04 --2.9068262281917068e-01 +-8.4611185675385046e-04 +-5.4167619246382515e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001914183397592072 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.004693175569728394 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.9197022573340586e-07 --2.1089114783662453e-04 +-2.2470099134734301e-06 +-1.2705862758146686e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247444783388803e+00 -1.7318393040764402e+00 +1.2247426232991927e+00 +1.7307796089484622e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --3.9067756713848019e-04 --2.2100389908331053e-01 +-9.5798840336050310e-04 +-5.4152327151557655e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247442243254352e+00 -1.7316848119469588e+00 +1.2247426232991927e+00 +1.7307796089484622e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00161623505955609, h_cfl = 2.414929829310085e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001551585657173846, h_cfl = 1.207464914655042e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.6424972015096253 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0133919487764742 - 2.517915854919593e-03 1.224744224325435e+00 1.731684811946959e+00 2.964961609563943e-12 1.116839953851922e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002517915854919593, h = 0.001551585657173846 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002517915854919593 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002803386297141826, h_cfl = 4.590189544118885e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002691250845256152, h_cfl = 2.295094772059443e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5863049487148694 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.006457592697574643 + 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.004693175569728394, h = 0.002691250845256152 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.004693175569728394 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = -1.2247442243254352e+00 -1.7316848119469588e+00 +1.2247426232991927e+00 +1.7307796089484622e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --5.1396713859683273e-04 --2.9068243253515669e-01 +-9.5798840336050310e-04 +-5.4152327151557655e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.003293708683506516 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.005769675907830855 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.9873202025276405e-07 --2.2550934655697668e-04 +-1.0312748401158184e-06 +-5.8294998487686889e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247438255934149e+00 -1.7314593026004017e+00 +1.2247415920243525e+00 +1.7301966589635853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.5508725381151222e-04 --3.8021423830036460e-01 +-1.1445961151184067e-03 +-6.6552627917752660e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.003293708683506516 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.006307926076882085 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.0821199360567276e-07 --2.9496747940006233e-04 +-1.9235683816735586e-06 +-1.1247173767036996e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247437161134416e+00 -1.7313898444675586e+00 +1.2247406997308110e+00 +1.7296548915717584e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.8959742055192609e-04 --3.8016008656274547e-01 +-1.3374596232176045e-03 +-7.2735212123744997e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.004069501512093439 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.007384426414984546 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0699694669524497e-06 --5.8985093774072378e-04 +-3.3353909006903567e-06 +-1.7982530069128744e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = -1.2247431543559681e+00 -1.7310949610092181e+00 +1.2247392879082921e+00 +1.7289813559415492e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.3061368682849036e-04 --4.6964615005457105e-01 +-1.4693161492566461e-03 +-8.5116796392713812e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003681605097799978 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.007384426414984546 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.4134759063292287e-07 --4.1637512929463936e-04 +-3.3174056223946801e-06 +-1.8742156308558687e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247434829778445e+00 -1.7312684368176641e+00 +1.2247393058935703e+00 +1.7289053933176064e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --7.5149082043131387e-04 --4.2492304938629710e-01 +-1.5073325752915792e-03 +-8.5112938826429618e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247431811555634e+00 -1.7310949308275310e+00 +1.2247393058935703e+00 +1.7289053933176064e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.006136925427511731, h_cfl = 1.551585657173847e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005891448410411261, h_cfl = 7.757928285869233e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.797050058546112 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002281919499449541 - 4.069501512093439e-03 1.224743181155563e+00 1.731094930827531e+00 3.276268145668837e-12 1.207456357121828e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01394047270363173, h_cfl = 2.691250845256153e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01338285379548646, h_cfl = 1.345625422628076e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.97272627673348 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007698613381948886 + 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.004069501512093439 +Current time = 0.007384426414984546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -247,9 +247,9 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001551585657173846 -Current step size = 0.005891448410411261 -Explicit RHS fn evals = 17 +Last step size = 0.002691250845256152 +Current step size = 0.01338285379548646 +Explicit RHS fn evals = 15 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out index a725e5d24f..8f74f9e0d7 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out @@ -5,499 +5,541 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 -[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 1.7320508075688772e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 - -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.03124727847178982 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.3482114694817062e-10 --7.6544069683096959e-08 - -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247448712567679e+00 -1.7320507310248074e+00 - [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.2744855434165435e-06 --2.9729122414792089e-03 +1.1719990452195032e-16 +8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7159915162563899e-10 --1.5308420811789943e-07 +3.0174880921323788e-21 +2.1336862920964629e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1562371643297375 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 4.895203386441746e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.06249535103583782 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.7801963866676182e-10 --3.8271244855419026e-07 +-2.6866390293541350e-10 +-1.5309008804549425e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247448707135693e+00 -1.7320504248564286e+00 +1.2247448711229250e+00 +1.7320506544787893e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.5785446875319835e-05 --8.9188116306507040e-03 +-1.0510973093811185e-05 +-5.9459004304348133e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1966020565906560e-10 --6.7356743000148608e-08 +5.6047410276743291e-11 +3.1705182566700051e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09624183453536866 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.005361255358247282 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.1497525290288219e-10 --2.3575626677356586e-07 +-2.3047687845310340e-11 +-1.3133057759230462e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247448709766138e+00 -1.7320505718126105e+00 +1.2247448713685412e+00 +1.7320507944358194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.1587149897517827e-05 --6.5404400699907578e-03 +-3.0785915285619799e-06 +-1.7415140575389285e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.9203496310720011e-11 --5.5830416748822856e-08 +-8.4568945255061417e-11 +-4.7839433801875846e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.08528677931681904 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09764898308268008 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.6786739924915098e-10 --2.0892050479431925e-07 +-4.1978732966300745e-10 +-2.3920325544070147e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247448710237216e+00 -1.7320505986483723e+00 +1.2247448709718016e+00 +1.7320505683656218e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.0538689897045994e-05 --5.9458448412770216e-03 +-1.3138718200522915e-05 +-7.4323751670145729e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.4124311520652384e-10 --3.0617235286251100e-07 +-6.0792257257378951e-10 +-3.4389275560847938e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813593647933 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.270379821731715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414317944671e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801208512e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0824850889102213e-09 --6.1234459843085585e-07 +-1.1708142500034333e-09 +-6.6231188179365208e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247448703091040e+00 -1.7320501952242788e+00 +1.2247448702207746e+00 +1.7320501452569954e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --2.1021934424180757e-05 --1.1891797717489950e-02 +-2.1862811789036171e-05 +-1.2367469269430107e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 -[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247448703091040e+00 -1.7320501952242788e+00 - -[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003796520021120941, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003644659220276104, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.38984244421219 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.257351772282993e-09 - 1.029860256095084e-04 1.224744870309104e+00 1.732050195224279e+00 2.442490654175344e-15 1.998401444325282e-15 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003644659220276104 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001014150830678534 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091040e+00 -1.7320501952242788e+00 +1.2247448713915889e+00 +1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +-5.4124185491681911e-10 +-3.0617235390914016e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 43.57700668684354 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813597902462 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.04633595994229208 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414356077108e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.1037586989525144e-07 --1.0665669566797927e-04 +-1.0824838286913826e-09 +-6.1234459947744150e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247446599332341e+00 -1.7319435385286108e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247448703091051e+00 +1.7320501952242777e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-2.1021934426869110e-05 +-1.1891797717488389e-02 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = +1.2247448703091051e+00 +1.7320501952242777e+00 + +[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005181397899005634, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004974141983045409, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.29919354210092 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.052384307479459e-09 + 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004974141983045409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247448703091051e+00 +1.7320501952242777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --2.3074476451876455e-04 --1.1705543726043446e-01 +-2.1021934426869110e-05 +-1.1891797717488389e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002836480440816586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002590057017132213 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091040e+00 -1.7320501952242788e+00 +1.2247448703091051e+00 +1.7320501952242777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.2049301676687675e-07 --2.1331358934734672e-04 +-2.6141521649379314e-08 +-1.4787872570110639e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 209.0149703261905 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878045794722 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2042649292783136 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2132943179163734 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --9.7014597510064218e-07 --5.1163040588714660e-04 +-6.8440563563199624e-07 +-3.8661335075333079e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247439001631288e+00 -1.7315385648183916e+00 +1.2247441859034693e+00 +1.7316635818735244e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --6.0258944624920930e-04 --3.2740202406040253e-01 +-5.2867105576477342e-04 +-2.9900717565112350e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002107548596761365 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008314322537341579 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091040e+00 -1.7320501952242788e+00 +1.2247448703091051e+00 +1.7320501952242777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.9808592414894612e-07 --9.7322488527043608e-05 +1.4157047987142118e-07 +8.0070362250720520e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 130.3177912362241 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745956564198 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1317639651299175 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682984423547 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.1892168789443219e-07 --3.1897993011555841e-04 +-6.9574905214136347e-08 +-3.9313080711094866e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247442513874160e+00 -1.7317312152941633e+00 +1.2247448007341999e+00 +1.7320108821435667e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.6145172520038437e-04 --2.4326850843144060e-01 +-1.6972260005134092e-04 +-9.6003300899169960e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00192531563574756 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003211824765012889 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091040e+00 -1.7320501952242788e+00 +1.2247448703091051e+00 +1.7320501952242777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6517105235824326e-07 --8.0726783502178717e-05 +-2.3652312631411763e-07 +-1.3380182727732478e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 115.7066352240969 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628485946814 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1179815315332422 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005044937403 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.5508531874120538e-07 --2.8321292927868202e-04 +-1.0530491392532925e-06 +-5.9483195126312902e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247443152237851e+00 -1.7317669822950001e+00 +1.2247438172599658e+00 +1.7314553632730145e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --4.2756035369781892e-04 --2.2222805550988206e-01 +-6.5558919202145542e-04 +-3.7074206792412251e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.003747645245885612 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005276093687976734 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091040e+00 -1.7320501952242788e+00 +1.2247448703091051e+00 +1.7320501952242777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.3532761753850468e-07 --4.1596377780023664e-04 +-1.5008410062952109e-06 +-8.4877279053233038e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 330.9200194658451 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028113429431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991732185001 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3098605220101286 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087293412658 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.4332734690205068e-06 --8.1007679688875145e-04 +-2.8399951830248900e-06 +-1.6056698912962379e-03 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247434370356349e+00 -1.7312401184273900e+00 +1.2247420303139220e+00 +1.7304445253329814e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --7.6498190245061107e-04 --4.3253817811449907e-01 +-1.0768999823062382e-03 +-6.0866545423738172e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 -[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247434370356349e+00 -1.7312401184273900e+00 - -[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232929919553471, h_cfl = 3.644659220276104e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002236127227713321, h_cfl = 1.822329610138052e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.6135353383035691 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.007864906415392474 - 3.747645245885612e-03 1.224743437035635e+00 1.731240118427390e+00 9.108140908153928e-10 5.271953984475886e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.003747645245885612, h = 0.002236127227713321 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004306677052813943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005077128008654917 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434370356349e+00 -1.7312401184273900e+00 +1.2247448703091051e+00 +1.7320501952242777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +-1.3410422620155419e-06 +-7.5859328065728073e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 113.5127839162196 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286068246216 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994911904798 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.06347372373964355 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537235589097 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.9654977891445632e-07 --2.7782303764351229e-04 +-2.6297868790862806e-06 +-1.4869971590927473e-03 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247429404858561e+00 -1.7309622953897466e+00 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247422405222259e+00 +1.7305631980651850e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.0363621973344087e-03 +-5.8575237918329237e-01 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = +1.2247422405222259e+00 +1.7305631980651850e+00 + +[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003014949461089349, h_cfl = 4.974141983045409e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002894351482645775, h_cfl = 2.487070991522704e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5818795467663176 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005777685801326963 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005077128008654917, h = 0.002894351482645774 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005077128008654917 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247422405222259e+00 +1.7305631980651850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --8.8802202009468311e-04 --4.9697190728107943e-01 +-1.0363621973344087e-03 +-5.8575237918329237e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005424740666670603 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006524303749977804 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434370356349e+00 -1.7312401184273900e+00 +1.2247422405222259e+00 +1.7305631980651850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.9286510897135357e-07 --5.5564620663992091e-04 +-7.4989911560321957e-07 +-4.2384331678811302e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 369.9413329159526 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422796849768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1961628166373034 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841554791242 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.6172337632817263e-06 --9.0547080473034054e-04 +-1.7141804979103719e-06 +-9.6819263856328427e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247418198018716e+00 -1.7303346476226598e+00 +1.2247405263417279e+00 +1.7295950054266218e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.1162106350751314e-03 --6.2576901579145128e-01 +-1.3317448709323104e-03 +-7.5229233598759215e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.004977515221127939 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005500995969719722 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434370356349e+00 -1.7312401184273900e+00 +1.2247422405222259e+00 +1.7305631980651850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7530871438233328e-07 --3.2186745513632103e-04 +3.5488441820803134e-07 +2.0051932053363901e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 262.6686572611258 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191489779 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1422666879689584 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307475559162 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.1501455808253400e-06 --6.4289877959560946e-04 +-4.5780250294087965e-07 +-2.5864005667269722e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247422868900542e+00 -1.7305972196477943e+00 +1.2247417827197229e+00 +1.7303045580085124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.0277950773381820e-03 --5.7426332462581242e-01 +-1.1228897832711330e-03 +-6.3455937249560201e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004865708859742272 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006886097685308526 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434370356349e+00 -1.7312401184273900e+00 +1.2247422405222259e+00 +1.7305631980651850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.7935013656236019e-07 --2.6808251045464616e-04 +-1.1916593091908165e-06 +-6.7346686080047057e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 237.752750401516 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655472878314 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1294572005123361 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988497214 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0420987047818668e-06 --5.8191303223959737e-04 +-2.2095627382985089e-06 +-1.2479089372928204e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247423949369300e+00 -1.7306582053951505e+00 +1.2247400309594876e+00 +1.7293152891278922e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.0062154830822632e-03 --5.6138245809715936e-01 +-1.4056033614830502e-03 +-7.9388067877841784e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005983772473598933 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008087253550606523 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434370356349e+00 -1.7312401184273900e+00 +1.2247422405222259e+00 +1.7305631980651850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5381140406291581e-06 --8.6950990000653379e-04 +-2.8498957829917237e-06 +-1.6100921969309130e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 512.8615902035506 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341499829686 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2648770776226016 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855435739141 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950527502381 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.2214373400379068e-06 --1.2553095738561651e-03 +-4.0443794247538539e-06 +-2.2843302211651159e-03 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247412155982949e+00 -1.7299848088535339e+00 +1.2247381961428012e+00 +1.7282788678440200e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --1.2214255933759850e-03 --6.9012157832719911e-01 +-1.6507821729404479e-03 +-9.3179840467018760e-01 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007971479491300691 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247422405222259e+00 +1.7305631980651850e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-2.6771925522844494e-06 +-1.5126187308475299e-03 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724335587325 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528495900837 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559093605087 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-3.8545856293230344e-06 +-2.1772459402890814e-03 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247383859365966e+00 +1.7283859521248959e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.6271628385671948e-03 +-9.1851623790618475e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247412155982949e+00 -1.7299848088535339e+00 +1.2247383859365966e+00 +1.7283859521248959e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01050274477458537, h_cfl = 2.236127227713321e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01008263498360195, h_cfl = 1.118063613856661e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.50897196664097 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.001116850591343922 - 5.983772473598933e-03 1.224741215598295e+00 1.729984808853534e+00 1.411835537368233e-09 7.625806652811207e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0155053464300513, h_cfl = 2.894351482645775e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01488513257284924, h_cfl = 1.447175741322887e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.142821340842302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006675414612441149 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.005983772473598933 +Current time = 0.007971479491300691 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -506,12 +548,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002236127227713321 -Current step size = 0.01008263498360196 +Last step size = 0.002894351482645774 +Current step size = 0.01488513257284924 Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 +Implicit RHS fn evals = 49 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out index e742186a9e..f54b981f8d 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out @@ -6,192 +6,202 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247448713915889e+00 +1.7320508075688772e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = +1.1719990452195032e-16 +8.2872847241886988e-17 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +3.0174880921323788e-21 +2.1336862920964629e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.03124727847178982, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.06249535103583782, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.044190325002054, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.08838177302014931, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 8.016227206018892e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.603276888666014e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 8.016227206018892e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647747457602 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.603276888666014e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375176740569 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.3481769092357109e-10 --7.6542107541446623e-08 +-2.6865702777283428e-10 +-1.5308617043976795e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247448712567712e+00 -1.7320507310267697e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = +1.2247448711229318e+00 +1.7320506544827068e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.2744845688476538e-06 --2.9729122434364007e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = +-1.0510971148795759e-05 +-5.9459004343355082e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7159910144215067e-10 --1.5308420821868113e-07 +5.6047399905384084e-11 +3.1705182587499634e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1562371643708069, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.005361255349771264, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.2209527167999096, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.007581960026991833, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 4.008105378087632e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.375406356692272e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 4.008105378087632e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1562331731583946 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.834156785593834e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.375406356692272e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361117819127116 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.7311017409714737e-10 --3.8271246604140156e-07 +-2.3047106981114615e-11 +-1.3132720840116482e-08 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247448707184787e+00 -1.7320504248564113e+00 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = +1.2247448713685418e+00 +1.7320507944361563e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.5785456702682842e-05 --8.9188116281787924e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = +-3.0785913614436351e-06 +-1.7415140578750474e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1966013105105124e-10 --6.7356743078863062e-08 +-8.4568951500459063e-11 +-4.7839433789403338e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09624183456739453, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09764898307759746, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1361065077128771, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1380965162202792, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.468991359913261e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.505112439889124e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.468991359913261e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623937258978928 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.505112439889124e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648637841014 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.1496456274914079e-10 --2.3575023593389748e-07 +-4.1977660274286280e-10 +-2.3919713945492739e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247448709766244e+00 -1.7320505718186412e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = +1.2247448709718123e+00 +1.7320505683717378e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.1587146903331380e-05 --6.5404400759934778e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = +-1.3138715163956255e-05 +-7.4323751730989004e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.9203409452501710e-11 --5.5830416833676241e-08 +-6.0792248466024126e-10 +-3.4389275578457552e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.08528677935133332, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2703798218034756, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1206137200497772, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3823748109864959, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.187949946472201e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.936323710727879e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.187949946472201e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459686493964 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.936323710727879e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729285399011 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824623e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.6785789867628583e-10 --2.0891515860906222e-07 +-1.1623180559052339e-09 +-6.6231191199254294e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247448710237310e+00 -1.7320505986537187e+00 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +1.2247448702292709e+00 +1.7320501452569652e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.0538687242480638e-05 --5.9458448466004777e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +-2.1862828796591407e-05 +-1.2367469265151922e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.4124150489787098e-10 --3.0617235427863065e-07 +-5.4124150483788839e-10 +-3.0617235427840481e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599405794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599404871, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295684377, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295683072, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919782981e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919779191e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919782981e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849628705 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919779191e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849627783 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165771e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165041e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0746283427385906e-09 --6.1234462760470280e-07 +-1.0746283426786094e-09 +-6.1234462760447706e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = 1.2247448703169606e+00 1.7320501952242495e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = -2.1021950151815365e-05 -1.1891797713532633e-02 @@ -202,477 +212,497 @@ Using GMRES iterative linear solver 1.7320501952242495e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003832000015190934, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003678720014583297, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.72057463924165 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.010389402682452e-09 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005173702315757101, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004966754223126817, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.22745798502055 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060506166026043e-09 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003678720014583297 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001022666029255333 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004966754223126817 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247448703169606e+00 +1.7320501952242495e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = +-2.1021950151815365e-05 +-1.1891797713532633e-02 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586363137172917 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703169606e+00 1.7320501952242495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +-2.6102714923722596e-08 +-1.4765909128564507e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 44.35369875822553, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366823253987, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 62.72560232529324, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905127158407, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.04062175054285926 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351659917327 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.005089991166117e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.539312788374185e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.005089991166117e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31583324937814 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.539312788374185e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754497113704 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.393376666599104e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448156610062e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.1421796474290096e-07 --1.0855698511574932e-04 +-6.8158749312118978e-07 +-3.8551046480333177e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247446560989959e+00 -1.7319416382391337e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = +1.2247441887294674e+00 +1.7316646847594461e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --2.3292829336001299e-04 --1.1803777623123327e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = +-5.2791920714371837e-04 +-2.9858092778361051e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002862026036546981 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303503413429693 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703169606e+00 1.7320501952242495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.2843898737310469e-07 --2.1711396494937117e-04 +1.4116687177861430e-07 +7.9841824298512514e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 212.8147091519881, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497452804125, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 300.9654479552272, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273631423932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948470890329139 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553135597982 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.023368215406643e-17 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.071535650853336e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.023368215406643e-17 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 212.6569919499078 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.071535650853336e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624678638776 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.748984444407891e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395866022775986e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --9.8779534589461126e-07 --5.2092913761333452e-04 +-6.9301492684904546e-08 +-3.9209264604962138e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247438825216146e+00 -1.7315292660866362e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = +1.2247448010154678e+00 +1.7320109859596446e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --6.0824656359804833e-04 --3.3034873774330420e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = +-1.6950194293500903e-04 +-9.5878381007639485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002126282033630322 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207207415063769 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703169606e+00 1.7320501952242495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0183575912132512e-07 --9.9027075632427539e-05 +-2.3587892109972677e-07 +-1.3343750826710245e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 132.6733466500091, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636799879348, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 187.6284461978699, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540032655901, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1214861228197153 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964986383052 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.410337134365055e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.948588646235637e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.410337134365055e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 132.5690472826842 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.948588646235637e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280762384555 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.141721415834757e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896834065384e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.3026578553169328e-07 --3.2474393165745323e-04 +-1.0486874583131689e-06 +-5.9312241751761354e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247442400511750e+00 -1.7317254512925921e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = +1.2247438216295023e+00 +1.7314570728067320e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.6586194777400747e-04 --2.4542975298298644e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = +-6.5464991136441773e-04 +-3.7020945007320272e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.001942346032901157 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268410417661398 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703169606e+00 1.7320501952242495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6830503897369111e-07 --8.2140251652316766e-05 +-1.4965129257553808e-06 +-8.4632326001779013e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.7961695173268, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935820216669, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.5889405270037, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280147562397, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1078639628765014 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.80823181193877 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.818288520560997e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.635179301029465e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.818288520560997e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7022409131975 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.635179301029465e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692023218828 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.14887367151013e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00028701536186056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.6530614209119544e-07 --2.8832586718988384e-04 +-2.8312835279759162e-06 +-1.6009979132172334e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247443050108184e+00 -1.7317618693570596e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +1.2247420390334325e+00 +1.7304491973110323e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --4.3168497928305151e-04 --2.2419276107545005e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +-1.0753331353261142e-03 +-6.0778073292542223e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.003781706040192805 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069740248736325 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703169606e+00 1.7320501952242495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.4859427090853822e-07 --4.2346813415649991e-04 +-1.3371854538138254e-06 +-7.5640738540286041e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 336.9671105380513, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615178930309, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 476.5434577965859, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761541680366, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3085169077524141 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726379422214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.17116109814417e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.08971449261438e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.17116109814417e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 336.736319034684 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.08971449261438e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.265941067359 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.346288867431381e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.000249564687271857, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.4584391541599209e-06 --8.2487691110435374e-04 +-2.6217601685616302e-06 +-1.4826731519423876e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247434118778064e+00 -1.7312253183131452e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247422485567920e+00 +1.7305675220723071e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --7.7193685800496415e-04 --4.3646560336956441e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.0348550779312390e-03 +-5.8490151050179406e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247434118778064e+00 -1.7312253183131452e+00 +1.2247422485567920e+00 +1.7305675220723071e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002326364550388339, h_cfl = 3.678720014583297e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002233309968372805, h_cfl = 1.839360007291648e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.607088867736454 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.008163105466437349 - 3.781706040192805e-03 1.224743411877806e+00 1.731225318313145e+00 1.057254284120290e-10 1.072486544018147e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.003781706040192805, h = 0.002233309968372805 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004340033532286006 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003015564088276306, h_cfl = 4.966754223126817e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002894941524745254, h_cfl = 2.483377111563408e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5828638572984884 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743360545342547 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069740248736325, h = 0.002894941524745254 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069740248736325 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247422485567920e+00 +1.7305675220723071e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = +-1.0348550779312390e-03 +-5.8490151050179406e-01 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517211011108952 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434118778064e+00 -1.7312253183131452e+00 +1.2247422485567920e+00 +1.7305675220723071e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +-7.4896123429915735e-07 +-4.2331391765946640e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 114.2475703576066, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291832667672, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 161.5704634679017, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.079892577741, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.06347262680418689 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2844296690428963 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.746714923333988e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.689625129912962e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.746714923333988e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.2024221826183 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.689625129912962e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681714724712 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.199113684336701e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724634024090804e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.9959120738474801e-07 --2.7961959870598631e-04 +-1.7116486443109296e-06 +-9.6718430674797159e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247429122865992e+00 -1.7309456987144392e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = +1.2247405369081477e+00 +1.7296003377655591e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --8.9481077349216355e-04 --5.0081645163650157e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = +-1.3302996282040990e-03 +-7.5147682105111335e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005456688516472409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005493694619466006 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434118778064e+00 -1.7312253183131452e+00 +1.2247422485567920e+00 +1.7305675220723071e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.9919491012371452e-07 --5.5923918688244800e-04 +3.5451423384575606e-07 +2.0031042329263986e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 372.0708229808176, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918432218, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 526.1876040227913, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372636959103, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.206598731109143 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702546356424 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.060023072317438e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.743428383750915e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.060023072317438e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 371.939257112824 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.743428383750915e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491707937726 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.123782867339571e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265621792903265e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.6259695904615053e-06 --9.1067688658183043e-04 +-4.5707622831151589e-07 +-2.5833432218710928e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247417859082159e+00 -1.7303146414265633e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = +1.2247417914805636e+00 +1.7303091877501200e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.1227126376804786e-03 --6.2944717635931957e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = +-1.1214007126482907e-03 +-6.3371883385181327e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005010026522797847 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879078701702109 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434118778064e+00 -1.7312253183131452e+00 +1.2247422485567920e+00 +1.7305675220723071e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7915792587012851e-07 --3.2405262093896932e-04 +-1.1902799878571615e-06 +-6.7268840590200640e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 264.2522611564104, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555520155276, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 373.7091316151527, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203724428682, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1467632212595206 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.366534529643799 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.453408637887063e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.506305455047092e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.453408637887063e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 264.1544278478215 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.506305455047092e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569019654059 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.142262491733078e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.41936993456799e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.1566608074494443e-06 --6.4677047347908359e-04 +-2.2063681135661585e-06 +-1.2466641736733858e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247422552169991e+00 -1.7305785478396660e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = +1.2247400421886785e+00 +1.7293208578986337e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.0344044966321467e-03 --5.7800813108534710e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = +-1.4041736862223061e-03 +-7.9307403763765416e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004898361024379207 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080479434471389 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434118778064e+00 -1.7312253183131452e+00 +1.2247422485567920e+00 +1.7305675220723071e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.8255777116728590e-07 --2.6990384664404745e-04 +-2.8471304196185366e-06 +-1.6085319218734711e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 239.1950412070286, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.820797410297, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 338.2728713273712, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207822961327, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1328534050683189 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810696378324 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.003480721324008e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.043442040705694e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.003480721324008e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 239.1054906887548 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.043442040705694e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110606696143 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.769091705246994e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313402503713, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0480325020834030e-06 --5.8543925115564000e-04 +-4.0403172236769076e-06 +-2.2823449032211215e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247423638453043e+00 -1.7306398790619895e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +1.2247382082395684e+00 +1.7282851771690859e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.0128504292255085e-03 --5.6514391624051907e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +-1.6494013478878286e-03 +-9.3102131381798214e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00601501600856561 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964681773481579 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434118778064e+00 -1.7312253183131452e+00 +1.2247422485567920e+00 +1.7305675220723071e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5475051306595572e-06 --8.7480745506617226e-04 +-2.6745564363736937e-06 +-1.5111308029394049e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 515.6509104293493, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870949936611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 729.2405109792198, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.359027870932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2862495506617406 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969989650043 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.660035032647116e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.97124359201826e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.660035032647116e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 515.479276837567 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.97124359201826e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869312485084 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 7.67937747240094e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267402460637, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.2328953581312280e-06 --1.2621283747921829e-03 +-3.8506952950663504e-06 +-2.1753289679071123e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247411789824483e+00 -1.7299631899383530e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247383978614970e+00 +1.7283921931044000e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --1.2278068461039863e-03 --6.9371627671470348e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.6257771102342502e-03 +-9.1773629339241736e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247411789824483e+00 -1.7299631899383530e+00 +1.2247383978614970e+00 +1.7283921931044000e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105439796544931, h_cfl = 2.233309968372805e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01012222046831338, h_cfl = 1.116654984186403e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.532384940585946 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.001111259275024442 - 6.015016008565610e-03 1.224741178982448e+00 1.729963189938353e+00 2.336992821483364e-10 1.590565457121329e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0154957149064437, h_cfl = 2.894941524745254e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01487588631018595, h_cfl = 1.447470762372627e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.138579202042774 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680659089283182 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601501600856561 +Current time = 0.007964681773481579 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -681,8 +711,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233309968372805 -Current step size = 0.01012222046831338 +Last step size = 0.002894941524745254 +Current step size = 0.01487588631018596 Explicit RHS fn evals = 0 Implicit RHS fn evals = 45 NLS iters = 27 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out index c098acf4d0..4b857ee4d3 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out @@ -6,548 +6,578 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247448713915889e+00 +1.7320508075688772e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = +1.1719990452195032e-16 +8.2872847241886988e-17 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +3.0174880921323788e-21 +2.1336862920964629e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647749568791 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375180962681 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.3579950010291991e-10 --7.6542104122109757e-08 +-2.7062068469260836e-10 +-1.5308616362613730e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247448712557893e+00 -1.7320507310267730e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = +1.2247448711209683e+00 +1.7320506544827137e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.2744826035395038e-06 --2.9729122439306394e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = +-1.0510967218422285e-05 +-5.9459004353241401e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7159900024251293e-10 --1.5308420824413097e-07 +5.6047378947547672e-11 +3.1705182592771295e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1562331594653479 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.380843176869396e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361118155683129 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.7801910931035622e-10 --3.8271244899425649e-07 +-2.3215584567868918e-11 +-1.3132721071088816e-08 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247448707135697e+00 -1.7320504248564281e+00 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = +1.2247448713683733e+00 +1.7320507944361561e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.5785446876482720e-05 --8.9188116306499667e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = +-3.0785910245380460e-06 +-1.7415140579590499e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1966010271374946e-10 --6.7356743085989097e-08 +-8.4568964164161988e-11 +-4.7839433786177632e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623936755399637 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648428541893 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.1798849863265629e-10 --2.3575021291435974e-07 +-4.2284481997572677e-10 +-2.3919712351994135e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247448709736004e+00 -1.7320505718186643e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = +1.2247448709687441e+00 +1.7320505683717538e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.1587140843698826e-05 --6.5404400775284973e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = +-1.3138709019561053e-05 +-7.4323751746489600e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.9203388001812322e-11 --5.5830416839101964e-08 +-6.0792230657728106e-10 +-3.4389275582955604e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459315580529 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729029309684 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842759940812e-08 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.7053762831836956e-10 --2.0891514005216457e-07 +-1.1708133303454744e-09 +-6.6231188255609683e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247448710210513e+00 -1.7320505986537371e+00 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +1.2247448702207757e+00 +1.7320501452569947e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.0538681873903700e-05 --5.9458448479587176e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +-2.1862811791596328e-05 +-1.2367469269428798e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.4124136795295400e-10 --3.0617235431608137e-07 +-5.4124136976636096e-10 +-3.0617235431258979e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749520049542 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749630505384 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0824827371528319e-09 --6.1234451920229918e-07 +-1.0824827389115295e-09 +-6.1234454625998487e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = 1.2247448703091062e+00 -1.7320501952243579e+00 +1.7320501952243310e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --2.1021934388982939e-05 --1.1891797717567420e-02 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-2.1021934402443686e-05 +-1.1891797717540680e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448703091062e+00 -1.7320501952243579e+00 +1.7320501952243310e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003832189576692273, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003678901993624582, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.72234166578926 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.009107594385155e-09 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224358e+00 2.220446049250313e-16 8.104628079763643e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003678901993624582 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001022711524015654 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005173663817440948, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00496671726474331, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.22709911707427 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060546984496858e-09 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.00496671726474331 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247448703091062e+00 +1.7320501952243310e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = +-2.1021934402443686e-05 +-1.1891797717540680e-02 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586344657981163 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091062e+00 -1.7320501952243579e+00 +1.7320501952243310e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +-2.6102501133729600e-08 +-1.4765799258136098e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31728809265712 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401886078219 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002706685111211134 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824834014635 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.1424081012507486e-07 --1.0856717925573979e-04 +-6.8160406138359790e-07 +-3.8550489689703066e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247446560682960e+00 -1.7319416280451021e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = +1.2247441887050448e+00 +1.7316646903274340e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --2.3293994847666617e-04 --1.1804302462967765e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = +-5.2791534152153697e-04 +-2.9857879547675481e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002862162520827944 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303449289130156 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091062e+00 -1.7320501952243579e+00 +1.7320501952243310e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.2848162042280723e-07 --2.1713435932179835e-04 +1.4116482319985899e-07 +7.9840681839754506e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 212.6403773707838 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500371247808 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03696205723054138 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799203649459 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --9.8792918648185469e-07 --5.2097898080482534e-04 +-6.9300840704836797e-08 +-3.9208744607136686e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247438823799197e+00 -1.7315292162435532e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = +1.2247448010082655e+00 +1.7320109864797240e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --6.0827667407825539e-04 --3.3036448130988644e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = +-1.6950082131665190e-04 +-9.5877756082289198e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002126382122103028 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207184316074077 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091062e+00 -1.7320501952243579e+00 +1.7320501952243310e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0185589112983600e-07 --9.9036222382275211e-05 +-2.3587569971283099e-07 +-1.3343568693317110e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 132.5646009288685 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613569759502 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01706360659869033 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324507830747 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.3034263103465453e-07 --3.2477483896250104e-04 +-1.0487348556693251e-06 +-5.9311375501530466e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247442399664752e+00 -1.7317254203853953e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = +1.2247438215742505e+00 +1.7314570814693158e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.6588546404923348e-04 --2.4544129999026967e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = +-6.5464500002933627e-04 +-3.7020678569827092e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.001942437022421799 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268371980942552 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091062e+00 -1.7320501952243579e+00 +1.7320501952243310e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6832186766517422e-07 --8.2147836257821262e-05 +-1.4964908879743419e-06 +-8.4631101497791060e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.69961092995 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775595050387 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01382292596398069 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769922509453 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.6537378455154328e-07 --2.8835328550818061e-04 +-2.8316985548398645e-06 +-1.6009739867551671e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247443049353217e+00 -1.7317618419388496e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +1.2247420386105514e+00 +1.7304492212375759e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --4.3170698019948990e-04 --2.2420325802228500e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +-1.0753240787261657e-03 +-6.0777630755942458e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00378188801923409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069703290352819 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091062e+00 -1.7320501952243579e+00 +1.7320501952243310e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.4866545746777953e-07 --4.2350840809807916e-04 +-1.3371662741905091e-06 +-7.5639645805778127e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 336.69118258825 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.0057975967644 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.07750779266514742 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2511122224022418 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.4586693925950136e-06 --8.2495620776723664e-04 +-2.6221137439344673e-06 +-1.4826510254461239e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247434116397136e+00 -1.7312252390165905e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247422481953623e+00 +1.7305675441988848e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --7.7197374255023312e-04 --4.3648658658737233e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.0348464800456303e-03 +-5.8489725442577933e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247434116397136e+00 -1.7312252390165905e+00 +1.2247422481953623e+00 +1.7305675441988848e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002326349105082655, h_cfl = 3.678901993624582e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002233295140879348, h_cfl = 1.839450996812291e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.6070548073173944 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.008164718360412736 - 3.781888019234090e-03 1.224743411639714e+00 1.731225239016591e+00 8.112177596331094e-12 2.569811030639357e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00378188801923409, h = 0.002233295140879348 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004340211804453927 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003015567895880965, h_cfl = 4.96671726474331e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002894945180045726, h_cfl = 2.483358632371655e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5828689304695791 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743182020382792 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069703290352819, h = 0.002894945180045727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069703290352819 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = +1.2247422481953623e+00 +1.7305675441988848e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = +-1.0348464800456303e-03 +-5.8489725442577933e-01 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517175880375682 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434116397136e+00 -1.7312252390165905e+00 +1.2247422481953623e+00 +1.7305675441988848e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -0.0000000000000000e+00 -0.0000000000000000e+00 +-7.4895595737384599e-07 +-4.2331137188047227e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.1880202704021 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.0430042964744 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01832920615797257 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599515968683 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.9961423206822671e-07 --2.7962920156547524e-04 +-1.7117359475005669e-06 +-9.6717940514186242e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = -1.2247429120254816e+00 -1.7309456098150251e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = +1.2247405364594148e+00 +1.7296003647937430e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --8.9484676352198558e-04 --5.0083699848527374e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = +-1.3302911526903401e-03 +-7.5147278234851467e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005456859374893601 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434116397136e+00 -1.7312252390165905e+00 +1.2247422481953623e+00 +1.7305675441988848e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.9922846440263078e-07 --5.5925841754487973e-04 +3.5451212232977807e-07 +2.0030943290464575e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 371.8754828183439 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208731951771 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.07514845578796357 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02768906071174051 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.6260847989341616e-06 --9.1070469314003400e-04 +-4.5708011406670073e-07 +-2.5833283590114063e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247417855549145e+00 -1.7303145343234505e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = +1.2247417911152483e+00 +1.7303092113629837e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.1227469644861643e-03 --6.2946684718537382e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = +-1.1213922004525082e-03 +-6.3371464131629496e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005010200346717731 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879044027881399 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434116397136e+00 -1.7312252390165905e+00 +1.2247422481953623e+00 +1.7305675441988848e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7917834218482936e-07 --3.2406431388396861e-04 +-1.1902722607488602e-06 +-6.7268468382669937e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 264.1139062313106 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868001832096 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.04898184989809135 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1676270895079329 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.1567305025030118e-06 --6.4679115787376102e-04 +-2.2065175474804402e-06 +-1.2466581308449743e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247422549092111e+00 -1.7305784478587167e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = +1.2247400416778147e+00 +1.7293208860680398e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.0344394705485615e-03 --5.7802815280918118e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = +-1.4041651547952803e-03 +-7.9307005345405590e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004898535589673764 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080446277600375 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434116397136e+00 -1.7312252390165905e+00 +1.2247422481953623e+00 +1.7305675441988848e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.8257478595443393e-07 --2.6991359268352383e-04 +-2.8471146135679718e-06 +-1.6085245723734924e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 239.0698529878246 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463592806854 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.04334360894804039 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066040662974 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0480928814649056e-06 --5.8545809149947788e-04 +-4.0408397012974011e-06 +-2.2823353943078246e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247423635468322e+00 -1.7306397809250911e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +1.2247382073556610e+00 +1.7282852088045770e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.0128855530277137e-03 --5.6516402563726797e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +-1.6493923210507222e-03 +-9.3101751104077635e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.006015183160113438 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964648470398546 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247434116397136e+00 -1.7312252390165905e+00 +1.2247422481953623e+00 +1.7305675441988848e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5475549047635512e-06 --8.7483581751387346e-04 +-2.6745414672103892e-06 +-1.5111237845308093e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 515.3793206142866 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442245792432 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1148530271845262 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383851641306 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.2330874006087650e-06 --1.2621647896432532e-03 +-3.8511688874202062e-06 +-2.1753197677005010e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247411785523130e+00 -1.7299630742269472e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247383970264749e+00 +1.7283922244311842e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --1.2278403929067386e-03 --6.9373550809677820e-01 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.6257681535286406e-03 +-9.1773247310644335e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247411785523130e+00 -1.7299630742269472e+00 +1.2247383970264749e+00 +1.7283922244311842e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01054419843231782, h_cfl = 2.233295140879348e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01012243049502511, h_cfl = 1.116647570439674e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.53250907582213 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111123036409299 - 6.015183160113438e-03 1.224741178552313e+00 1.729963074226947e+00 8.796519068710040e-12 8.689449160215190e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01549566374859553, h_cfl = 2.894945180045727e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01487583719865171, h_cfl = 1.447472590022863e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.138555749237621 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680697280368452 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.006015183160113438 +Current time = 0.007964648470398546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -556,8 +586,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233295140879348 -Current step size = 0.01012243049502511 +Last step size = 0.002894945180045727 +Current step size = 0.01487583719865171 Explicit RHS fn evals = 0 Implicit RHS fn evals = 44 NLS iters = 26 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out index 8a8ccdb07f..e4c756f499 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out @@ -19,611 +19,713 @@ Using fixed-point nonlinear solver -0.0000000000000000e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.0174880921323788e-21 -2.1336862920964629e-21 +1.4906391175133950e-21 +1.0540410282956525e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.964790102879962e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = -1.9567818777089853e-12 --3.9379501189115846e-12 +2.3589747794139750e-13 +-4.7473481812283129e-13 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247448713935458e+00 -1.7320508075649392e+00 +1.2247448713918248e+00 +1.7320508075684025e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -7.5995957885092471e-08 --1.5294593680104785e-07 +1.8546477584683199e-08 +-3.7324924233601695e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.0510967219525537e-05 --5.9458999098063806e-03 +-5.1924178081875795e-06 +-2.9372749479487743e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1975210952189841e-10 --6.7494192688419586e-08 +-1.9217338744143829e-10 +-1.0887132741742541e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.02755359227464431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.04444466957300736 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.1888937217555571e-10 --6.7495928914961100e-08 +-1.9148593184784391e-10 +-1.0887271089601910e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247448712726996e+00 -1.7320507400729483e+00 +1.2247448712001030e+00 +1.7320506986961663e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.2758628770424467e-12 -1.0601476785765427e-12 +-2.9218811292325215e-12 +2.4413302919242937e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.9792822361780495e-06 --3.9480780841510609e-03 +-8.8640116506685113e-06 +-5.0142418829829671e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1785903213863801e-10 --2.3538178455265424e-07 +-1.2124317671354338e-10 +-6.8720862616553469e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09609143371919215 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.02805399819163158 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.1485028447453718e-10 --2.3538783954447332e-07 +-1.2080924739570222e-10 +-6.8721735883025418e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247448709767386e+00 -1.7320505721810378e+00 +1.2247448712707798e+00 +1.7320507388471413e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --3.7865532081412623e-12 -3.1775317164462653e-12 +-2.0209180469882943e-12 +1.6886248020727804e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.3033599353550797e-05 --7.3729161894770644e-03 +-7.0423480395031357e-06 +-3.9837534857088616e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.8672373011473824e-10 --4.4240972474176714e-07 +-6.2284561925105635e-12 +-3.4441606533325151e-09 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1806077954736169 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 5.678291534219827e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.001406013957715032 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --7.8672381006516453e-10 --4.4240972467424570e-07 +-6.2067065585843899e-12 +-3.4442044236507447e-09 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247448706048651e+00 -1.7320503651591526e+00 +1.2247448713853821e+00 +1.7320508041246727e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -1.3895574563263699e-11 --1.1585813651008607e-11 +3.5313273353742530e-13 +-2.9333510491680532e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.7868644269775553e-05 --1.0108029051474801e-02 +-1.5766450836204167e-06 +-8.9188514235252455e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0824834230817177e-09 --6.1234460279062781e-07 +-5.3070880089899380e-10 +-3.0004829213553331e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499814051260959 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1224890674762599 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.859528530294883e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.902425639273363e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0824840288878546e-09 --6.1234460228425902e-07 +-5.3070886215988729e-10 +-3.0004829208434081e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247448703091048e+00 -1.7320501952242748e+00 +1.2247448708608801e+00 +1.7320505075205852e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = -1.8138487523918061e-15 -1.3693468361341544e-15 +8.7942208970652599e-13 +-7.3540190795569243e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.1021934429794637e-05 --1.1891797717486920e-02 +-1.4715354107492835e-05 +-8.3242599031363978e-03 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247448713915889e+00 +1.7320508075688772e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.0824828310353460e-09 +-6.1234460521470132e-07 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499781580918246 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 3.882514578718288e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.0824829789004307e-09 +-6.1234460509108258e-07 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247448703091059e+00 +1.7320501952242722e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.7078095347039229e-15 +4.6053915315311224e-15 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.1021934429794620e-05 +-1.1891797717486939e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247448703091057e+00 -1.7320501952242773e+00 +1.2247448703091062e+00 +1.7320501952242771e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00668046506668371, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.006413246464016361, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.27297758176857 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.827144826036898e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 6.661338147750939e-16 4.440892098500626e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006413246464016361 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008833069177745213, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008479746410635404, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.978178734921257e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 2.220446049250313e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = -1.2247448703091057e+00 -1.7320501952242773e+00 +1.2247448703091062e+00 +1.7320501952242771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = -1.4000376029448485e-15 --6.5848477406779886e-16 +3.6534674072177894e-16 +-1.7546633245269567e-16 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --2.1021934429794623e-05 +-2.1021934429794617e-05 -1.1891797717486904e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003309609257617689 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091057e+00 -1.7320501952242773e+00 +1.2247448703091062e+00 +1.7320501952242771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.7409423322087393e-08 --3.8132514831236419e-05 +-4.4030386236956331e-08 +-2.4907338965683061e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 15.98161350203798 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.28676295640456 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0319537758652567 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01327964506398449 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = -4.0253676971641669e-07 --3.9081117281501846e-05 +8.7178129531362065e-08 +-2.5171927177392798e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247452728458754e+00 -1.7320111141069958e+00 +1.2247449574872358e+00 +1.7320250232970997e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -2.9320676648354857e-04 --5.9173140187880071e-04 +1.2532880889244095e-04 +-2.5268392999667924e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.7556970600828200e-04 --3.8189050521759765e-01 +-4.4855902590567508e-04 +-2.5366562196677966e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00223218385166294 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091057e+00 -1.7320501952242773e+00 +1.2247448703091062e+00 +1.7320501952242771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1233713417060236e-07 --2.8665807172030961e-04 +-1.2215344348099495e-06 +-7.8070997552605857e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.2088497628645 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 319.038855971821 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.4083960595797016 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2296232565062182 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008591478259674878 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.1279828986866291e-07 --2.8665784287708622e-04 +-1.2219969078899210e-06 +-7.8070962490541808e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247442575108158e+00 -1.7317635373814002e+00 +1.2247436483121983e+00 +1.7312694855993715e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = -4.0020905129513667e-07 --4.3172168613118595e-07 +-4.4470579456431411e-07 +3.3651231927126583e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --4.5564247071947704e-04 --2.5770752169946637e-01 +-7.5087312904263529e-04 +-4.2456696894354651e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004079198833299652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091057e+00 -1.7320501952242773e+00 +1.2247448703091062e+00 +1.7320501952242771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.1171472853395593e-06 --9.5931732875004087e-04 +-7.5051063899392699e-07 +-4.9983937857842910e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 392.2454526225389 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 204.2604304098407 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.768204971049801 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.00247350314635035 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2615189380810247 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.1153867050673083e-06 --9.5931848260113551e-04 +-7.5172601160602524e-07 +-4.9983838661358973e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247427549224006e+00 -1.7310908767416762e+00 +1.2247441185830945e+00 +1.7315503568376636e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = -1.0891708649548059e-06 --7.1474141316535110e-07 +-3.7683107014872679e-07 +2.9307118962635740e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.3266210476225309e-04 --4.7076386800373343e-01 +-6.0087996691103292e-04 +-3.3981117609105643e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005554245520023415 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091057e+00 -1.7320501952242773e+00 +1.2247448703091062e+00 +1.7320501952242771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.2557835292753584e-06 --1.7780698004740464e-03 +-1.3243812692939826e-07 +-3.0872994678481479e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 727.0172799128682 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.423068579652633 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.61650766660443 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.004581420253567278 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.016080355714478 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.2510131216586284e-06 --1.7780731104363764e-03 +-1.3230388056658561e-07 +-3.0873036965866167e-05 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247406192959840e+00 -1.7302721221138408e+00 +1.2247447380052257e+00 +1.7320193221873112e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -2.9588271305444701e-06 --2.0553286085059976e-06 +1.7621959154514664e-07 +-8.0653323105576656e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.1337537260565713e-03 --6.4068875589511909e-01 +-1.5084101123713468e-04 +-8.5327004759976718e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00651623248962587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091057e+00 -1.7320501952242773e+00 +1.2247448703091062e+00 +1.7320501952242771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.3325888282791265e-06 --2.4491976542600690e-03 +-3.8843520645294017e-06 +-2.1031543497526035e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1001.424779946844 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 859.4593635466485 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.961856568802519 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.099240451491132 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.006318952069057399 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002311994534000555 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.3325858874323891e-06 --2.4491976073059609e-03 +-3.8837987830945114e-06 +-2.1031548463374731e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247405377232183e+00 -1.7296009976169713e+00 +1.2247409865103231e+00 +1.7299470403779396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --2.0952203768622859e-08 -4.1866597941691547e-08 +5.1998230973456771e-07 +-4.6957635768633631e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --1.3301156805088615e-03 --7.5136431075490018e-01 +-1.2326630439727338e-03 +-6.9645345711622864e-01 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247448703091062e+00 +1.7320501952242771e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-7.5170581354537986e-06 +-4.2473691228931678e-03 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1735.696263548979 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 2.218847433921493 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.004667092324739613 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-7.5171728004946590e-06 +-4.2473688678652212e-03 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247373531363057e+00 +1.7278028263564118e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.2632079691260641e-07 +2.5281549560495911e-07 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-1.7519321678632854e-03 +-9.8861346153692331e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247405376896330e+00 -1.7296010392597567e+00 +1.2247373531230035e+00 +1.7278030794490606e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003805721944057518, h_cfl = 6.413246464016361e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003653493066295217, h_cfl = 3.206623232008181e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5696791924019057 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004005675669815595 - 6.516232489625870e-03 1.224740537689633e+00 1.729601039259757e+00 2.278266464372791e-11 2.184104008762233e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00651623248962587, h = 0.003653493066295218 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00651623248962587 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005070000075348275, h_cfl = 8.479746410635405e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004867200072334344, h_cfl = 4.239873205317702e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5739794371951784 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283528804423328 + 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867200072334344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = -1.2247405376896330e+00 -1.7296010392597567e+00 +1.2247373531230035e+00 +1.7278030794490606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --6.3639890005590165e-11 -2.0701916773341653e-10 +2.5214120611806763e-10 +-2.8382280528487381e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --1.3301156805453364e-03 --7.5136429266465743e-01 +-1.7519321678823136e-03 +-9.8861331672250397e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008342979022773478 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784930854111496 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247405376896330e+00 -1.7296010392597567e+00 +1.2247373531230035e+00 +1.7278030794490606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4297842662484397e-06 --1.3725521165669826e-03 +-2.1061699288758105e-06 +-1.1885093654162350e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 561.6874348987023 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 486.6849733552747 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.6264035376264484 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3569950644413023 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001148411251882187 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0004304924100195743 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.3431082266141650e-06 --1.3727268289445834e-03 +-2.0815153457205002e-06 +-1.1885590352986937e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247381945814064e+00 -1.7282283124308122e+00 +1.2247352716076578e+00 +1.7266145204137620e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -9.4892484729706785e-05 --1.9128027522201174e-04 +4.1014279046804310e-05 +-8.2630898059439734e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.7029929894602689e-03 --9.6102100074242625e-01 +-1.9973244297908283e-03 +-1.1262031100902095e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007729192187635882 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350135077167 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247405376896330e+00 -1.7296010392597567e+00 +1.2247373531230035e+00 +1.7278030794490606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7828723429844098e-06 --9.9576493244616575e-04 +-3.9955588017118281e-06 +-2.2699927239316913e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 407.4437320238362 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 929.5046859262942 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.45442507084866 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.6816226096899868 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008331059917899451 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008219657363979175 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.7827680506127250e-06 --9.9576507550576572e-04 +-3.9955942747674632e-06 +-2.2699927128116302e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247387549215825e+00 -1.7286052741842510e+00 +1.2247333575287287e+00 +1.7255330867362491e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = -1.1118077793629503e-07 --1.5496930393066578e-07 +-6.1975589922002672e-08 +2.0135492882727504e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.5777069189828661e-03 --8.9071184187214203e-01 +-2.1708425281400001e-03 +-1.2233905333980120e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.008781398190728904 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324446047692 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247405376896330e+00 -1.7296010392597567e+00 +1.2247373531230035e+00 +1.7278030794490606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.6140567796582825e-06 --1.9966699167415524e-03 +-3.1029479961755340e-06 +-1.7641696924746756e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 816.9903551651699 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 722.3829889045846 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.9109014874897468 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5298154349220007 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001669947504647432 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0006389028715493185 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.6139303596903754e-06 --1.9966699143500856e-03 +-3.1029805051731319e-06 +-1.7641696777052759e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247369237592733e+00 -1.7276043693454066e+00 +1.2247342501424983e+00 +1.7260389097713553e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = -1.3239060854035968e-07 -5.9426498165216687e-09 +-5.6384862665890386e-08 +2.5842252494525659e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.7924839940899804e-03 --1.0113801455831668e+00 +-2.0847516312912043e-03 +-1.1752190841376784e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.009621701595976804 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947772441669988 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247405376896330e+00 -1.7296010392597567e+00 +1.2247373531230035e+00 +1.7278030794490606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.3195173927214688e-06 --2.8869158617291328e-03 +-6.6772486042731145e-07 +-3.6857144994048276e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1181.257906176007 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 150.9207596467068 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.316629339620776 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002413704717815864 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1107245052612964 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.3191329446550348e-06 --2.8869159661527766e-03 +-6.6792178450109159e-07 +-3.6857125658614496e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247352185566884e+00 -1.7267141232936039e+00 +1.2247366852012189e+00 +1.7274345081924745e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -4.1220992378548160e-07 --1.0952239208735320e-07 +3.4545986093178898e-09 +4.5099060865795632e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.9640067895105606e-03 --1.1075867176952459e+00 +-1.8264442376123922e-03 +-1.0304402281130851e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01016972555592109 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198977248687895 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247405376896330e+00 -1.7296010392597567e+00 +1.2247373531230035e+00 +1.7278030794490606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.2218834026920998e-06 --3.5110637867083140e-03 +-7.1842641030283441e-06 +-4.0317774828788726e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1436.644014581929 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1650.910714051643 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.601181087086898 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.20997962940408 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002935513140712882 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001459084170060892 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.2218663042840858e-06 --3.5110638068636259e-03 +-7.1841435797052534e-06 +-4.0317776549659888e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247343158233286e+00 -1.7260899754528931e+00 +1.2247301689794237e+00 +1.7237713017940945e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = -8.1388886091025488e-09 --1.6223289611699112e-08 +1.9524710071112502e-07 +-2.8338333998847710e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.0758686450697539e-03 --1.1702462187423066e+00 +-2.4473728026737840e-03 +-1.3778158028900720e+00 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344993250857926 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247373531230035e+00 +1.7278030794490606e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.0944610085094747e-05 +-6.1655442991847692e-03 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2524.632948028877 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.849220051021347 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.00222993820597665 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.0944753667242054e-05 +-6.1655440048962538e-03 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247264083693363e+00 +1.7216375354441644e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.4690151092094943e-07 +4.9402220249064332e-07 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.7454145887886570e-03 +-1.5436828358522456e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247343158140704e+00 -1.7260899590246517e+00 +1.2247264083671225e+00 +1.7216380297536902e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02184793713992066, h_cfl = 3.653493066295218e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02097401965432383, h_cfl = 1.826746533147609e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.740812771157737 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004151480914860668 - 1.016972555592109e-02 1.224734315814070e+00 1.726089959024652e+00 2.482614114285298e-11 2.127358289527592e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.03236787998334772, h_cfl = 4.867200072334344e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.03107316478401382, h_cfl = 2.433600036167172e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.384197140494967 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508382967907606 + 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01016972555592109 +Current time = 0.01344993250857926 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -632,12 +734,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003653493066295218 -Current step size = 0.02097401965432383 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 +Last step size = 0.004867200072334344 +Current step size = 0.03107316478401382 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 NLS fails = 0 -NLS iters per step = 11.66666666666667 +NLS iters per step = 13.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out index caf1d121a2..107b60c8da 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out @@ -20,785 +20,915 @@ Using GMRES iterative linear solver -0.0000000000000000e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.0174880921323788e-21 -2.1336862920964629e-21 +1.4906391175133950e-21 +1.0540410282956525e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.964790102879962e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.368628977311079e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.964790102879962e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = -1.9567818777089853e-12 --3.9379501189115846e-12 +2.3589747794139750e-13 +-4.7473481812283129e-13 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247448713935458e+00 -1.7320508075649392e+00 +1.2247448713918248e+00 +1.7320508075684025e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -7.5995957885092471e-08 --1.5294593680104785e-07 +1.8546477584683199e-08 +-3.7324924233601695e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.0510967219525537e-05 --5.9458999098063806e-03 +-5.1924178081875795e-06 +-2.9372749479487743e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1975210952189841e-10 --6.7494192688419586e-08 +-1.9217338744143829e-10 +-1.0887132741742541e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.02755359227464431, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.04444466957300736, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.03896666388690052, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.06285425448533784, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 7.068684245838184e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 5.632677908218931e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 7.068684245838184e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02755288474442038 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 5.632677908218931e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.04444410578228845 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.1888631929507176e-10 --6.7494195732252162e-08 +-1.9148350280534644e-10 +-1.0887132982097602e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247448712727027e+00 -1.7320507400746814e+00 +1.2247448712001054e+00 +1.7320506986975475e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.1554001125808017e-13 --6.7128532330695060e-13 +-2.2362402489870603e-12 +1.0614821697123227e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.9792822361780325e-06 --3.9480780841471110e-03 +-8.8640116506684927e-06 +-5.0142418829789686e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1785899233054202e-10 --2.3538178463242521e-07 +-1.2124317940870112e-10 +-6.8720862611161402e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09609143375169925, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.02805399818943428, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1358938088395288, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.03967434471828821, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.465154402188027e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.555418780415207e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.465154402188027e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09608896628805572 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.555418780415207e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364231763626 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.1483959202180620e-10 --2.3538179526718011e-07 +-1.2080771759610622e-10 +-6.8720864125680400e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247448709767494e+00 -1.7320505721870820e+00 +1.2247448712707811e+00 +1.7320507388480131e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --7.8618047881146899e-13 --2.8612864609804735e-12 +-1.5877659673586565e-12 +8.1756155296875121e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.3033599353550682e-05 --7.3729161894513359e-03 +-7.0423480395031280e-06 +-3.9837534857068563e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.8672357084020925e-10 --4.4240972506109194e-07 +-6.2284581703352911e-12 +-3.4441606493326216e-09 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1806077956037432, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001406013956085092, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.2554179940131215, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001988404005581387, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 4.633330046263267e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.781750861212226e-08 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 4.633330046263267e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1806031579260884 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.276257185735068e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.781750861212226e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.00140599612163296 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --7.8104841577091928e-10 --4.4240974517073731e-07 +-6.2066298079969213e-12 +-3.4441607319629810e-09 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247448706105406e+00 -1.7320503651591321e+00 +1.2247448713853823e+00 +1.7320508041247165e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -2.5343909024273787e-12 --8.7275700794757553e-12 +3.7451061222357914e-13 +-3.3704268025797526e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.7868644269692747e-05 --1.0108029051474921e-02 +-1.5766450836204165e-06 +-8.9188514235250200e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0824828741971454e-09 --6.1234460332706966e-07 +-5.3070877687122859e-10 +-3.0004829218347225e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499814053442976, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1224890674957951, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270937789918, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1732257004949869, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413182655035927e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.552348977012323e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413182655035927e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.24997498617904 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.552348977012323e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.122487513702728 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534802522694541e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.097675801631708e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0746281531744045e-09 --6.1234463058454406e-07 +-5.2880743446180425e-10 +-3.0004829885587678e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247448703169608e+00 -1.7320501952242466e+00 +1.2247448708627815e+00 +1.7320505075205783e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --1.5724173731640418e-11 -3.9575442718008646e-12 +-2.9267786542824782e-12 +2.2220561155299453e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.1021934429659796e-05 --1.1891797717487114e-02 +-1.4715354107469991e-05 +-8.3242599031364307e-03 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247448713915889e+00 +1.7320508075688772e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.0824829070989633e-09 +-6.1234460525049154e-07 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499781581065444, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535225014913209, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.168070754129446e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.168070754129446e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749870902664 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.240163117980688e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.0786026247170697e-09 +-6.1234461884167219e-07 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247448703129864e+00 +1.7320501952242584e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-7.7694181557808595e-12 +1.9585354744372446e-12 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.1021934429728013e-05 +-1.1891797717487032e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247448703091059e+00 +1.2247448703091062e+00 1.7320501952242768e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.006719923497867133, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.006451126557952447, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.64079538726109 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.742325031242378e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 4.440892098500626e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006451126557952447 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008833069177745213, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008479746410635404, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.962608770598098e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = -1.2247448703091059e+00 +1.2247448703091062e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = -6.6384528363763395e-16 --1.3791810515199151e-16 +3.0124796184768302e-16 +-4.7268774704503768e-17 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --2.1021934429794620e-05 +-2.1021934429794617e-05 -1.1891797717486906e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003328549304585732 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091059e+00 +1.2247448703091062e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.7807579748720866e-08 --3.8357746038539260e-05 +-4.4030386237023458e-08 +-2.4907338965682932e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.08083333497015, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.28676295640445, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.74173259657616, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.54767968586433, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.02645577285028037 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01084488338297794 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.441887564474575e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.062457463863292e-18 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.441887564474575e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.0545285272489 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.062457463863292e-18 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.27594417400336 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.371604616849797e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.641449462771085e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = -4.1065768731816349e-07 --3.9323371407767405e-05 +8.7220024086718787e-08 +-2.5171961992724202e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247452809667934e+00 -1.7320108718528691e+00 +1.2247449575291303e+00 +1.7320250232622840e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -2.9667062070608111e-04 --5.9873244526994118e-04 +1.2532870769816108e-04 +-2.5268387423877070e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.7943579983871115e-04 --3.8407280040483810e-01 +-4.4855902589033134e-04 +-2.5366562197187864e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002244760042849721 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091059e+00 +1.2247448703091062e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1994934426902163e-07 --2.8990047225807558e-04 +-1.2215345626870397e-06 +-7.8070997547113419e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 118.5357260444194, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 319.0388559495085, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 167.6348313977596, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 451.1890770077911, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1903179152662646 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3329076500534073 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.729212284236706e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.501210144697988e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.729212284236706e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 118.3454261629101 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.501210144697988e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 318.7059367116414 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.939363556579449e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.179446848380409e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.1927671135393944e-07 --2.8990121876678747e-04 +-1.2219087605672765e-06 +-7.8070980642488486e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247442510323947e+00 -1.7317602940055101e+00 +1.2247436484003456e+00 +1.7312694854178519e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = -4.0503847617715441e-07 --4.3881842166203714e-07 +-4.4497284885194357e-07 +3.3673791259909018e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --4.5820957227463193e-04 --2.5915896613633821e-01 +-7.5087312898859345e-04 +-4.2456696898806140e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004102684491540025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091059e+00 +1.2247448703091062e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.1442295039687314e-06 --9.7039827486588637e-04 +-7.5051065966800541e-07 +-4.9983937857870741e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 396.7799729589967, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 204.2604304099707, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 561.131619036643, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 288.8678709419464, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.636716394760145 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2132014287585624 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.484127247738153e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.282566364595847e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.484127247738153e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 396.1432917940788 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.282566364595847e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 204.0472286166169 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002185148605823037, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.756635827914268e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.1422257539145861e-06 --9.7039988111651291e-04 +-7.5086991768651630e-07 +-4.9983914555536081e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247427280833521e+00 -1.7310797953431603e+00 +1.2247441194391886e+00 +1.7315503560787215e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = -1.1069231967747766e-06 --7.2495106824125849e-07 +-3.7892272917239350e-07 +2.9425817874821702e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.3745608119651467e-04 --4.7347121578388540e-01 +-6.0087996649101885e-04 +-3.3981117623999635e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005586443599869088 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091059e+00 +1.2247448703091062e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.3121010924227227e-06 --1.7987358663048027e-03 +-1.3244355997638740e-07 +-3.0872992141068796e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 735.4741661021753, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 12.61650664748519, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1040.117540476739, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 17.84243481064386, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.179209245221302 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01309836989019836 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.439840890719091e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.46244039757209e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.439840890719091e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 734.2949033035875 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.46244039757209e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 12.60338892277173 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0007513008267848697, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001062499818661282, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.409470765856917e-06 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.409470765856917e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007490846834053407 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.326173761070803e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.3072491027471047e-06 --1.7987392346440424e-03 +-1.3225899650715661e-07 +-3.0873076805203677e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247405630600032e+00 -1.7302514559896327e+00 +1.2247447380501097e+00 +1.7320193221474716e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -3.0093335915916137e-06 --2.0876521758698387e-06 +1.7610990342740364e-07 +-8.0591041280187620e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.1403261047943261e-03 --6.4439511607395894e-01 +-1.5084101123160668e-04 +-8.5327004761939398e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006554112583561956 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448703091059e+00 +1.2247448703091062e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.3831261135363656e-06 --2.4777428984873277e-03 +-3.8843596466082586e-06 +-2.1031543452507268e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1013.105862937948, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 859.4593617170807, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1432.748051486545, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1215.459085648819, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.625758816210647 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.8956246239443026 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.461866393280248e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.030226860465728e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.461866393280248e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1011.480559058974 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.030226860465728e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 858.5635718918842 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001425560608310061, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0006669704702946733, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.002016047146256928, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.0009432386847930886, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.674392594609514e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 8.133359313453013e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.674392594609514e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001421355552797087 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 8.133359313453013e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006656918969127018 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.3831632222699693e-06 --2.4777428320950506e-03 +-3.8838158685057900e-06 +-2.1031548378461370e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247404871458836e+00 -1.7295724523921818e+00 +1.2247409864932377e+00 +1.7299470403864308e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --2.1352298980168809e-08 -4.2827719783304886e-08 +5.2002072626551043e-07 +-4.6959339163487007e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --1.3378478397965770e-03 --7.5571963364610406e-01 +-1.2326630439899297e-03 +-6.9645345711281015e-01 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247448703091062e+00 +1.7320501952242768e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-7.5170568204678596e-06 +-4.2473691299663233e-03 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1735.696266435071, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2454.645200152823, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.806765737992726 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.563499989384819e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.563499989384819e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.889229165088 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.002718457019141684, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.003844478785198506, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.315013662036427e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.315013662036427e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002713245768397989 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-7.5171923823983845e-06 +-4.2473688685343335e-03 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247373531167238e+00 +1.7278028263557426e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.2628196772651372e-07 +2.5280637394089190e-07 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-1.7519321678912965e-03 +-9.8861346153730623e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247404871515915e+00 -1.7295724950168836e+00 +1.2247373531243362e+00 +1.7278030794486463e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003802774042374871, h_cfl = 6.451126557952447e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003650663080679877, h_cfl = 3.225563278976224e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5658954366938629 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004100678731752195 - 6.554112583561956e-03 1.224740487151591e+00 1.729572495016884e+00 2.946975996565016e-11 2.206064220189319e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.006554112583561956, h = 0.003650663080679877 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.006554112583561956 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005069991622201196, h_cfl = 8.479746410635405e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004867191957313148, h_cfl = 4.239873205317702e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5739784802065135 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283548497449123 + 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867191957313147 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = -1.2247404871515915e+00 -1.7295724950168836e+00 +1.2247373531243362e+00 +1.7278030794486463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.1363737724206097e-11 -2.0587151955196107e-10 +2.4926875570446966e-10 +-2.8274215841014873e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --1.3378478397903419e-03 --7.5571961502166130e-01 +-1.7519321678804072e-03 +-9.8861331672274111e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008379444123901894 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784928849701259 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871515915e+00 -1.7295724950168836e+00 +1.2247373531243362e+00 +1.7278030794486463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4420159050228890e-06 --1.3794388487647024e-03 +-2.1061664190096266e-06 +-1.1885073838292192e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 564.5140709613839, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 486.6841613576611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 798.343455304037, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 688.2753415841802, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.5122389740491479 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2905838027315988 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.025142508879052e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.972086024975875e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.025142508879052e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 564.0009893185947 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.972086024975875e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 486.3927263744305 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002506099885822652, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0001227094375903753, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.3552996726137345e-06 --1.3796136443748139e-03 +-2.0813905976351860e-06 +-1.1885572977985523e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247381318519188e+00 -1.7281928813725087e+00 +1.2247352717337385e+00 +1.7266145221508478e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -9.4739883125846108e-05 --1.9097334320951703e-04 +4.1013774707239950e-05 +-8.2630316650559668e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.7104362650597550e-03 --9.6520186315442846e-01 +-1.9973240204530672e-03 +-1.1262028812108948e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007766132726347675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.01063501008597439 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871515915e+00 -1.7295724950168836e+00 +1.2247373531243362e+00 +1.7278030794486463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7907155448473009e-06 --1.0002022155517314e-03 +-3.9955517909457218e-06 +-2.2699885378444917e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 409.2658290091583, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 929.5029709021572, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 578.7892860006197, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1314.515707715915, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3714280685337064 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.5546445680830815 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.888978519100137e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.037889406088299e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.888978519100137e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 408.893774404372 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.037889406088299e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 928.9466973418515 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0001316914393787291, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0004477970003846742, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.7904828517812788e-06 --1.0002026199724535e-03 +-3.9951427606900051e-06 +-2.2699894192602836e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247386966687397e+00 -1.7285722923969111e+00 +1.2247333579815756e+00 +1.7255330900293859e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = -1.1079697157560710e-07 --1.5478889293047411e-07 +-6.3312922268003290e-08 +2.1251191795926941e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.5852472616163448e-03 --8.9495173747256951e-01 +-2.1708418289100376e-03 +-1.2233901433996428e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00881752369358348 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324174194482 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871515915e+00 -1.7295724950168836e+00 +1.2247373531243362e+00 +1.7278030794486463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.6282288795238112e-06 --2.0047378966247306e-03 +-3.1029424299642175e-06 +-1.7641664976033805e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 820.3045390101707, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 722.3816799642682, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1160.085804344393, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1021.601969015329, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7440015048060086 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.4311810707199935 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.496786641166685e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.593994958436902e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.496786641166685e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 819.5592726848695 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.593994958436902e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 721.9492334869299 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0005293932474467006, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.0007486751103678599, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 5.624757031827298e-07 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 5.624757031827298e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0005285091861003915 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002704617787686389, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.6281093084336706e-06 --2.0047378909181512e-03 +-3.1027067755586052e-06 +-1.7641670217400432e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247368590422829e+00 -1.7275677571259656e+00 +1.2247342504175607e+00 +1.7260389124269062e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = -1.3162933310600198e-07 -6.8681535194182303e-09 +-5.7193312188704920e-08 +2.6516269409655607e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.7998579389507678e-03 --1.0155192186229975e+00 +-2.0847510759290791e-03 +-1.1752187738759485e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00965717620213985 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771833043398 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871515915e+00 -1.7295724950168836e+00 +1.2247373531243362e+00 +1.7278030794486463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.3383007104567680e-06 --2.8977367044873393e-03 +-6.6772330149907330e-07 +-3.6857082275381926e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1185.704265874136, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 150.9205026779972, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1676.839053762838, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 213.4338217273886, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.074784364303355 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.09014627001527259 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.722145958622607e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.517528050101038e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.722145958622607e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1184.627633160195 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.517528050101038e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 150.8300897407031 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001105910995128215, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001563994328087847, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.175020868105581e-06 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.175020868105581e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001104064176681669 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.175251756248302e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.3379273958469437e-06 --2.8977368036736573e-03 +-6.6770980329704086e-07 +-3.6857081893516185e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247351492241956e+00 -1.7266747582132100e+00 +1.2247366854145330e+00 +1.7274345086297112e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -4.1032510042213582e-07 --1.0739179444837017e-07 +2.9352355831101781e-09 +4.5395078621877603e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.9712478454126797e-03 --1.1116448524878384e+00 +-1.8264441130630385e-03 +-1.0304401585116443e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01020477566424183 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198976680636412 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871515915e+00 -1.7295724950168836e+00 +1.2247373531243362e+00 +1.7278030794486463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.2442370948396269e-06 --3.5236069078921021e-03 +-7.1842528558619100e-06 +-4.0317696580253765e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1441.799134798569, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1650.907508329884, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2039.011890649931, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2334.735788503695, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.306631795919364 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.9840615809730719 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.979711756780436e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.040342380620992e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.979711756780436e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1440.490301836212 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.040342380620992e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1649.920539763122 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001634877898056415, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00141184262919741, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.002312066496255401, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001996646994147466, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.737042516505863e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 9.881988225013894e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.737042516505863e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001632147729277761 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 9.881988225013894e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001410289763273809 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.2442313303061256e-06 --3.5236069245221050e-03 +-7.1841364758075466e-06 +-4.0317698293522190e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247342429202612e+00 -1.7260488880923615e+00 +1.2247301689878605e+00 +1.7237713096192941e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = -8.2194805241496819e-09 --1.6320544347160601e-08 +1.9525728030419136e-07 +-2.8338456994271870e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.0830230328756426e-03 --1.1742513812974198e+00 +-2.4473716431961130e-03 +-1.3778151564140197e+00 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344992439355806 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247373531243362e+00 +1.7278030794486463e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.0944591182483379e-05 +-6.1655317585976822e-03 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2524.627810473625, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3570.362889516092, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.503016169962119 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.200228842881807e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.200228842881807e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.120349586974 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.003298297688278241, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.004664497323506916, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.308595340591967e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.308595340591967e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003294669935556694 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.0944741889329489e-05 +-6.1655314639535589e-03 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247264083824470e+00 +1.7216375479846928e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.4687641562350960e-07 +4.9400410149460456e-07 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.7454129324123592e-03 +-1.5436819158005237e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247342429224044e+00 -1.7260488715740170e+00 +1.2247264083873868e+00 +1.7216380422814839e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02190227878408229, h_cfl = 3.650663080679877e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.021026187632719, h_cfl = 1.825331540339938e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.759553036815223 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004138555190661009 - 1.020477566424183e-02 1.224734242922404e+00 1.726048871574017e+00 3.169020601490047e-11 2.147166888732954e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.03236785085134914, h_cfl = 4.867191957313147e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.03107313681729517, h_cfl = 2.433595978656574e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.384202038838136 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508380845468441 + 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020477566424183 +Current time = 0.01344992439355806 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -807,23 +937,23 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650663080679877 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 +Last step size = 0.004867191957313147 +Current step size = 0.03107313681729517 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.66666666666667 LS setups = 0 Jac fn evals = 0 -LS RHS fn evals = 29 +LS RHS fn evals = 33 Prec setup evals = 0 Prec solves = 0 -LS iters = 29 +LS iters = 33 LS fails = 0 Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.074074074074074 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 Jac evals per NLS iter = 0 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out index cb0fd631ed..7fde06cd1c 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out @@ -20,179 +20,213 @@ Using dense direct linear solver -0.0000000000000000e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.0174880921323788e-21 -2.1336862920964629e-21 +1.4906391175133950e-21 +1.0540410282956525e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.964697559380313e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368573862746562e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = -1.9566304323180198e-12 --3.9378235455224482e-12 +2.3588845854286730e-13 +-4.7472728006788164e-13 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247448713935456e+00 -1.7320508075649395e+00 +1.2247448713918248e+00 +1.7320508075684025e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -7.5995958375887289e-08 --1.5294593714809218e-07 +1.8546477584683199e-08 +-3.7324924233601695e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.0510967219525540e-05 --5.9458999098063797e-03 +-5.1924178081875795e-06 +-2.9372749479487743e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1975210952471765e-10 --6.7494192688417588e-08 +-1.9217338744143829e-10 +-1.0887132741742541e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02755288476307282 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.0444441057897963 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.1975207553887908e-10 --6.7494192717046560e-08 +-1.9217339832585798e-10 +-1.0887132740832788e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247448712718370e+00 -1.7320507400746845e+00 +1.2247448711994156e+00 +1.7320506986975497e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = -1.3176459665558473e-12 --1.1073861384540185e-12 +-8.5528646299545944e-13 +7.1433678509722725e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.9792822361829657e-06 --3.9480780841471040e-03 +-8.8640116506734868e-06 +-5.0142418829789625e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1785891214585049e-10 --2.3538178465259544e-07 +-1.2124318483699577e-10 +-6.8720862609796872e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09608896636098527 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364232183439 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.1785877672083249e-10 --2.3538178476552349e-07 +-1.2124319394597764e-10 +-6.8720862602188359e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247448709737301e+00 -1.7320505721870925e+00 +1.2247448712703457e+00 +1.7320507388480146e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = -5.2577714137188794e-12 --4.3814726068795874e-12 +-7.1597391723941681e-13 +5.9815529367724260e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.3033599353582813e-05 --7.3729161894512917e-03 +-7.0423480395056319e-06 +-3.9837534857068528e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.8672325001637078e-10 --4.4240972514178470e-07 +-6.2284621757379218e-12 +-3.4441606483346468e-09 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.180603158079822 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.001405996121470046 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-6.2284568554284771e-12 +-3.4441606527614664e-09 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +1.2247448713853606e+00 +1.7320508041247165e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +4.1802229080014114e-13 +-3.4792059990211575e-13 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = +-1.5766450836204445e-06 +-8.9188514235250200e-04 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247448713915889e+00 +1.7320508075688772e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-5.3070872848419706e-10 +-3.0004829219564342e-07 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1224875137281462 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.25245970796259e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.259048948413402e-13 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --7.8672289230745134e-10 --4.4240972544004533e-07 +-5.3070871730066151e-10 +-3.0004829220499356e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247448706048660e+00 -1.7320503651591517e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +1.2247448708608801e+00 +1.7320505075205850e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -1.3893494183907939e-11 --1.1584508346205501e-11 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +8.7929389217189248e-13 +-7.3514551288642541e-13 -[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.7868644269775539e-05 --1.0108029051474806e-02 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = +-1.4715354107492835e-05 +-8.3242599031363995e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0824827392366587e-09 --6.1234460336101832e-07 +-1.0824827392542865e-09 +-6.1234460529269294e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749863599196 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749871485559 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.0824827399689575e-09 --6.1234460335954617e-07 +-1.0824827398885132e-09 +-6.1234460529142059e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = 1.2247448703091062e+00 -1.7320501952242737e+00 +1.7320501952242719e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --1.3012215100047188e-15 -3.1576701690002997e-15 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.1345056353679705e-15 +4.8242384197268032e-15 -[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = -2.1021934429794617e-05 --1.1891797717486928e-02 +-1.1891797717486940e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -201,12 +235,12 @@ Using dense direct linear solver 1.7320501952242768e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.006719925951289845, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.006451128913238251, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.64081825721642 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.742319852554314e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008833069177745213, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008479746410635404, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.962603584910639e-11 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 0.000000000000000e+00 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006451128913238251 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448703091064e+00 @@ -221,435 +255,513 @@ Using dense direct linear solver -1.1891797717486906e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003328550482228634 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091064e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.7807604506514678e-08 --3.8357760042830063e-05 +-4.4030386237593028e-08 +-2.4907338965682790e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.05452507214864 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.27594245005348 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.129920641765477e-05 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.016614577411573e-06 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = -4.1065785024887790e-07 --3.9323385795550430e-05 +8.7219937950447642e-08 +-2.5171961820094906e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247452809669566e+00 -1.7320108718384812e+00 +1.2247449575290443e+00 +1.7320250232624568e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -2.9667083773838898e-04 --5.9873288270613230e-04 +1.2532870795642592e-04 +-2.5268387445452606e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.7943604022255939e-04 --3.8407293609244092e-01 +-4.4855902589036278e-04 +-2.5366562197185338e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002244760824804608 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091064e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1994981963308827e-07 --2.8990067442569872e-04 +-1.2215345623613401e-06 +-7.8070997547132956e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 118.3454769917176 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 318.7057870277454 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.953618323509618e-05 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 9.187893730682911e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.1929648654133114e-07 --2.8990138222312003e-04 +-1.2220002719081114e-06 +-7.8070962306293760e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247442510126199e+00 -1.7317602938420538e+00 +1.2247436483088345e+00 +1.7312694856012139e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = -4.0509690656551196e-07 --4.3886732434035768e-07 +-4.4469814579757099e-07 +3.3650879510174794e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --4.5820973189758177e-04 --2.5915905637732384e-01 +-7.5087312904469755e-04 +-4.2456696894309470e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004102685951817224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091064e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.1442310271419409e-06 --9.7039896593374795e-04 +-7.5051074826941585e-07 +-4.9983937853425675e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 396.1432178884001 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 204.0471672974475 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0002187086232103356 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 3.764993563400174e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.1424447466510006e-06 --9.7040013600155719e-04 +-7.5090745665684877e-07 +-4.9983907047105528e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247427278643597e+00 -1.7310797950882753e+00 +1.2247441194016497e+00 +1.7315503561538057e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = -1.1075769930358795e-06 --7.2549646736720538e-07 +-3.7881010946189031e-07 +2.9416432517336657e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.3745637942210559e-04 --4.7347138399883171e-01 +-6.0087996650943598e-04 +-3.3981117622526136e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005586445601862022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091064e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.3121031160657201e-06 --1.7987371559445879e-03 +-1.3244380151301340e-07 +-3.0872991967523936e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 734.2942058683061 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 12.60338862820494 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007520421592194119 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.438321343380526e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.3072497202137318e-06 --1.7987405228745478e-03 +-1.3225936963800693e-07 +-3.0873076367039978e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247405630593862e+00 -1.7302514547014023e+00 +1.2247447380497367e+00 +1.7320193221479099e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -3.0093311825797051e-06 --2.0876531884634739e-06 +1.7611086881044584e-07 +-8.0591666151793801e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.1403265134450578e-03 --6.4439534652147978e-01 +-1.5084101123165263e-04 +-8.5327004761917805e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00655411493884776 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.2247448703091064e+00 1.7320501952242768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.3831263198340605e-06 --2.4777446806212061e-03 +-3.8843590898386682e-06 +-2.1031543452955099e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1011.478964763825 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 858.5624846927961 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001424579352601338 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006675017140435614 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.3831607741131602e-06 --2.4777446115456883e-03 +-3.8838145012797995e-06 +-2.1031548370766596e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247404871483323e+00 -1.7295724506127312e+00 +1.2247409864946051e+00 +1.7299470403872002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --2.1363255745115990e-08 -4.2830034279925051e-08 +5.2001837622256241e-07 +-4.6959347730553884e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --1.3378483205559986e-03 --7.5571990444177584e-01 +-1.2326630439885536e-03 +-6.9645345711250040e-01 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247448703091064e+00 +1.7320501952242768e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-7.5170557591087731e-06 +-4.2473691325277179e-03 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.884798165494 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00272110725063923 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-7.5171880164796633e-06 +-4.2473688677750858e-03 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247373531210899e+00 +1.7278028263565017e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.2629032028650053e-07 +2.5280779784684147e-07 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-1.7519321678850510e-03 +-9.8861346153687191e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247404871513676e+00 -1.7295724932350296e+00 +1.2247373531253865e+00 +1.7278030794479398e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003802779126217027, h_cfl = 6.451128913238251e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003650667961168346, h_cfl = 3.225564456619126e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5658959866197795 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004100655316169613 - 6.554114938847760e-03 1.224740487151368e+00 1.729572493235030e+00 2.654254593892347e-11 2.225244433162743e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411493884776, h = 0.003650667961168346 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411493884776 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005069991903092901, h_cfl = 8.479746410635405e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004867192226969185, h_cfl = 4.239873205317702e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5739785120065255 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283547843061466 + 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867192226969185 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = -1.2247404871513676e+00 -1.7295724932350296e+00 +1.2247373531253865e+00 +1.7278030794479398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.8177126792407835e-11 -2.0925313035129372e-10 +2.4681493516830112e-10 +-2.8151046089901311e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --1.3378483205526829e-03 --7.5571988581837657e-01 +-1.7519321678789049e-03 +-9.8861331672314534e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008379448919431933 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784928916306302 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871513676e+00 -1.7295724932350296e+00 +1.2247373531253865e+00 +1.7278030794479398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4420200534686225e-06 --1.3794411871964954e-03 +-2.1061665371703141e-06 +-1.1885074496755955e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 564.0014806129656 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 486.3925390340005 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0003203746251509396 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0001400250965491854 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.3555531812209585e-06 --1.3796154832950733e-03 +-2.0815130075160999e-06 +-1.1885571188021873e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247381315981865e+00 -1.7281928777517346e+00 +1.2247352716123789e+00 +1.7266145223291376e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = -9.4740878326696616e-05 --1.9097447425667612e-04 +4.1014143806240493e-05 +-8.2630630555857691e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.7104372442686014e-03 --9.6520241237757498e-01 +-1.9973240342461358e-03 +-1.1262028886624407e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007766136701955651 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.01063501019967631 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871513676e+00 -1.7295724932350296e+00 +1.2247373531253865e+00 +1.7278030794479398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7907189281485339e-06 --1.0002039927151931e-03 +-3.9955517704377310e-06 +-2.2699886768882817e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 408.8942864970894 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 928.9460233583245 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0001318689853766368 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0004483582992973109 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.7906174533382056e-06 --1.0002041342835040e-03 +-3.9955890244347976e-06 +-2.2699886647846654e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247386965339142e+00 -1.7285722891007460e+00 +1.2247333575363619e+00 +1.7255330907831552e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = -1.1118492442866392e-07 --1.5511496782376229e-07 +-6.1976553059479904e-08 +2.0135837301311847e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.5852480732880558e-03 --8.9495219362911327e-01 +-2.1708418529073920e-03 +-1.2233901557469937e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.008817529074772134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324183227959 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871513676e+00 -1.7295724932350296e+00 +1.2247373531253865e+00 +1.7278030794479398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.6282356983250378e-06 --2.0047415814651698e-03 +-3.1029426424495689e-06 +-1.7641666037060632e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 819.5599166135717 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 721.9488354659991 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0005296666417807359 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0002707998091281837 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.6281155710687730e-06 --2.0047415751940699e-03 +-3.1029765364287632e-06 +-1.7641665881718914e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247368590357965e+00 -1.7275677516598356e+00 +1.2247342501488501e+00 +1.7260389128597680e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = -1.3162222103951659e-07 -6.8711811078490099e-09 +-5.6386755224568404e-08 +2.5842983439938540e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.7998590373553198e-03 --1.0155198351526731e+00 +-2.0847510948251865e-03 +-1.1752187838309052e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.009657182705840853 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771853267601 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871513676e+00 -1.7295724932350296e+00 +1.2247373531253865e+00 +1.7278030794479398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.3383116645474833e-06 --2.8977421540129634e-03 +-6.6772371424185440e-07 +-3.6857084335218028e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1184.62805856745 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 150.8300789506056 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001106743799152199 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.181473423917798e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.3379371796878708e-06 --2.8977422520242639e-03 +-6.6772192969719516e-07 +-3.6857081608241305e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247351492141880e+00 -1.7266747509830054e+00 +1.2247366854034567e+00 +1.7274345086318574e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -4.1031927634032651e-07 --1.0738999148623674e-07 +2.9688072347440902e-09 +4.5366572882766522e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.9712491729398287e-03 --1.1116455964561234e+00 +-1.8264441172076670e-03 +-1.0304401608145006e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01020478290001611 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198976699512334 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247404871513676e+00 -1.7295724932350296e+00 +1.2247373531253865e+00 +1.7278030794479398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.2442487674651759e-06 --3.5236136246383004e-03 +-7.1842514726485936e-06 +-4.0317699169512104e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1440.490382360151 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1649.918340583196 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001636494915150856 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001414605565722521 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.2442412748781892e-06 --3.5236136395310640e-03 +-7.1841341080763075e-06 +-4.0317700872928687e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = -1.2247342429100927e+00 -1.7260488795954985e+00 +1.2247301689912784e+00 +1.7237713093606468e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = -8.2095520908622548e-09 --1.6317850493869213e-08 +1.9525023462800945e-07 +-2.8338405802335666e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.0830245098250881e-03 --1.1742522080968119e+00 +-2.4473716817172918e-03 +-1.3778151778948307e+00 + +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499246632141 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +1.2247373531253865e+00 +1.7278030794479398e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.0944589100476498e-05 +-6.1655321850360373e-03 + +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.115136876571 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003307199228182218 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.0944737507452150e-05 +-6.1655318880840335e-03 + +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = +1.2247264083878791e+00 +1.7216375475598558e+00 + +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.4689304738161174e-07 +4.9401576166928949e-07 + +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.7454129874393413e-03 +-1.5436819463804345e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247342429104990e+00 -1.7260488630753557e+00 +1.2247264083904974e+00 +1.7216380418635080e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02190228634313546, h_cfl = 3.650667961168346e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02102619488941004, h_cfl = 1.825333980584173e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.759547324780779 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004138569211494713 - 1.020478290001611e-02 1.224734242910499e+00 1.726048863075356e+00 2.852318381485475e-11 2.167570567479515e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.03236790443725433, h_cfl = 4.867192226969185e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.03107318825976415, h_cfl = 2.433596113484593e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.384212254364467 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508359824665829 + 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020478290001611 +Current time = 0.0134499246632141 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -658,13 +770,13 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650667961168346 -Current step size = 0.02102619488941004 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 +Last step size = 0.004867192226969185 +Current step size = 0.03107318825976415 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 8.666666666666666 +NLS iters per step = 10.33333333333333 LS setups = 3 Jac fn evals = 1 LS RHS fn evals = 0 @@ -675,6 +787,6 @@ LS fails = 0 Jac-times setups = 0 Jac-times evals = 0 LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.03846153846153846 +Jac evals per NLS iter = 0.03225806451612903 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out index e84abe1983..05c31cad9a 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out @@ -13,28 +13,28 @@ Start ERKStep Logging test 8.2872847241886988e-17 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.119441024380336e-05 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.0434965378977631e-05 --5.9460528606460573e-03 +-8.3601325974164024e-06 +-4.7568181190855447e-03 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 5.14930128047542e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.179161536570504e-05 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.0586980816170437e-05 --5.9457480002098806e-03 +-1.2686133724669499e-05 +-7.1349340080889608e-03 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0001029860256095084 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --2.1021910950562200e-05 --1.1891797736938324e-02 +-2.0966634735151845e-05 +-1.1891908211316433e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 7.723951920713131e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001029860256095084 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.5766446427037753e-05 --8.9188496712662869e-03 +-2.1021934429493368e-05 +-1.1891797717486953e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -43,12 +43,12 @@ Start ERKStep Logging test 1.7320501952242768e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008972298336716318, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008882575353349156, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 86.25029756007065 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.419249037637078e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02175852070510274, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02154093549805171, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 209.1636741059255 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.594510015625189e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008882575353349156 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.02154093549805171 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0001029860256095084 [DEBUG][rank 0][erkStep_TakeStep][stage] z_0(:) = 1.2247448703091062e+00 @@ -59,42 +59,42 @@ Start ERKStep Logging test -1.1891797717486953e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.004544273702284087 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.008719360224830193 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --3.6259872019437094e-04 --5.2515863612937741e-01 +3.4278750166083396e-04 +-1.0060610056117727e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.004544273702284087 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.01302754732444054 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.4993497806597587e-03 --5.2357042582410707e-01 +-5.9335252891599254e-03 +-1.4949167767352149e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.008985561378958664 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.02164392152366122 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.8220070513158568e-03 --1.0347727011591834e+00 +-1.8608531568000794e-03 +-2.4579208745180470e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.006764917540621375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.02164392152366122 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.3786676734203799e-03 --7.7995401735825853e-01 +-4.4175130473626629e-03 +-2.4600136104282435e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = -1.2247366288691779e+00 -1.7273955442047693e+00 +1.2246968612271452e+00 +1.7052160583158911e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001178309766646161, h_cfl = 8.882575353349156e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001166526668979699, h_cfl = 4.441287676674578e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.1313275286248895 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 2.462475155319869, kflag = 5 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.001166526668979699 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.006764917540621375 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001899974436426266, h_cfl = 2.154093549805171e+28 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002154093549805171, h_cfl = 1.077046774902586e+28 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.1 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 3.140201787461667, kflag = 5 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.002154093549805171 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.02164392152366122 [DEBUG][rank 0][erkStep_TakeStep][stage] z_0(:) = 1.2247448703091062e+00 1.7320501952242768e+00 @@ -104,89 +104,89 @@ Start ERKStep Logging test -1.1891797717486953e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006862493600993581 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000964623445531577 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.3032904192622404e-04 --7.9258731610232086e-02 +-1.7562334264131817e-04 +-1.1142173434515469e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0006862493600993581 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001395442155492611 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.4984787087207163e-04 --7.9221268462670358e-02 +-3.1686453430857301e-04 +-1.6106298947426903e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001269512694589208 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002257079575414679 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --2.5910496725266611e-04 --1.4658284865381860e-01 +-4.3631750757851034e-04 +-2.6062233118417849e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000977881027344283 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002257079575414679 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9960290761018702e-04 --1.1291238030246764e-01 +-4.6072423644130645e-04 +-2.6058084015260385e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = -1.2247447069019091e+00 -1.7319577606918570e+00 +1.2247443514438932e+00 +1.7317567067541342e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001351152074913978, h_cfl = 1.166526668979699e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001166526668979699, h_cfl = 5.832633344898497e+26 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00222404807423718, h_cfl = 2.154093549805171e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002154093549805171, h_cfl = 1.077046774902586e+27 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 1 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007282628719708946 - 1.269512694589208e-03 1.224744706901909e+00 1.731957760691857e+00 7.771561172376096e-14 3.164135620181696e-13 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.001269512694589208, h = 0.001166526668979699 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001269512694589208 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003093648788603309 + 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002257079575414679, h = 0.002154093549805171 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002257079575414679 [DEBUG][rank 0][erkStep_TakeStep][stage] z_0(:) = -1.2247447069019091e+00 -1.7319577606918570e+00 +1.2247443514438932e+00 +1.7317567067541342e+00 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = --2.5913815852688147e-04 --1.4658282390787855e-01 +-4.6072423644130645e-04 +-2.6058084015260385e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001852776029079057 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.003118716995336748 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --3.6844720918717511e-04 --2.1393286069092612e-01 +-6.1533886076807498e-04 +-3.6003554417061029e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001852776029079057 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.003549535705297782 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --3.8796112051977795e-04 --2.1389846191129469e-01 +-7.5653899954261931e-04 +-4.0964387681687398e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002436039363568907 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.004411173125219851 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --4.9722280946114911e-04 --2.8123397151515173e-01 +-8.7605014202383287e-04 +-5.0906238904072021e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002144407696323982 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.004411173125219851 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --4.3771935210554133e-04 --2.4757691908584015e-01 +-9.0042547018906894e-04 +-5.0902795647801546e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = -1.2247442657258725e+00 -1.7317082251924272e+00 +1.2247428854197406e+00 +1.7309277379266843e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003684971035872554, h_cfl = 1.166526668979699e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003648121325513829, h_cfl = 5.832633344898497e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.127336410323694 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007283923530119241 - 2.436039363568907e-03 1.224744265725872e+00 1.731708225192427e+00 1.558753126573720e-13 5.899725152858082e-13 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.007801875989983231, h_cfl = 2.154093549805171e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.007723857230083399, h_cfl = 1.077046774902586e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.585664713021396 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003130074629321011 + 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.002436039363568907 +Current time = 0.004411173125219851 Steps = 3 Step attempts = 4 Stability limited steps = 0 @@ -195,7 +195,7 @@ Error test fails = 1 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001166526668979699 -Current step size = 0.003648121325513829 -RHS fn evals = 21 +Last step size = 0.002154093549805171 +Current step size = 0.007723857230083399 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out index 0cc07e9b6a..58b1baa159 100644 --- a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out +++ b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out @@ -13,24 +13,24 @@ Start ForcingStep Logging test -2.0000000000000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9990000000000001e+00 +-1.9992000000000001e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9990005000000000e+00 +-1.9988006000000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9980009995000001e+00 +-1.9980008176363637e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9985005623281094e+00 +-1.9980009996667500e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -48,24 +48,24 @@ Start ForcingStep Logging test -1.9980009996667500e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9970019991669166e+00 +-1.9972017992668833e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9970024986671666e+00 +-1.9968027984672498e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9960039971680830e+00 +-1.9960038154862192e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9965030606830623e+00 +-1.9960039973346662e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -91,24 +91,24 @@ Start ForcingStep Logging test 1.0000000000000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9975051522943725e-01 +9.9980040969353312e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9975045286602637e-01 +9.9970054717519086e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9950093684165087e-01 +9.9950095951571272e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9962571435044589e-01 +9.9950093685463370e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -126,24 +126,24 @@ Start ForcingStep Logging test 9.9950093685463370e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9925138963097027e-01 +9.9930129658319533e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9925132726752142e-01 +9.9920140908979505e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9900174882116322e-01 +9.9900177149523872e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0004375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9912655753706747e-01 +9.9900174883414539e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -161,24 +161,24 @@ Start ForcingStep Logging test 9.9900174883414539e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9875213921962747e-01 +9.9880205864753047e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9875207685617162e-01 +9.9870214620401310e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9850243605013178e-01 +9.9850245872421028e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0006875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9862727594198053e-01 +9.9850243606311362e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -196,24 +196,24 @@ Start ForcingStep Logging test 9.9850243606311362e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9825276412009678e-01 +9.9830269601120480e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9825270175666514e-01 +9.9820275864255437e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9800299865335362e-01 +9.9800302132742347e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0009375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9812786968992684e-01 +9.9800299866633491e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -242,24 +242,24 @@ Start ForcingStep Logging test -1.9980020006660002e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9970029996656673e+00 +-1.9972027998657338e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9970034991661674e+00 +-1.9968037988662009e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9960049971668341e+00 +-1.9960048154848793e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9965040609318445e+00 +-1.9960049973334175e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -277,24 +277,24 @@ Start ForcingStep Logging test -1.9960049973334175e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9950069948347509e+00 +-1.9952065953344842e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9950074938360001e+00 +-1.9948079931365166e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9940099898395816e+00 +-1.9940098083392179e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9945085547902757e+00 +-1.9940099900059984e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -320,24 +320,24 @@ Start ForcingStep Logging test 9.9800299866633491e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9775376289713569e-01 +9.9780360756095399e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9775370065821412e-01 +9.9770384479255536e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9750443375983089e-01 +9.9750445638863283e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0011875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9762908665892802e-01 +9.9750443377278031e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -355,24 +355,24 @@ Start ForcingStep Logging test 9.9750443377278031e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9725513579962222e-01 +9.9730499290174379e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9725507356072474e-01 +9.9720520525801271e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9700574448953228e-01 +9.9700576711832567e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0014375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9713042847113253e-01 +9.9700574450248092e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -390,24 +390,24 @@ Start ForcingStep Logging test 9.9700574450248092e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9675638438767267e-01 +9.9680625391563404e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9675632214883070e-01 +9.9670644142153575e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9650693096719167e-01 +9.9650695359596519e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0016875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9663164600009913e-01 +9.9650693098013998e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -425,24 +425,24 @@ Start ForcingStep Logging test 9.9650693098013998e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9625750878609920e-01 +9.9630739072741470e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9625744654734361e-01 +9.9620755340795819e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9600799331773038e-01 +9.9600801594647259e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0019375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9613273937069435e-01 +9.9600799333067791e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -471,24 +471,24 @@ Start ForcingStep Logging test -1.9960040013293339e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9950059993286693e+00 +-1.9952055997288021e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9950064983296696e+00 +-1.9948069977297367e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9940089948310042e+00 +-1.9940088133307312e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9945075595329151e+00 +-1.9940089949974211e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -506,24 +506,24 @@ Start ForcingStep Logging test -1.9940089949974211e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9930119904999224e+00 +-1.9932113913994220e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9930124890021712e+00 +-1.9928131878031212e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9920159825084189e+00 +-1.9920158011895555e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9925140488948272e+00 +-1.9920159826746695e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -549,24 +549,24 @@ Start ForcingStep Logging test 9.9600799333067791e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9575900706128206e-01 +9.9580880182514453e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9575894494684947e-01 +9.9570913900604097e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9550992767277469e-01 +9.9550995025631717e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0021875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9563445571303111e-01 +9.9550992768569035e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -584,24 +584,24 @@ Start ForcingStep Logging test 9.9550992768569035e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9526087946122810e-01 +9.9531068661361810e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9526081734688199e-01 +9.9521099901880705e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9501173814892097e-01 +9.9501176073243225e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0024375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9513629714719976e-01 +9.9501173816183608e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -619,24 +619,24 @@ Start ForcingStep Logging test 9.9501173816183608e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9476262804467785e-01 +9.9481244757311904e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9476256593044876e-01 +9.9471273522759074e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002750000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9451342487102634e-01 +9.9451344745449521e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002687500000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002750000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9463801479610059e-01 +9.9451342488394090e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -654,24 +654,24 @@ Start ForcingStep Logging test 9.9451342488394090e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9426425293656551e-01 +9.9431408482856032e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9426419082248474e-01 +9.9421434775734818e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9401498796413412e-01 +9.9401501054754926e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0029375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9413960878472252e-01 +9.9401498797704790e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out index 39d6d55637..12fcff6b09 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out @@ -31,10 +31,10 @@ Using Ex-MRI-GARK method 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 -4.7406846863098245e-25 +5.3634724626510373e-25 +3.7925477490478599e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -42,382 +42,382 @@ Using Ex-MRI-GARK method [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.6053856682085423e-07 +-5.2843085314525503e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 --3.7785658061256218e-15 +8.0452086939765536e-25 +-4.5342789648207094e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688734e+00 +1.7320508075688728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.6053856310312784e-07 +-7.9264627629798670e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.3408681156627590e-24 --7.5571315697172442e-15 +-6.1831076431280063e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688696e+00 +1.7320508075688710e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.3210771299314208e-06 +-1.3210771313415924e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0056510867470693e-24 --4.2508865157902688e-15 +1.3408681156627590e-24 +-7.5571315914074938e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688730e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9080784746839703e-07 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.3210771301878156e-06 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --6.2224519411136004e-13 +4.4162192000841562e-23 +-4.9779615519247580e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075682477e+00 +1.7320508075683718e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --5.5709046861272483e-05 +-4.4831450867377550e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --2.6239714461655333e-11 +6.6243288001262352e-23 +-3.1487655907296586e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075426302e+00 +1.7320508075373819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --5.5709021244515720e-05 +-6.6586613138314699e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.1040548000210391e-22 --5.2479404791632934e-11 +-4.3163962515237713e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075257057e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009700026513331e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.2804110001577931e-23 --2.9753011668513490e-11 +1.1040548000210391e-22 +-5.2479416853280340e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075391168e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --8.2903012504834220e-05 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --8.5194859796217894e-10 +7.2552968779072471e-22 +-6.8155887836815613e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508066644420e+00 +1.7320508068348315e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0036266807812572e-03 +-8.2492019133151230e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --7.7662280884078046e-09 +1.0882945316860870e-21 +-9.3194673048840092e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507997501624e+00 +1.7320507981969231e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0036197705080342e-03 +-1.1823251541646488e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.8138242194768115e-21 --1.5532349231157368e-08 +-1.3018070613259391e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507919840413e+00 +1.7320507944983197e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8971494422882198e-03 +-1.8971519538126275e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3603681646076087e-21 --9.0564472278026476e-09 +1.8138242194768115e-21 +-1.5532402657424498e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507984599434e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4503863368916410e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.8971494422348200e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --2.9360907931865759e-07 +1.4510593755814492e-20 +-2.3488726345489439e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320504983749085e+00 +1.7320505570967242e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.9769020554131735e-02 +-1.6194434459265345e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --3.0595185570055904e-06 +2.1765890633721739e-20 +-3.6713730832836679e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320477324654309e+00 +1.7320471206109043e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.9766286211624975e-02 +-2.3340435532636403e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.6276484389536231e-20 --6.1181907623552925e-06 +-5.1124415111765749e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320446737932254e+00 +1.7320456795424763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.7638060803422323e-02 +-3.7639044697035690e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7207363292152176e-20 --3.5517453331153056e-06 +3.6276484389536225e-20 +-6.1186089589422689e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320472402386546e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8702874510251369e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.7638060394313270e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.3882737364138767e-07 +3.4583195340771755e-22 +-1.1106189891310941e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320445345476552e+00 +1.7320445623131295e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.8063965878194383e-02 +-3.7978784666888754e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.4039831909200959e-07 +5.1874793011157636e-22 +-1.6847798227675200e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320445329767096e+00 +1.7320445048970463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.8063964341772422e-02 +-3.8149145303113981e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.6457988351929386e-22 --2.8079662684988434e-07 +-2.8022537436888128e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320443925784019e+00 +1.7320443931496541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.8489869720701411e-02 +-3.8489870279259070e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.4843491263947040e-22 --2.1000836986792525e-07 +8.6457988351929386e-22 +-2.8079663238791185e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320444633666590e+00 +1.7320443925783962e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.8276917428533966e-02 +-3.8489869720695770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_1(:) = --6.8064060628792247e-05 +-6.8064060629048647e-05 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00075 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.5314413641492905e-04 +-1.5314413641550595e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -425,169 +425,169 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.8489869720696276e-02 +-3.8489869720695770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1297393130425637e-08 --2.8393851697686186e-06 +-9.0379145043745551e-09 +-2.2715081358148649e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448600941959e+00 -1.7320415531932267e+00 +1.2247448623536745e+00 +1.7320421210702603e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --4.7008249417963652e-02 +-4.5304528611487288e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1297393130425637e-08 --3.4677832692787757e-06 +-1.3556871756561833e-08 +-4.1613349583960144e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448600941959e+00 -1.7320409247951274e+00 +1.2247448578347171e+00 +1.7320402312434378e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --4.7007638074714753e-02 +-4.8711259495875486e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2594786260851273e-08 --6.9354763413723103e-06 +-2.2594786260936387e-08 +-6.7069710856361687e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448487968027e+00 -1.7320374571020551e+00 +1.7320376856073105e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.5525966116538074e-02 +-5.5526187296317066e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6946089695638454e-08 --4.9659920308202206e-06 +-2.2594786260936387e-08 +-6.9355201697634017e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448544454993e+00 -1.7320394265863657e+00 +1.2247448487968027e+00 +1.7320374570582264e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1266961967908885e-02 +-5.5525966074114384e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448487968027e+00 -1.7320374570582269e+00 +1.7320374570582264e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157886608518576, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831571144177833, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123678626051 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618640185768e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425216259463, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001659288207609084, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641130410033 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783215943582465e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0002691273172028848 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448487968027e+00 -1.7320374570582269e+00 +1.7320374570582264e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.5525966074114877e-02 +-5.5525966074114384e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006154363413985574 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005885236096782689 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0607635289351237e-08 --7.4717771423124676e-06 +-1.6486108231543094e-08 +-5.9774217138499214e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448281891673e+00 -1.7320299852810845e+00 +1.2247448323106944e+00 +1.7320314796365126e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.1064575037149705e-02 +-6.7956712980270090e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006154363413985574 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006423490731188459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0607635289351237e-08 --9.5627092139555982e-06 +-2.4729162347314638e-08 +-1.1475222745036191e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448281891673e+00 -1.7320278943490128e+00 +1.2247448240676404e+00 +1.7320259818354813e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.1062569894116898e-02 +-7.4170103782523131e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007499999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1215270578702474e-08 --1.9124878789146170e-05 +-4.1215270578857732e-08 +-1.8364555808165286e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448075815321e+00 -1.7320183321794378e+00 +1.7320190925024184e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --8.6600920017551195e-02 +-8.6601642324232411e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006827181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007499999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0911452934026854e-08 --1.3559764106430567e-05 +-4.1215270578857732e-08 +-1.9125136998398825e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448178853497e+00 -1.7320238972941204e+00 +1.2247448075815321e+00 +1.7320183319212281e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --7.8832282114519550e-02 +-8.6600919772252052e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448075815321e+00 -1.7320183319212286e+00 +1.7320183319212281e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002342768924220768, h_cfl = 2.691273172028848e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002249058167251937, h_cfl = 1.345636586014424e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.356855746295192 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.061352125450266e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003523580954952828, h_cfl = 2.691273172028848e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003382637716754715, h_cfl = 1.345636586014424e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.56891255748919 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.524836630178692e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247448075815321e+00 -1.7320183319212286e+00 +1.7320183319212281e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = --1.5308030199797466e-04 +-1.5308030199816697e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.5300795632542635e-04 +-1.5300795632518282e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -595,105 +595,105 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00075 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448075815321e+00 -1.7320183319212286e+00 +1.7320183319212281e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --8.6600919772252427e-02 +-8.6600919772252052e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00085 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.9125994540678279e-08 --1.0825114971531545e-05 +-1.5300795632518270e-08 +-8.6600919772251984e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447884555376e+00 -1.7320075068062570e+00 +1.2247447922807364e+00 +1.7320096718292508e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0103457038865726e-01 +-9.8147729262850633e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.9125994540678279e-08 --1.2629321298582147e-05 +-2.2951193448777405e-08 +-1.5155164745325029e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447884555376e+00 -1.7320057025999300e+00 +1.2247447846303388e+00 +1.7320031767564827e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0103287142769918e-01 +-1.0391943044678187e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8251989081356559e-08 --2.5258217856924772e-05 +-3.8251989081295672e-08 +-2.4602152014780117e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693295430e+00 -1.7319930737033717e+00 +1.7319937297692134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620498350778e-01 +-1.1546681731151900e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009374999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.8688991811017417e-08 --1.8267247774675333e-05 +-3.8251989081295672e-08 +-2.5258417016188502e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447788925403e+00 -1.7320000646734539e+00 +1.2247447693295430e+00 +1.7319930735042119e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0825000539838989e-01 +-1.1546620479762529e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447693295430e+00 -1.7319930735042126e+00 +1.7319930735042119e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002092677993913014, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002008970874156493, h_cfl = 1.249999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.035883496625978 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.534938689302334e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003514001650164878, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003373441584158283, h_cfl = 1.249999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.49376633663314 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.613867963908573e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247447693295430e+00 -1.7319930735042126e+00 +1.7319930735042119e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247447693295430e+00 -1.7319930735042126e+00 +1.7319930735042119e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329543e+00 1.731993073504213e+00 2.242650509742816e-14 2.664535259100376e-15 + 1.000000000000000e-03 1.224744769329543e+00 1.731993073504212e+00 2.242650509742816e-14 3.330669073875470e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247447693295430e+00 -1.7319930735042126e+00 +1.7319930735042119e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_0(:) = --2.0412412826749547e-04 +-2.0412412826781596e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412412826749547e-04 +-2.0412412826781596e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -701,92 +701,92 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693295430e+00 -1.7319930735042126e+00 +1.7319930735042119e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620479762590e-01 +-1.1546620479762529e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020688044582544e-08 --1.9244367466270964e-05 +-2.7216550435708769e-08 +-1.5395493973016690e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447353088550e+00 -1.7319738291367464e+00 +1.2247447421129927e+00 +1.7319776780102389e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3471042808681047e-01 +-1.3086140577730482e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020688044582544e-08 --2.2451738014468388e-05 +-4.0824825653563148e-08 +-2.6942041204444913e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447353088550e+00 -1.7319706217661981e+00 +1.2247447285047173e+00 +1.7319661314630075e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3470747017841533e-01 +-1.3855599490335049e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041376089165088e-08 --4.4902490059471733e-05 +-6.8041376089271920e-08 +-4.3736186368403955e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447012881669e+00 -1.7319481710141531e+00 +1.7319493373178436e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.5395094280350119e-01 +-1.5395200543542972e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1031032066873813e-08 --3.2474481146996852e-05 +-6.8041376089271920e-08 +-4.4902941340648048e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447182985109e+00 -1.7319605990230655e+00 +1.2247447012881669e+00 +1.7319481705628712e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4433004648629949e-01 +-1.5395094239233331e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447012881669e+00 -1.7319481705628721e+00 +1.7319481705628712e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002019467844874993, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001938689131079993, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.816067393239986 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185275272059e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003389850775568803, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003254256744546051, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.762770233638163 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469718993709e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247447012881669e+00 -1.7319481705628721e+00 +1.7319481705628712e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_1(:) = --2.7218816431900944e-04 +-2.7218816431945814e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00175 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.5726820938340189e-04 +-3.5726820938401088e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -794,92 +794,92 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447012881669e+00 -1.7319481705628721e+00 +1.7319481705628712e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.5395094239233412e-01 +-1.5395094239233331e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.4430876954875343e-08 --3.2073112998402921e-05 +-5.9544701564001774e-08 +-2.5658490398722201e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446268572899e+00 -1.7319160974498737e+00 +1.2247446417434653e+00 +1.7319225120724724e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7800447825417720e-01 +-1.7319353318560457e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001583333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.4430876954875343e-08 --3.7084266302953558e-05 +-8.9317052346002671e-08 +-4.4501045220980572e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446268572899e+00 -1.7319110862965692e+00 +1.2247446119711145e+00 +1.7319036695176502e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7799998213607038e-01 +-1.8281015701393019e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00175 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4886175390975069e-07 --7.4166659223362606e-05 +-1.4886175391000445e-07 +-7.2344424130941912e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445524264131e+00 -1.7318740039036487e+00 +1.7318758261387404e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.0205196927351796e-01 +-2.0205357891378173e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001645833333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1164631543231301e-07 --5.3746534612451886e-05 +-1.4886175391000440e-07 +-7.4167488364326528e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445896418514e+00 -1.7318944240282597e+00 +1.2247445524264131e+00 +1.7318740030745068e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.9002730638403170e-01 +-2.0205196854110924e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445524264131e+00 -1.7318740030745077e+00 +1.7318740030745068e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002325110420635145, h_cfl = 4.166666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002232106003809739, h_cfl = 2.083333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.357054409143378 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.184752984633551e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003901249949801813, h_cfl = 4.166666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003745199951809741, h_cfl = 2.083333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.988479884343384 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.354351058885305e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247445524264131e+00 -1.7318740030745077e+00 +1.7318740030745068e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = --3.5720436435653953e-04 +-3.5720436435698823e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.5713200665942884e-04 +-3.5713200665969593e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -887,105 +887,105 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00175 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247445524264131e+00 -1.7318740030745077e+00 +1.7318740030745068e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.0205196854111016e-01 +-2.0205196854110924e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4641500832428567e-08 --2.5256496067638749e-05 +-3.5713200665969564e-08 +-2.0205196854110907e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247445077849122e+00 -1.7318487465784400e+00 +1.2247445167132125e+00 +1.7318537978776527e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.1648176970596372e-01 +-2.1359573699835208e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0019 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4641500832428567e-08 --2.7060221213245443e-05 +-5.3569800998954346e-08 +-3.2472251866899390e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247445077849122e+00 -1.7318469428532943e+00 +1.2247444988566121e+00 +1.7318415308226398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.1648019144645875e-01 +-2.1936594691441527e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.9283001664857134e-08 --5.4120047861614639e-05 +-8.9283001664923904e-08 +-5.3464143317513620e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631434115e+00 -1.7318198830266460e+00 +1.7318205389311894e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090931457614758e-01 +-2.3090988302666191e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0019375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.6962251248642854e-08 --3.9913792225586784e-05 +-8.9283001664923904e-08 +-5.4120216892585601e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247444854641618e+00 -1.7318340892822821e+00 +1.2247444631434115e+00 +1.7318198828576141e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2369523515123488e-01 +-2.3090931442965318e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631434115e+00 -1.7318198828576150e+00 +1.7318198828576141e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002121473803752882, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002036614851602766, h_cfl = 1.249999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146459406411072 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.535440853723494e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003558737514327801, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003416388013754689, h_cfl = 1.249999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.66555205501877 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.653375431797445e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247444631434115e+00 -1.7318198828576150e+00 +1.7318198828576141e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247444631434115e+00 -1.7318198828576150e+00 +1.7318198828576141e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463143411e+00 1.731819882857615e+00 4.485301019485632e-14 4.218847493575595e-15 + 2.000000000000000e-03 1.224744463143411e+00 1.731819882857614e+00 4.485301019485632e-14 5.107025913275720e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247444631434115e+00 -1.7318198828576150e+00 +1.7318198828576141e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_0(:) = --4.0824815447279339e-04 +-4.0824815447324214e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.002333333333333334 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824815447279322e-04 +-4.0824815447324198e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -993,92 +993,92 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631434115e+00 -1.7318198828576150e+00 +1.7318198828576141e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931442965393e-01 +-2.3090931442965318e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041359078798852e-08 --3.8484885738275638e-05 +-5.4433087263098909e-08 +-3.0787908590620413e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443951020525e+00 -1.7317813979718768e+00 +1.2247444087103241e+00 +1.7317890949490236e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5014733557284241e-01 +-2.4629962220025212e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041359078798852e-08 --4.1691222595473722e-05 +-8.1649630894648363e-08 +-5.0029439828580340e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443951020525e+00 -1.7317781916350194e+00 +1.2247443814937806e+00 +1.7317698534177854e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5014459237352205e-01 +-2.5399181682773919e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3608271815759770e-07 --8.3381530791173987e-05 +-1.3608271815774731e-07 +-8.2215570562645400e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443270606932e+00 -1.7317365013268238e+00 +1.7317376672870515e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6938122103208478e-01 +-2.6938220562045562e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206203861819826e-07 --6.1334129176894448e-05 +-1.3608271815774728e-07 +-8.3381910630791537e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443610813729e+00 -1.7317585487284382e+00 +1.2247443270606932e+00 +1.7317365009469834e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5976377325039196e-01 +-2.6938122071133058e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443270606932e+00 -1.7317365009469841e+00 +1.7317365009469834e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001905013896432126, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001828813340574841, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.486440021724523 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335258683e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003194595969817352, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003066812131024658, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.200436393073977 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448229966051e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247443270606932e+00 -1.7317365009469841e+00 +1.7317365009469834e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_1(:) = --4.7631213191499233e-04 +-4.7631213191531288e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00275 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.6139210371774139e-04 +-5.6139210371790175e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1086,92 +1086,92 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247443270606932e+00 -1.7317365009469841e+00 +1.7317365009469834e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.6938122071133114e-01 +-2.6938122071133058e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1695668827452925e-07 --5.6121087648193886e-05 +-9.3565350619650132e-08 +-4.4896870118555026e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442101040049e+00 -1.7316803798593359e+00 +1.2247442334953427e+00 +1.7316916040768648e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.9342526570773531e-01 +-2.8861632588338876e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002583333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1695668827452925e-07 --6.1130263689111418e-05 +-1.4034802592947519e-07 +-7.3356275544100700e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442101040049e+00 -1.7316753706832950e+00 +1.2247441867126674e+00 +1.7316631446714392e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.9342110530871401e-01 +-2.9822928850868369e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002749999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.3391337654905851e-07 --1.2225879387863062e-04 +-2.3391337654912529e-07 +-1.2043721444708119e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247440931473168e+00 -1.7316142421531053e+00 +1.7316160637325364e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.1746259855389553e-01 +-3.1746408617650729e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002645833333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7543503241179387e-07 --8.9816337681903363e-05 +-2.3391337654912532e-07 +-1.2225948342342588e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247441516256607e+00 -1.7316466846093022e+00 +1.2247440931473168e+00 +1.7316142414635600e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0544322406377666e-01 +-3.1746259799076681e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247440931473168e+00 -1.7316142414635605e+00 +1.7316142414635600e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002324933765203915, h_cfl = 4.166666666666659e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002231936414595759, h_cfl = 2.08333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.35664739502983 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.185319915370691e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003897395548075038, h_cfl = 4.166666666666659e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003741499726152036, h_cfl = 2.08333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.979599342764903 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.382019849665957e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247440931473168e+00 -1.7316142414635605e+00 +1.7316142414635600e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = --5.6132824811321762e-04 +-5.6132824811340996e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.6125587842809045e-04 +-5.6125587842831943e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1179,91 +1179,91 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00275 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247440931473168e+00 -1.7316142414635605e+00 +1.7316142414635600e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.1746259799076715e-01 +-3.1746259799076681e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.0156984803511302e-08 --3.9682824748845896e-05 +-5.6125587842831948e-08 +-3.1746259799076685e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247440229903319e+00 -1.7315745586388116e+00 +1.2247440370217291e+00 +1.7315824952037608e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.3188566184069873e-01 +-3.2900101515254948e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0029 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.0156984803511302e-08 --4.1485707730087344e-05 +-8.4188381764247922e-08 +-4.9782842916449278e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247440229903319e+00 -1.7315727557558305e+00 +1.2247440089589350e+00 +1.7315644586206436e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.3188420451026790e-01 +-3.3476857885739197e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4031396960702260e-07 --8.2971051127566972e-05 +-1.4031396960707986e-07 +-8.2315439141090950e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439528333472e+00 -1.7315312704124328e+00 +1.7315319260244189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630622922103182e-01 +-3.4630675371055569e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0029375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0523547720526696e-07 --6.1552351970712324e-05 +-1.4031396960707986e-07 +-8.2971189996399597e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247439879118396e+00 -1.7315526891115898e+00 +1.2247439528333472e+00 +1.7315312702735637e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.3909571391256599e-01 +-3.4630622910993658e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439528333472e+00 -1.7315312702735641e+00 +1.7315312702735637e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002121273546461272, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00203642260460282, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.145690418411281 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53635312385524e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003555357986610422, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003413143667146005, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.65257466858402 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.687683867585899e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247439528333472e+00 -1.7315312702735641e+00 +1.7315312702735637e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247439528333472e+00 -1.7315312702735641e+00 +1.7315312702735637e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.217248937900877e-15 + 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out index 00e6054315..a40a0e0e12 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out @@ -32,10 +32,10 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 -4.7406846863098245e-25 +5.3634724626510373e-25 +3.7925477490478599e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -43,373 +43,373 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.6053856682085423e-07 +-5.2843085314525503e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 --3.7785658061256218e-15 +8.0452086939765536e-25 +-4.5342789648207094e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688734e+00 +1.7320508075688728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.6053856310312784e-07 +-7.9264627629798670e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.3408681156627590e-24 --7.5571315697172442e-15 +-6.1831076431280063e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688696e+00 +1.7320508075688710e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.3210771299314208e-06 +-1.3210771313415924e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0056510867470693e-24 --4.2508865157902688e-15 +1.3408681156627590e-24 +-7.5571315914074938e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688730e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9080784746839703e-07 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.3210771301878156e-06 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --6.2224519411136004e-13 +4.4162192000841562e-23 +-4.9779615519247580e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075682477e+00 +1.7320508075683718e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --5.5709046861272483e-05 +-4.4831450867377550e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --2.6239714461655333e-11 +6.6243288001262352e-23 +-3.1487655907296586e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075426302e+00 +1.7320508075373819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --5.5709021244515720e-05 +-6.6586613138314699e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.1040548000210391e-22 --5.2479404791632934e-11 +-4.3163962515237713e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075257057e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009700026513331e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.2804110001577931e-23 --2.9753011668513490e-11 +1.1040548000210391e-22 +-5.2479416853280340e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075391168e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --8.2903012504834220e-05 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --8.5194859796217894e-10 +7.2552968779072471e-22 +-6.8155887836815613e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508066644420e+00 +1.7320508068348315e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0036266807812572e-03 +-8.2492019133151230e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --7.7662280884078046e-09 +1.0882945316860870e-21 +-9.3194673048840092e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507997501624e+00 +1.7320507981969231e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0036197705080342e-03 +-1.1823251541646488e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.8138242194768115e-21 --1.5532349231157368e-08 +-1.3018070613259391e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507919840413e+00 +1.7320507944983197e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8971494422882198e-03 +-1.8971519538126275e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3603681646076087e-21 --9.0564472278026476e-09 +1.8138242194768115e-21 +-1.5532402657424498e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507984599434e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4503863368916410e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.8971494422348200e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --2.9360907931865759e-07 +1.4510593755814492e-20 +-2.3488726345489439e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320504983749085e+00 +1.7320505570967242e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.9769020554131735e-02 +-1.6194434459265345e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --3.0595185570055904e-06 +2.1765890633721739e-20 +-3.6713730832836679e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320477324654309e+00 +1.7320471206109043e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.9766286211624975e-02 +-2.3340435532636403e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.6276484389536231e-20 --6.1181907623552925e-06 +-5.1124415111765749e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320446737932254e+00 +1.7320456795424763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.7638060803422323e-02 +-3.7639044697035690e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7207363292152176e-20 --3.5517453331153056e-06 +3.6276484389536225e-20 +-6.1186089589422689e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320472402386546e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8702874510251369e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.7638060394313270e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.3882737364138767e-07 +3.4583195340771755e-22 +-1.1106189891310941e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320445345476552e+00 +1.7320445623131295e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.8063965878194383e-02 +-3.7978784666888754e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.4039831909200959e-07 +5.1874793011157636e-22 +-1.6847798227675200e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320445329767096e+00 +1.7320445048970463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.8063964341772422e-02 +-3.8149145303113981e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.6457988351929386e-22 --2.8079662684988434e-07 +-2.8022537436888128e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320443925784019e+00 +1.7320443931496541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.8489869720701411e-02 +-3.8489870279259070e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.4843491263947040e-22 --2.1000836986792525e-07 +8.6457988351929386e-22 +-2.8079663238791185e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320444633666590e+00 +1.7320443925783962e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.8276917428533966e-02 +-3.8489869720695770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 @@ -419,34 +419,34 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -5.1083514705106001e-20 --6.4149904805965718e-06 +-6.4149904810406611e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.618808553272737 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.618808553454022 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0007928652556788505 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0007928652557433674 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.9642203176362480e-08 --6.4149904805965718e-06 +-2.9642203176474236e-08 +-6.4149904810406611e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247448417493858e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0003333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --6.8004777869172742e-05 +-6.8004777869429142e-05 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.0006666666666666666 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.3014327206966917e-04 +-1.3014327207015985e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -454,160 +454,160 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448417493858e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.8489884541797879e-02 +-3.8489884541797373e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6006268491234702e-09 --2.8393862631164633e-06 +-7.6805014793277334e-09 +-2.2715090104931405e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448321487588e+00 -1.7320415531921334e+00 +1.2247448340688842e+00 +1.7320421210693857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --4.7008263389618679e-02 +-4.5304542753030710e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6006268491234702e-09 --3.4677842999632225e-06 +-1.1520752218991600e-08 +-4.1613361952172491e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448321487588e+00 -1.7320409247940967e+00 +1.2247448302286337e+00 +1.7320402312422010e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --4.7007652046430641e-02 +-4.8711273297715241e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.9201253698246940e-08 --6.9354784027501833e-06 +-1.9201253698319335e-08 +-6.7069731698017301e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448225481321e+00 -1.7320374570999939e+00 +1.7320376856052264e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.5525979238878413e-02 +-5.5526200418635187e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4400940273685204e-08 --4.9659936003487057e-06 +-1.9201253698319335e-08 +-6.9355222311385134e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448273484456e+00 -1.7320394265847963e+00 +1.2247448225481321e+00 +1.7320374570561650e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1266975514912889e-02 +-5.5525979196454474e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448225481321e+00 -1.7320374570561652e+00 +1.7320374570561650e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157886631954655, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831571166676468, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123693875294 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618612523282e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425275879329, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001659288264844156, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641169203123 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783214733348721e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448225481321e+00 -1.7320374570561652e+00 +1.7320374570561650e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.5525979196454724e-02 +-5.5525979196454474e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2089918495821385e-08 --5.1581964415835813e-06 +-9.6719347966935734e-09 +-4.1265571532668462e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448104582137e+00 -1.7320322988597237e+00 +1.2247448128761973e+00 +1.7320333304990116e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.6252981023261451e-02 +-6.4107513011483916e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2089918495821385e-08 --6.1547026437727703e-06 +-1.4507902195040361e-08 +-7.3856337463044621e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448104582137e+00 -1.7320313023535214e+00 +1.2247448080402299e+00 +1.7320300714224186e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.6252022634728430e-02 +-6.8397333689666273e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4179836991642769e-08 --1.2309227224721896e-05 +-2.4179836991733934e-08 +-1.1946866720338912e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447983682951e+00 -1.7320251478289406e+00 +1.7320255101894446e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --7.6978909351402405e-02 +-7.6979255606960617e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8134877743732075e-08 --8.8582980346159097e-06 +-2.4179836991733934e-08 +-1.2309312691672744e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448044132543e+00 -1.7320285987581305e+00 +1.2247447983682951e+00 +1.7320251477434734e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --7.1615721136348051e-02 +-7.6978909269733733e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447983682951e+00 -1.7320251477434736e+00 +1.7320251477434734e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002154071596762738, h_cfl = 1.857939838695515e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002067908732892228, h_cfl = 9.289699193477576e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.13011675525584 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681769616071643e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003240071749767136, h_cfl = 1.857939838695515e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046887977645, h_cfl = 9.289699193477576e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.74149407313615 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242761669623e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247447983682951e+00 -1.7320251477434736e+00 +1.7320251477434734e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 @@ -616,35 +616,35 @@ Using fixed-point nonlinear solver 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.8986267328609749e-08 --2.5659825403590020e-05 +-2.8986267328443717e-08 +-2.5659825403812064e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.47508400821115 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.47508400830179 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00318668913410324 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.003186689134226742 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.8267597228318949e-08 --2.5659825403590020e-05 +-8.8267597228366833e-08 +-2.5659825403812064e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247447831239917e+00 -1.7320251477434736e+00 +1.7320251477434734e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0006666666666666666 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --1.3599695161688519e-04 +-1.3599695161701340e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = -2.2551123433845044e-04 +2.2551123433815461e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -652,83 +652,83 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447831239917e+00 -1.7320251477434736e+00 +1.7320251477434734e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --7.6978916891885879e-02 +-7.6978916891885629e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.7585205723075047e-08 --1.2829819481980970e-05 +3.0068164578420596e-08 +-1.0263855585584744e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448207091973e+00 -1.7320123179239917e+00 +1.2247448131921563e+00 +1.7320148838878877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --9.6224321887741396e-02 +-9.2375040412244758e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.7585205723075047e-08 --1.6037386981290222e-05 +4.5102246867630891e-08 +-1.9244814258466897e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448207091973e+00 -1.7320091103564923e+00 +1.2247448282262385e+00 +1.7320059029292150e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --9.6221292518436141e-02 +-1.0007007353692364e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.5170411446150093e-08 --3.2073764172812027e-05 +7.5170411446051480e-08 +-3.0907399668478021e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448582944032e+00 -1.7319930739793008e+00 +1.7319942403438049e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546616075861313e-01 +-1.1546724936514303e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6377808584612573e-08 --2.2852869579736191e-05 +7.5170411446051480e-08 +-3.2074239247946858e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448395018004e+00 -1.7320022948738938e+00 +1.2247448582944032e+00 +1.7319930735042255e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0584455776019856e-01 +-1.1546616031520952e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448582944032e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024220627, h_cfl = 3.333333333333331e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001932969832518019, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.798909497554061 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151446454876e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003381055351690125, h_cfl = 3.333333333333331e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581313762252, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.737439412867566 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.774107490330471e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247448582944032e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -738,53 +738,53 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.3097185780404099e-08 --5.7734064651482342e-05 +-5.7734064651704387e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56852920005934 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56852920014998 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00721853154020951 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007218531540241768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0207894393290694e-07 --5.7734064651482342e-05 +-1.0207894393296281e-07 +-5.7734064651704387e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769312645e+00 1.731993073504226e+00 1.687561201890730e-11 1.043609643147647e-14 + 1.000000000000000e-03 1.224744769312645e+00 1.731993073504225e+00 1.687561201890730e-11 1.021405182655144e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --2.0412409446764196e-04 +-2.0412409446777017e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412409446764196e-04 +-2.0412409446777017e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -792,98 +792,98 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620480608726e-01 +-1.1546620480608701e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020682411273627e-08 --1.9244367467681190e-05 +-2.7216545929035996e-08 +-1.5395493974144918e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447352919625e+00 -1.7319738291367581e+00 +1.2247447420960991e+00 +1.7319776780102514e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3471042809526759e-01 +-1.3086140578576311e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020682411273627e-08 --2.2451738015877908e-05 +-4.0824818893553993e-08 +-2.6942041206136401e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447352919625e+00 -1.7319706217662099e+00 +1.2247447284878261e+00 +1.7319661314630193e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3470747018687246e-01 +-1.3855599491180692e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041364822547253e-08 --4.4902490062290774e-05 +-6.8041364822589989e-08 +-4.3736186371223307e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447012712802e+00 -1.7319481710141633e+00 +1.7319493373178543e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.5395094281195390e-01 +-1.5395200544388279e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1031023616910434e-08 --3.2474481149111399e-05 +-6.8041364822589989e-08 +-4.4902941343467170e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447182816213e+00 -1.7319605990230766e+00 +1.2247447012712802e+00 +1.7319481705628821e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4433004649475453e-01 +-1.5395094240078658e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447012712802e+00 -1.7319481705628823e+00 +1.7319481705628821e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002299746961420123, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002207757082963318, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.623271248889962 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852819112485e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003860341588883832, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003705927925328479, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.11778377598545 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469774320306e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247447012712802e+00 -1.7319481705628823e+00 +1.7319481705628821e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -2.0929494246993597e-08 +2.0929494247049474e-08 -4.4902941343405445e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 18.33117208795071 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 18.33117208795072 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.005605053590958301 @@ -895,17 +895,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247446716218264e+00 -1.7319481705628823e+00 +1.7319481705628821e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --2.7212883822533301e-04 +-2.7212883822546122e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.3426730125679313e-04 +-3.3426730125692128e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -913,67 +913,67 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247446716218264e+00 -1.7319481705628823e+00 +1.7319481705628821e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.5395095722551372e-01 +-1.5395095722551350e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5711216876132133e-08 --2.5658492870918927e-05 +-4.4568973500922793e-08 +-2.0526794296735111e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446159106095e+00 -1.7319225120700115e+00 +1.2247446270528530e+00 +1.7319276437685853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7319354609981777e-01 +-1.6934487350356314e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5711216876132133e-08 --2.8865591016636265e-05 +-6.6853460251384183e-08 +-3.4638670514615079e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446159106095e+00 -1.7319193049718657e+00 +1.2247446047683661e+00 +1.7319135318923675e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7319065971148512e-01 +-1.7703883760470662e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1142243375226427e-07 --5.7730219903828313e-05 +-1.1142243375230698e-07 +-5.6564004461511871e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445601993927e+00 -1.7318904403429785e+00 +1.7318916065584207e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9243228400219578e-01 +-1.9243332063783977e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.3566825314198200e-08 --4.2095373969514579e-05 +-1.1142243375230698e-07 +-5.7730647380572311e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445880550012e+00 -1.7319060751889128e+00 +1.2247445601993927e+00 +1.7318904399155015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8281232071260242e-01 +-1.9243228362221632e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -982,10 +982,10 @@ Using fixed-point nonlinear solver 1.7318904399155015e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127280774688737, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042189543701188, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126568631103569 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341067341592e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003569623895663708, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683893983716, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.28051681951149 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645787296775e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247445601993927e+00 @@ -995,23 +995,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --7.6105388819637662e-08 --1.0263358872419914e-04 +-7.6105388819581731e-08 +-1.0263358872397710e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 41.89912728820217 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 41.89912728811153 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.012810580405903 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01281058040587075 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.2437206693643256e-07 --1.0263358872419914e-04 +-2.2437206693637663e-07 +-1.0263358872397710e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = @@ -1026,7 +1026,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = -2.1386952869695882e-05 +2.1386952869185656e-05 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1041,60 +1041,60 @@ Using fixed-point nonlinear solver -1.9243229125162398e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5644921449493123e-09 --3.2072048541937316e-05 +2.8515937158914196e-09 +-2.5657638833549853e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247445485050701e+00 -1.7318583678669597e+00 +1.2247445477921717e+00 +1.7318647822766680e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.1167277744850593e-01 +-2.0782454822363727e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5644921449493123e-09 --3.5278796241417645e-05 +4.2773905738371297e-09 +-4.2334522493328095e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247445485050701e+00 -1.7318551611192601e+00 +1.2247445492179687e+00 +1.7318481053930082e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.1166996263663226e-01 +-2.1551770004854054e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.1289842898986247e-09 --7.0556654212210724e-05 +7.1289842897285506e-09 +-6.9390555396726627e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445520695623e+00 -1.7318198832612892e+00 +1.7318210493601047e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090927031643102e-01 +-2.3091028093511856e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.3467382174239681e-09 --5.1715324399556739e-05 +7.1289842897285497e-09 +-7.0557057874345408e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445502873162e+00 -1.7318387245911020e+00 +1.2247445520695623e+00 +1.7318198828576272e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2129047418052736e-01 +-2.3090926996659072e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1103,10 +1103,10 @@ Using fixed-point nonlinear solver 1.7318198828576272e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127236369311113, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042146914538669, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126440743616008 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983467222143e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356837598914512, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003425640949579315, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27692284873795 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663319968874e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247445520695623e+00 @@ -1116,23 +1116,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693126450e+00 -1.7319930735042257e+00 +1.7319930735042255e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.2827222362248019e-07 --1.7319064659848671e-04 +-1.2827222362242431e-07 +-1.7319064659826466e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70323030012283 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.7032303000322 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02165342185634298 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02165342185631074 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0624655064708818e-07 --1.7319064659848671e-04 +-3.0624655064703233e-07 +-1.7319064659826466e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = @@ -1181,60 +1181,60 @@ Using fixed-point nonlinear solver -2.3090931446832313e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041333309730115e-08 --3.8484885744720509e-05 +-5.4433066647784086e-08 +-3.0787908595776404e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443950247612e+00 -1.7317813979718826e+00 +1.2247444086330277e+00 +1.7317890949490315e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5014733561149305e-01 +-2.4629962223890711e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041333309730115e-08 --4.1691222601915495e-05 +-8.1649599971676130e-08 +-5.0029439836310593e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443950247612e+00 -1.7317781916350252e+00 +1.2247443814164944e+00 +1.7317698534177910e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5014459241217268e-01 +-2.5399181686638711e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3608266661946023e-07 --8.3381530804057535e-05 +-8.2215570575530411e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443269834277e+00 -1.7317365013268231e+00 +1.7317376672870517e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6938122107071688e-01 +-2.6938220565908860e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206199996459517e-07 --6.1334129186558253e-05 +-1.3608266661946023e-07 +-8.3381910643675369e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443610040945e+00 -1.7317585487284406e+00 +1.2247443269834277e+00 +1.7317365009469836e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5976377328903322e-01 +-2.6938122074996357e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1243,10 +1243,10 @@ Using fixed-point nonlinear solver 1.7317365009469836e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127183712206665, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042096363718398, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126289091155196 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753308321081e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003567183771572066, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003424496420709183, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27348926212755 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448202299966e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247443269834277e+00 @@ -1302,60 +1302,60 @@ Using fixed-point nonlinear solver -2.6938123557830701e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.9731846072095748e-08 --4.4896872596384430e-05 +-7.1785476857676601e-08 +-3.5917498077107548e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442075948949e+00 -1.7316916040743873e+00 +1.2247442255412642e+00 +1.7317005834489065e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8861633883154819e-01 +-2.8476923188410830e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.9731846072095748e-08 --4.8102723138591286e-05 +-1.0767821528651490e-07 +-5.7723246192111628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442075948949e+00 -1.7316883982238451e+00 +1.2247441896485258e+00 +1.7316787777007916e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8861366728941101e-01 +-2.9246028821925935e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7946369214419150e-07 --9.6204555763136849e-05 +-1.7946369214419152e-07 +-9.5038761564367891e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247441178630489e+00 -1.7316402963912205e+00 +1.7316414621854193e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0784716406485779e-01 +-3.0784812260651084e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3459776910814362e-07 --7.0951573545935902e-05 +-1.7946369214419150e-07 +-9.6204911771375701e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247441627289719e+00 -1.7316655493734376e+00 +1.2247441178630489e+00 +1.7316402960352122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.9823129106051893e-01 +-3.0784716377213983e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1364,10 +1364,10 @@ Using fixed-point nonlinear solver 1.7316402960352122e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127119983291906, h_cfl = 3.333333333333328e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204203518396023, h_cfl = 1.666666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1261055518807 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.854673527563141e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003566054731129575, h_cfl = 3.333333333333328e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003423412541884392, h_cfl = 1.666666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27023762565319 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.794076539327454e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247441178630489e+00 @@ -1423,76 +1423,76 @@ Using fixed-point nonlinear solver -3.0784717140879586e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0456208668014637e-08 --5.1307861901465958e-05 +-2.4364966934411707e-08 +-4.1046289521172769e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247440721335288e+00 -1.7315889881733106e+00 +1.2247440782247705e+00 +1.7315992497456911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.2707888835270321e-01 +-3.2323248151992107e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0456208668014637e-08 --5.4513148058783852e-05 +-3.6547450401617563e-08 +-6.5415761809540455e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247440721335288e+00 -1.7315857828871535e+00 +1.2247440660422870e+00 +1.7315748802734026e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.2707628850945208e-01 +-3.3092221223101836e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.0912417336029273e-08 --1.0902542950315065e-04 +-6.0912417336029286e-08 +-1.0785982972128059e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247440416773201e+00 -1.7315312706057091e+00 +1.7315324362054909e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630618495366805e-01 +-3.4630711743327469e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5684313002021952e-08 --8.0567433762313614e-05 +-6.0912417336029273e-08 +-1.0902576167146413e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440569054244e+00 -1.7315597286014499e+00 +1.2247440416773201e+00 +1.7315312702735408e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.3669212094406925e-01 +-3.4630618468793334e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247440416773201e+00 -1.7315312702735406e+00 +1.7315312702735408e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127045935429419, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002041964098012242, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.125892294036728 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748234790955e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003564986349844385, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003422386895850609, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.26716068755183 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.797515668534437e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247440416773201e+00 -1.7315312702735406e+00 +1.7315312702735408e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -1502,39 +1502,39 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -2.4344713870768440e-07 --2.8861258408663382e-04 +-2.8861258408641177e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347848203848 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347848202942 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03608300450075731 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03608300450074117 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1041389615648809e-07 --2.8861258408663382e-04 +-5.1041389615646014e-07 +-2.8861258408641177e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247439526521982e+00 -1.7315312702735406e+00 +1.7315312702735408e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247439526521982e+00 -1.7315312702735406e+00 +1.7315312702735408e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247439526521982e+00 -1.7315312702735406e+00 +1.7315312702735408e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.975397705995420e-14 + 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out index 48de1d1887..7294ecfb14 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out @@ -33,10 +33,10 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 -4.7406846863098245e-25 +5.3634724626510373e-25 +3.7925477490478599e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -44,373 +44,373 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.6053856682085423e-07 +-5.2843085314525503e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 --3.7785658061256218e-15 +8.0452086939765536e-25 +-4.5342789648207094e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688734e+00 +1.7320508075688728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.6053856310312784e-07 +-7.9264627629798670e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.3408681156627590e-24 --7.5571315697172442e-15 +-6.1831076431280063e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688696e+00 +1.7320508075688710e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.3210771299314208e-06 +-1.3210771313415924e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0056510867470693e-24 --4.2508865157902688e-15 +1.3408681156627590e-24 +-7.5571315914074938e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688730e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9080784746839703e-07 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.3210771301878156e-06 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --6.2224519411136004e-13 +4.4162192000841562e-23 +-4.9779615519247580e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075682477e+00 +1.7320508075683718e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --5.5709046861272483e-05 +-4.4831450867377550e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --2.6239714461655333e-11 +6.6243288001262352e-23 +-3.1487655907296586e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075426302e+00 +1.7320508075373819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --5.5709021244515720e-05 +-6.6586613138314699e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.1040548000210391e-22 --5.2479404791632934e-11 +-4.3163962515237713e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075257057e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009700026513331e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.2804110001577931e-23 --2.9753011668513490e-11 +1.1040548000210391e-22 +-5.2479416853280340e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075391168e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --8.2903012504834220e-05 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --8.5194859796217894e-10 +7.2552968779072471e-22 +-6.8155887836815613e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508066644420e+00 +1.7320508068348315e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0036266807812572e-03 +-8.2492019133151230e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --7.7662280884078046e-09 +1.0882945316860870e-21 +-9.3194673048840092e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507997501624e+00 +1.7320507981969231e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0036197705080342e-03 +-1.1823251541646488e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.8138242194768115e-21 --1.5532349231157368e-08 +-1.3018070613259391e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507919840413e+00 +1.7320507944983197e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8971494422882198e-03 +-1.8971519538126275e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3603681646076087e-21 --9.0564472278026476e-09 +1.8138242194768115e-21 +-1.5532402657424498e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507984599434e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4503863368916410e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.8971494422348200e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --2.9360907931865759e-07 +1.4510593755814492e-20 +-2.3488726345489439e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320504983749085e+00 +1.7320505570967242e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.9769020554131735e-02 +-1.6194434459265345e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --3.0595185570055904e-06 +2.1765890633721739e-20 +-3.6713730832836679e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320477324654309e+00 +1.7320471206109043e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.9766286211624975e-02 +-2.3340435532636403e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.6276484389536231e-20 --6.1181907623552925e-06 +-5.1124415111765749e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320446737932254e+00 +1.7320456795424763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.7638060803422323e-02 +-3.7639044697035690e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7207363292152176e-20 --3.5517453331153056e-06 +3.6276484389536225e-20 +-6.1186089589422689e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320472402386546e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8702874510251369e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.7638060394313270e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.3882737364138767e-07 +3.4583195340771755e-22 +-1.1106189891310941e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320445345476552e+00 +1.7320445623131295e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.8063965878194383e-02 +-3.7978784666888754e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.4039831909200959e-07 +5.1874793011157636e-22 +-1.6847798227675200e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320445329767096e+00 +1.7320445048970463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.8063964341772422e-02 +-3.8149145303113981e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.6457988351929386e-22 --2.8079662684988434e-07 +-2.8022537436888128e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320443925784019e+00 +1.7320443931496541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.8489869720701411e-02 +-3.8489870279259070e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.4843491263947040e-22 --2.1000836986792525e-07 +8.6457988351929386e-22 +-2.8079663238791185e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320444633666590e+00 +1.7320443925783962e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.8276917428533966e-02 +-3.8489869720695770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 @@ -420,47 +420,47 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -5.1083514705106001e-20 --6.4149904805965718e-06 +-6.4149904810406611e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.618808553272737, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.618808553454022, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3.703554573296969, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3.703554573553344, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.00112125978322437 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.001121259783301988 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.161068318927283e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.56118489021115e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.161068318927283e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.618813609683919 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.56118489021115e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.618813609865203 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.232026095373332e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.232122958362191e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.9641005420688385e-08 --6.4149904805965718e-06 +-2.9641005420783362e-08 +-6.4149904810406602e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247448417505835e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0003333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --6.8004780264424220e-05 +-6.8004780264680620e-05 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.0006666666666666666 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.3014327665355097e-04 +-1.3014327665404165e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -468,160 +468,160 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448417505835e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.8489884541199053e-02 +-3.8489884541198546e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6006271872749394e-09 --2.8393862630722880e-06 +-7.6805017498489091e-09 +-2.2715090104578006e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448321499563e+00 -1.7320415531921336e+00 +1.2247448340700817e+00 +1.7320421210693857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --4.7008263389020068e-02 +-4.5304542752431974e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6006271872749394e-09 --3.4677842999190633e-06 +-1.1520752624773364e-08 +-4.1613361951642486e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448321499563e+00 -1.7320409247940967e+00 +1.2247448302298309e+00 +1.7320402312422010e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --4.7007652045831905e-02 +-4.8711273297116588e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.9201254374549879e-08 --6.9354784026618463e-06 +-1.9201254374622274e-08 +-6.7069731697133981e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448225493291e+00 -1.7320374570999939e+00 +1.7320376856052264e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.5525979238279899e-02 +-5.5526200418036673e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4400940780912409e-08 --4.9659936002824534e-06 +-1.9201254374622274e-08 +-6.9355222310501831e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448273496426e+00 -1.7320394265847963e+00 +1.2247448225493291e+00 +1.7320374570561652e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1266975514314382e-02 +-5.5525979195856209e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448225493291e+00 -1.7320374570561654e+00 +1.7320374570561652e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157886397593916, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831570941690159, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123541382885 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618889148138e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425165156731, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001659288158550462, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641097158821 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783216980925674e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448225493291e+00 -1.7320374570561654e+00 +1.7320374570561652e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.5525979195856459e-02 +-5.5525979195856209e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2089918921650215e-08 --5.1581964415280040e-06 +-9.6719351373566375e-09 +-4.1265571532223846e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448104594103e+00 -1.7320322988597239e+00 +1.2247448128773941e+00 +1.7320333304990119e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.6252981022663249e-02 +-6.4107513010885603e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2089918921650215e-08 --6.1547026437171990e-06 +-1.4507902706034958e-08 +-7.3856337462377633e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448104594103e+00 -1.7320313023535217e+00 +1.2247448080414265e+00 +1.7320300714224190e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.6252022634130353e-02 +-6.8397333689068446e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4179837843300430e-08 --1.2309227224610777e-05 +-2.4179837843391595e-08 +-1.1946866720227835e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447983694912e+00 -1.7320251478289408e+00 +1.7320255101894451e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --7.6978909350804536e-02 +-7.6979255606363012e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8134878382475323e-08 --8.8582980345325599e-06 +-2.4179837843391595e-08 +-1.2309312691561636e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448044144507e+00 -1.7320285987581310e+00 +1.2247447983694912e+00 +1.7320251477434736e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --7.1615721135750349e-02 +-7.6978909269135878e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447983694912e+00 -1.7320251477434738e+00 +1.7320251477434736e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002154071501057282, h_cfl = 1.857939838695515e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002067908641014991, h_cfl = 9.289699193477576e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.13011626074447 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681770943876267e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003240071989755903, h_cfl = 1.857939838695515e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003110469110165667, h_cfl = 9.289699193477576e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.74149531316132 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242312152432e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247447983694912e+00 -1.7320251477434738e+00 +1.7320251477434736e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 @@ -630,48 +630,48 @@ Using GMRES iterative linear solver 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.8985069623259161e-08 --2.5659825403367975e-05 +-2.8985069623093129e-08 +-2.5659825403590020e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.4750840049673, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.47508400505794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.81400586682223, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.81400586695041, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.00450658843870752 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004506588438746522 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.098125567835629e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.261664520803773e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.098125567835629e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47509900841071 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.261664520803773e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47509900850135 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.162702708411542e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.162703179451021e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.8261555664408316e-08 --2.5659825403367982e-05 +-8.8261555664290010e-08 +-2.5659825403590020e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247447831300333e+00 -1.7320251477434738e+00 +1.7320251477434736e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0006666666666666666 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --1.3599696369928014e-04 +-1.3599696369940835e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = -2.2551126401543000e-04 +2.2551126401513418e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -679,83 +679,83 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447831300333e+00 -1.7320251477434738e+00 +1.7320251477434736e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --7.6978916888865337e-02 +-7.6978916888865073e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.7585210669238306e-08 --1.2829819481477548e-05 +3.0068168535351209e-08 +-1.0263855585182004e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448207152440e+00 -1.7320123179239924e+00 +1.2247448131982019e+00 +1.7320148838878884e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --9.6224321884718605e-02 +-9.2375040409222703e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.7585210669238306e-08 --1.6037386980786424e-05 +4.5102252803026810e-08 +-1.9244814257862410e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448207152440e+00 -1.7320091103564930e+00 +1.2247448282322861e+00 +1.7320059029292156e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --9.6221292515413379e-02 +-1.0007007353390057e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.5170421338476612e-08 --3.2073764171804437e-05 +7.5170421338378012e-08 +-3.0907399667470574e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448583004548e+00 -1.7319930739793019e+00 +1.7319942403438062e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546616075558840e-01 +-1.1546724936211840e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6377816003857465e-08 --2.2852869578980634e-05 +7.5170421338378012e-08 +-3.2074239246939336e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448395078493e+00 -1.7320022948738949e+00 +1.2247448583004548e+00 +1.7319930735042266e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0584455775717518e-01 +-1.1546616031218478e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448583004548e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024912287, h_cfl = 3.333333333333331e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001932969839157955, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.798909517473869 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851514752241806e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003381055253341324, h_cfl = 3.333333333333331e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003245813043207672, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.737439129623022 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.774107486872622e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247448583004548e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -765,66 +765,66 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.3091134176741472e-08 --5.7734064650372119e-05 +-5.7734064650594163e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56852919194102, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56852919203166, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093362842919, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093362855737, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01020836739073424 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0102083673907735 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.355663625576664e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.494355680485315e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.355663625576664e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854611856336 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.494355680485315e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854611865401 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.159124529421133e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.159124413361278e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0206180734277936e-07 --5.7734064650372139e-05 +-1.0206180734282741e-07 +-5.7734064650594177e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.154631945610163e-14 + 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.132427485117660e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --2.0412412873733736e-04 +-2.0412412873740146e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412412873733736e-04 +-2.0412412873740146e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -832,133 +832,133 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620479751994e-01 +-1.1546620479751983e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020688122889522e-08 --1.9244367466253305e-05 +-2.7216550498320167e-08 +-1.5395493973002629e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447353090934e+00 -1.7319738291367606e+00 +1.2247447421132309e+00 +1.7319776780102536e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3471042808670436e-01 +-1.3086140577719915e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020688122889522e-08 --2.2451738014450705e-05 +-4.0824825747480249e-08 +-2.6942041204423771e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447353090934e+00 -1.7319706217662123e+00 +1.2247447285049557e+00 +1.7319661314630221e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3470747017830922e-01 +-1.3855599490324469e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041376245779045e-08 --4.4902490059436361e-05 +-6.8041376245800419e-08 +-4.3736186368368718e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447012884052e+00 -1.7319481710141673e+00 +1.7319493373178583e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.5395094280339505e-01 +-1.5395200543532406e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1031032184334287e-08 --3.2474481146970330e-05 +-6.8041376245800419e-08 +-4.4902941340612818e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447182987492e+00 -1.7319605990230797e+00 +1.2247447012884052e+00 +1.7319481705628861e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4433004648619341e-01 +-1.5395094239222773e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447012884052e+00 -1.7319481705628863e+00 +1.7319481705628861e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002299746951253171, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002207757073203045, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.623271219609141 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852796981838e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003860341633827137, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003705927968474051, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.11778390542216 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469746657e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247447012884052e+00 -1.7319481705628863e+00 +1.7319481705628861e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -2.0929497637687065e-08 +2.0929497637715004e-08 -4.4902941340518865e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 18.33117208679076, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 18.33117208679077, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 25.9241921793346, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 25.92419217933461, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.007926620801967321 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.007926620802385322 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.96020189895167e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.394322923365522e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.96020189895167e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.3311884590036 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.394322923365522e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.33118845900361 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.923065181149995e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.92303726031012e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --9.7682254961199432e-08 --4.4902941340518851e-05 +-9.7682254961711026e-08 +-4.4902941340518872e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247446716475265e+00 -1.7319481705628863e+00 +1.7319481705628861e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --2.7212888961780846e-04 +-2.7212888961793667e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.3426736829498941e-04 +-3.3426736829517622e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -966,133 +966,133 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247446716475265e+00 -1.7319481705628863e+00 +1.7319481705628861e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.5395095721266730e-01 +-1.5395095721266708e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5711228049164844e-08 --2.5658492868777858e-05 +-4.4568982439356785e-08 +-2.0526794295022258e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446159362985e+00 -1.7319225120700175e+00 +1.2247446270785440e+00 +1.7319276437685911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7319354608697871e-01 +-1.6934487349072289e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5711228049164844e-08 --2.8865591014496422e-05 +-6.6853473659035181e-08 +-3.4638670512047336e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446159362985e+00 -1.7319193049718717e+00 +1.2247446047940529e+00 +1.7319135318923740e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7319065969864589e-01 +-1.7703883759186895e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1142245609832969e-07 --5.7730219899548574e-05 +-1.1142245609839196e-07 +-5.6564004457231672e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445602250704e+00 -1.7318904403429867e+00 +1.7318916065584289e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9243228398936435e-01 +-1.9243332062500820e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.3566842073747260e-08 --4.2095373966304324e-05 +-1.1142245609839196e-07 +-5.7730647376292640e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445880806844e+00 -1.7319060751889199e+00 +1.2247445602250704e+00 +1.7318904399155097e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8281232069976711e-01 +-1.9243228360938477e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445602250704e+00 -1.7318904399155099e+00 +1.7318904399155097e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127280769804621, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042189539012436, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126568617037314 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341067341581e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003569623875944321, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003426838920906548, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.28051676271965 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645828792804e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247445602250704e+00 -1.7318904399155099e+00 +1.7318904399155097e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --7.6096821626861300e-08 +-7.6096821626791896e-08 -1.0263358871687167e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 41.8991272714572, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 41.89912727145721, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 59.25431403889118, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 59.2543140388912, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01811631882340358 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01811631882435978 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.767859298135969e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.427179818558752e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.767859298135969e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 41.89916487967248 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.427179818558752e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 41.8991648796725 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.734177522130014e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.734170929715859e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.2434355129501485e-07 --1.0263358871687166e-04 +-2.2434355129614326e-07 +-1.0263358871687168e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247445449862302e+00 -1.7318904399155099e+00 +1.7318904399155097e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001666666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.4012104436553081e-04 +-3.4012104436565902e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = -2.1387043260750549e-05 +2.1387043260708049e-05 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1100,152 +1100,152 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247445449862302e+00 -1.7318904399155099e+00 +1.7318904399155097e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9243229122880540e-01 +-1.9243229122880515e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5645072101250903e-09 --3.2072048538134219e-05 +2.8516057680944056e-09 +-2.5657638830507345e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247445485507373e+00 -1.7318583678669719e+00 +1.2247445478378360e+00 +1.7318647822766793e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.1167277742568300e-01 +-2.0782454820081503e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5645072101250903e-09 --3.5278796237613817e-05 +4.2774086521416082e-09 +-4.2334522488763482e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247445485507373e+00 -1.7318551611192723e+00 +1.2247445492636388e+00 +1.7318481053930210e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.1166996261380933e-01 +-2.1551770002571669e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.1290144202501806e-09 --7.0556654204603081e-05 +7.1290144202360151e-09 +-6.9390555389119228e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445521152447e+00 -1.7318198832613054e+00 +1.7318210493601207e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090927029360395e-01 +-2.3091028091229127e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.3467608151876354e-09 --5.1715324393851288e-05 +7.1290144202360135e-09 +-7.0557057866737710e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445503329910e+00 -1.7318387245911162e+00 +1.2247445521152447e+00 +1.7318198828576430e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2129047415770239e-01 +-2.3090926994376310e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445521152447e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127236364007833, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042146909447519, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12644072834256 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983533617987e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003568376023515923, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003425640982575286, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27692294772586 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663313052637e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247445521152447e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693297815e+00 -1.7319930735042268e+00 +1.7319930735042266e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.2824366285310272e-07 +-1.2824366285307477e-07 -1.7319064658360972e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70323025789027, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70323025789028, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946713429621, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946713429622, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0306210098787736 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03062100988038579 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.142537668128806e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.052242434539098e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.142537668128806e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328103277684 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.052242434539098e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328103277686 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884719277568e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073883596683003e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0618350816911757e-07 +-3.0618350817109004e-07 -1.7319064658360969e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.398081733190338e-14 + 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.375877272697835e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --4.0824816018169901e-04 +-4.0824816018182722e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.002333333333333334 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824816018169885e-04 +-4.0824816018182706e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1253,92 +1253,92 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931442824741e-01 +-2.3090931442824719e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041360030283111e-08 --3.8484885738041220e-05 +-5.4433088024243588e-08 +-3.0787908590432948e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443951049133e+00 -1.7317813979719052e+00 +1.2247444087131854e+00 +1.7317890949490526e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5014733557143637e-01 +-2.4629962219884646e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041360030283111e-08 --4.1691222595239378e-05 +-8.1649632036365383e-08 +-5.0029439828299241e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443951049133e+00 -1.7317781916350479e+00 +1.2247443814966414e+00 +1.7317698534178148e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5014459237211584e-01 +-2.5399181682633387e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3608272006056622e-07 --8.3381530790705246e-05 +-1.3608272006060900e-07 +-8.2215570562176903e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443270635534e+00 -1.7317365013268524e+00 +1.7317376672870808e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6938122103067885e-01 +-2.6938220561905024e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206204004542467e-07 --6.1334129176542881e-05 +-1.3608272006060897e-07 +-8.3381910630323026e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443610842332e+00 -1.7317585487284666e+00 +1.2247443270635534e+00 +1.7317365009470127e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5976377324898597e-01 +-2.6938122070992526e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443270635534e+00 -1.7317365009470129e+00 +1.7317365009470127e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127183706742662, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042096358472956, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126289075418868 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753396852466e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003567183751145517, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003424496401099696, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27348920329909 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448223049503e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247443270635534e+00 -1.7317365009470129e+00 +1.7317365009470127e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -4.1858985509180174e-08 +4.1858985509236052e-08 -8.3381910630286882e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1349,37 +1349,37 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 48.14435875066259, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0147300815422269 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01473008154222755 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.475993886304119e-19 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.419550203029483e-18 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.475993886304119e-19 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.419550203029483e-18 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.04323020408164 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.451037074099789e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.451037069515462e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.6572327087728307e-07 +-1.6572327087728386e-07 -8.3381910630286882e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247442974230025e+00 -1.7317365009470129e+00 +1.7317365009470127e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002333333333333334 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --4.7625286804467356e-04 +-4.7625286804480176e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.3839129827779704e-04 +-5.3839129827792519e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1387,92 +1387,92 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247442974230025e+00 -1.7317365009470129e+00 +1.7317365009470127e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.6938123553020099e-01 +-2.6938123553020082e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.9731883046299362e-08 --4.4896872588366755e-05 +-7.1785506437056573e-08 +-3.5917498070693388e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442076911195e+00 -1.7316916040744246e+00 +1.2247442256374961e+00 +1.7317005834489421e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8861633878346699e-01 +-2.8476923183602199e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.9731883046299362e-08 --4.8102723130577751e-05 +-1.0767825965558486e-07 +-5.7723246182495358e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442076911195e+00 -1.7316883982238824e+00 +1.2247441897447429e+00 +1.7316787777008302e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8861366724132981e-01 +-2.9246028817118286e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7946376609259872e-07 --9.6204555747109779e-05 +-1.7946376609264147e-07 +-9.5038761548339249e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247441179592364e+00 -1.7316402963912658e+00 +1.7316414621854643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0784716401680123e-01 +-3.0784812255845406e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3459782456944902e-07 --7.0951573533914052e-05 +-1.7946376609264142e-07 +-9.6204911755348564e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247441628251778e+00 -1.7316655493734789e+00 +1.2247441179592364e+00 +1.7316402960352573e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.9823129101245016e-01 +-3.0784716372408316e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247441179592364e+00 -1.7316402960352575e+00 +1.7316402960352573e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997753779, h_cfl = 3.333333333333328e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042035178436279, h_cfl = 1.666666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126105535308846 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467361609875e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003566054733307913, h_cfl = 3.333333333333328e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003423412543975597, h_cfl = 1.666666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27023763192681 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.794076553161126e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247441179592364e+00 -1.7316402960352575e+00 +1.7316402960352573e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.2320835026909067e-07 +-1.2320835026903476e-07 -1.7958682238572443e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1483,37 +1483,37 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 103.6926707248469, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03172118985328261 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03172118985328404 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.528691940896443e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.528326328881616e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.528691940896443e-14 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.528326328881616e-14 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.32185080179332 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.155370726632578e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.155370725624026e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.6042450720410523e-07 +-3.6042450720410697e-07 -1.7958682238572449e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247441027217663e+00 -1.7316402960352575e+00 +1.7316402960352573e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002666666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --5.4424496159413780e-04 +-5.4424496159426606e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.8273718840660529e-04 +-1.8273718840673366e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1521,67 +1521,67 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247441027217663e+00 -1.7316402960352575e+00 +1.7316402960352573e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.0784717134281880e-01 +-3.0784717134281858e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0456198067767541e-08 --5.1307861890469783e-05 +-2.4364958454231146e-08 +-4.1046289512375797e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247440722655683e+00 -1.7315889881733670e+00 +1.2247440783568078e+00 +1.7315992497457449e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.2707888828672921e-01 +-3.2323248145394612e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0456198067767541e-08 --5.4513148047788179e-05 +-3.6547437681346718e-08 +-6.5415761796345579e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247440722655683e+00 -1.7315857828872097e+00 +1.2247440661743285e+00 +1.7315748802734610e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.2707628844347791e-01 +-3.3092221216504497e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.0912396135535082e-08 --1.0902542948115926e-04 +-6.0912396135577871e-08 +-1.0785982969928906e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247440418093700e+00 -1.7315312706057764e+00 +1.7315324362055580e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630618488769682e-01 +-3.4630711736730335e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5684297101651305e-08 --8.0567433745819931e-05 +-6.0912396135577871e-08 +-1.0902576164947273e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440570374692e+00 -1.7315597286015116e+00 +1.2247440418093700e+00 +1.7315312702736079e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.3669212087809663e-01 +-3.4630618462196200e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1590,10 +1590,10 @@ Using GMRES iterative linear solver 1.7315312702736079e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127045936851595, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002041964099377531, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.125892298132595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748234790828e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003564986361000701, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003422386906560672, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.26716071968202 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751564086545e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247440418093700e+00 @@ -1603,36 +1603,36 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631462734e+00 -1.7318198828576432e+00 +1.7318198828576430e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.4339519787613935e-07 --2.8861258403534151e-04 +-2.4339519787608344e-07 +-2.8861258403511947e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347847337331, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347847336424, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435506897594, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435506896312, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05102477837646521 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05102477837373687 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.409058797851785e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.559886651444443e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.409058797851785e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348693449266 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.559886651444443e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.834869344836 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999452862407404e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999454757690655e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1030245465525719e-07 --2.8861258403534151e-04 +-5.1030245465191829e-07 +-2.8861258403511941e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out index 14421fb266..471ca6a6ac 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out @@ -33,10 +33,10 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 -4.7406846863098245e-25 +5.3634724626510373e-25 +3.7925477490478599e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -44,373 +44,373 @@ Using dense direct linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.6053856682085423e-07 +-5.2843085314525503e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.7043405783137950e-25 --3.7785658061256218e-15 +8.0452086939765536e-25 +-4.5342789648207094e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688734e+00 +1.7320508075688728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.6053856310312784e-07 +-7.9264627629798670e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.3408681156627590e-24 --7.5571315697172442e-15 +-6.1831076431280063e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688696e+00 +1.7320508075688710e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.3210771299314208e-06 +-1.3210771313415924e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0056510867470693e-24 --4.2508865157902688e-15 +1.3408681156627590e-24 +-7.5571315914074938e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688730e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9080784746839703e-07 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.3210771301878156e-06 +-1.3210771299314208e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --6.2224519411136004e-13 +4.4162192000841562e-23 +-4.9779615519247580e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075682477e+00 +1.7320508075683718e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --5.5709046861272483e-05 +-4.4831450867377550e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.5202740001051954e-23 --2.6239714461655333e-11 +6.6243288001262352e-23 +-3.1487655907296586e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075426302e+00 +1.7320508075373819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --5.5709021244515720e-05 +-6.6586613138314699e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.1040548000210391e-22 --5.2479404791632934e-11 +-4.3163962515237713e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075257057e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009700026513331e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.2804110001577931e-23 --2.9753011668513490e-11 +1.1040548000210391e-22 +-5.2479416853280340e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075391168e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --8.2903012504834220e-05 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075163905e+00 +1.7320508075163903e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1009699095050957e-04 +-1.1009699095025319e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --8.5194859796217894e-10 +7.2552968779072471e-22 +-6.8155887836815613e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508066644420e+00 +1.7320508068348315e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0036266807812572e-03 +-8.2492019133151230e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.0691210973840574e-22 --7.7662280884078046e-09 +1.0882945316860870e-21 +-9.3194673048840092e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507997501624e+00 +1.7320507981969231e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0036197705080342e-03 +-1.1823251541646488e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.8138242194768115e-21 --1.5532349231157368e-08 +-1.3018070613259391e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507919840413e+00 +1.7320507944983197e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8971494422882198e-03 +-1.8971519538126275e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3603681646076087e-21 --9.0564472278026476e-09 +1.8138242194768115e-21 +-1.5532402657424498e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507984599434e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4503863368916410e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320507919839878e+00 +1.7320507919839876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.8971494422348200e-03 +-1.8971494422345640e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --2.9360907931865759e-07 +1.4510593755814492e-20 +-2.3488726345489439e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320504983749085e+00 +1.7320505570967242e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.9769020554131735e-02 +-1.6194434459265345e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8138242194768116e-20 --3.0595185570055904e-06 +2.1765890633721739e-20 +-3.6713730832836679e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320477324654309e+00 +1.7320471206109043e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.9766286211624975e-02 +-2.3340435532636403e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.6276484389536231e-20 --6.1181907623552925e-06 +-5.1124415111765749e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320446737932254e+00 +1.7320456795424763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.7638060803422323e-02 +-3.7639044697035690e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7207363292152176e-20 --3.5517453331153056e-06 +3.6276484389536225e-20 +-6.1186089589422689e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320472402386546e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8702874510251369e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320446733750288e+00 +1.7320446733750285e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.7638060394313270e-02 +-3.7638060394313021e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.3882737364138767e-07 +3.4583195340771755e-22 +-1.1106189891310941e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320445345476552e+00 +1.7320445623131295e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.8063965878194383e-02 +-3.7978784666888754e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.3228994175964693e-22 --1.4039831909200959e-07 +5.1874793011157636e-22 +-1.6847798227675200e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320445329767096e+00 +1.7320445048970463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.8063964341772422e-02 +-3.8149145303113981e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.6457988351929386e-22 --2.8079662684988434e-07 +-2.8022537436888128e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320443925784019e+00 +1.7320443931496541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.8489869720701411e-02 +-3.8489870279259070e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.4843491263947040e-22 --2.1000836986792525e-07 +8.6457988351929386e-22 +-2.8079663238791185e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320444633666590e+00 +1.7320443925783962e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.8276917428533966e-02 +-3.8489869720695770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247448713915889e+00 -1.7320443925783966e+00 +1.7320443925783962e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 @@ -420,38 +420,38 @@ Using dense direct linear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -5.1083514705106001e-20 --6.4149904805965718e-06 +-6.4149904810406611e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.617700682819475 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.617700683000682 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001112474382861515 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001112474382938587 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.9641006763474470e-08 --6.4149893193238363e-06 +-2.9641006763558339e-08 +-6.4149893197679246e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247448417505822e+00 -1.7320443925795579e+00 +1.7320443925795574e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0003333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --6.8004779681096115e-05 +-6.8004779681288412e-05 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.0006666666666666666 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.3014327553721429e-04 +-1.3014327553758230e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -459,160 +459,160 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448417505822e+00 -1.7320443925795579e+00 +1.7320443925795574e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.8489884542335137e-02 +-3.8489884542334762e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6006271049231454e-09 --2.8393862631560964e-06 +-7.6805016839602344e-09 +-2.2715090105248551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448321499550e+00 -1.7320415531932947e+00 +1.2247448340700804e+00 +1.7320421210705470e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --4.7008263390150323e-02 +-4.5304542753563624e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6006271049231454e-09 --3.4677843000024419e-06 +-1.1520752525940352e-08 +-4.1613361952643255e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448321499550e+00 -1.7320409247952580e+00 +1.2247448302298296e+00 +1.7320402312433623e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --4.7007652046962285e-02 +-4.8711273298245955e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.9201254209846291e-08 --6.9354784028286211e-06 +-1.9201254209900587e-08 +-6.7069731698803458e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448225493280e+00 -1.7320374571011550e+00 +1.7320376856063875e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.5525979239404187e-02 +-5.5526200419161093e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4400940657384719e-08 --4.9659936004076906e-06 +-1.9201254209900587e-08 +-6.9355222312169690e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448273496415e+00 -1.7320394265859576e+00 +1.2247448225493280e+00 +1.7320374570573263e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1266975515441897e-02 +-5.5525979196980622e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448225493280e+00 -1.7320374570573265e+00 +1.7320374570573263e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157885905437562, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831570469220059, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123221149604 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861619470059087e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425182191198, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928817490355, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641108242704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783216635140057e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448225493280e+00 -1.7320374570573265e+00 +1.7320374570573263e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.5525979196980872e-02 +-5.5525979196980622e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2089918817945895e-08 --5.1581964416324585e-06 +-9.6719350543840660e-09 +-4.1265571533059486e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448104594092e+00 -1.7320322988608849e+00 +1.2247448128773930e+00 +1.7320333305001729e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.6252981023780522e-02 +-6.4107513012004277e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2089918817945895e-08 --6.1547026438209902e-06 +-1.4507902581576099e-08 +-7.3856337463623085e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448104594092e+00 -1.7320313023546827e+00 +1.2247448080414254e+00 +1.7320300714235799e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.6252022635247612e-02 +-6.8397333690184026e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4179837635891790e-08 --1.2309227224818356e-05 +-2.4179837635960165e-08 +-1.1946866720435616e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447983694904e+00 -1.7320251478301016e+00 +1.7320255101906059e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --7.6978909351914260e-02 +-7.6979255607472707e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8134878226918844e-08 --8.8582980346884970e-06 +-2.4179837635960165e-08 +-1.2309312691769186e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448044144498e+00 -1.7320285987592918e+00 +1.2247447983694904e+00 +1.7320251477446345e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --7.1615721136863597e-02 +-7.6978909270245588e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447983694904e+00 -1.7320251477446347e+00 +1.7320251477446345e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002154071651456697, h_cfl = 1.857939838695515e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002067908785398429, h_cfl = 9.289699193477576e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.13011703786026 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681769782044082e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00324007195283482, h_cfl = 1.857939838695515e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003110469074721427, h_cfl = 9.289699193477576e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.74149512238959 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242381307778e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247447983694904e+00 -1.7320251477446347e+00 +1.7320251477446345e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 @@ -621,39 +621,39 @@ Using dense direct linear solver 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.8985070889176265e-08 --2.5659824242518781e-05 +-2.8985070889051744e-08 +-2.5659824242740825e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47064411639136 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47064411648196 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004452567171048158 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004452567171086871 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.8261593085000358e-08 --2.5659819594634788e-05 +-8.8261593084931721e-08 +-2.5659819594856832e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247447831299958e+00 -1.7320251477492825e+00 +1.7320251477492823e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0006666666666666666 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --1.3599696071986899e-04 +-1.3599696071999720e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = -2.2551125667799669e-04 +2.2551125667787038e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -661,83 +661,83 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447831299958e+00 -1.7320251477492825e+00 +1.7320251477492823e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --7.6978916894434646e-02 +-7.6978916894434410e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.7585209446332754e-08 --1.2829819482405766e-05 +3.0068167557049370e-08 +-1.0263855585924582e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448207152052e+00 -1.7320123179298001e+00 +1.2247448131981633e+00 +1.7320148838936964e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --9.6224321890223133e-02 +-9.2375040414740234e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.7585209446332754e-08 --1.6037386981703845e-05 +4.5102251335574045e-08 +-1.9244814258963330e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448207152052e+00 -1.7320091103623008e+00 +1.2247448282322471e+00 +1.7320059029350234e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --9.6221292520917906e-02 +-1.0007007353939232e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.5170418892665509e-08 --3.2073764173639280e-05 +7.5170418892623409e-08 +-3.0907399669309394e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448583004148e+00 -1.7319930739851088e+00 +1.7319942403496129e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546616076102816e-01 +-1.1546724936755803e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6377814169499138e-08 --2.2852869580360814e-05 +7.5170418892623409e-08 +-3.2074239248774199e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448395078100e+00 -1.7320022948797023e+00 +1.2247448583004148e+00 +1.7319930735100335e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0584455776264734e-01 +-1.1546616031762454e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448583004148e+00 -1.7319930735100337e+00 +1.7319930735100335e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002013510190539819, h_cfl = 3.333333333333331e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001932969782918226, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.798909348754682 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851514785420889e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003381055264847888, h_cfl = 3.333333333333331e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003245813054253972, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.737439162761923 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749724022e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247448583004148e+00 -1.7319930735100337e+00 +1.7319930735100335e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -747,57 +747,57 @@ Using dense direct linear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.3091174144770359e-08 --5.7734058843461611e-05 +-5.7734058843683655e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55851273849144 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55851273858204 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01002676147689013 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01002676147692884 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0206204432033357e-07 --5.7734048376839718e-05 +-1.0206204432038945e-07 +-5.7734048377061763e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628497336980672e-11 + 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628475132520180e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --2.0412412012675116e-04 +-2.0412412012681526e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412412012675116e-04 +-2.0412412012681526e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -805,92 +805,92 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620481282695e-01 +-1.1546620481282682e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020686687791822e-08 --1.9244367468804470e-05 +-2.7216549350242009e-08 +-1.5395493975043562e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447353088579e+00 -1.7319738291530316e+00 +1.2247447421129951e+00 +1.7319776780265250e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3471042810182754e-01 +-1.3086140579235905e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.4020686687791822e-08 --2.2451738016971235e-05 +-4.0824824025363012e-08 +-2.6942041207448390e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447353088579e+00 -1.7319706217824833e+00 +1.2247447285047206e+00 +1.7319661314792927e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3470747019343243e-01 +-1.3855599491833123e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041373375583644e-08 --4.4902490064477434e-05 +-6.8041373375605018e-08 +-4.3736186373420965e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447012881711e+00 -1.7319481710304359e+00 +1.7319493373341266e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.5395094281833455e-01 +-1.5395200545026330e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1031030031687733e-08 --3.2474481150762625e-05 +-6.8041373375605018e-08 +-4.4902941345653890e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447182985145e+00 -1.7319605990393494e+00 +1.2247447012881711e+00 +1.7319481705791544e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4433004650122458e-01 +-1.5395094240716697e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447012881711e+00 -1.7319481705791546e+00 +1.7319481705791544e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002299746983550014, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002207757104208013, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.623271312624047 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852664152388e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003860341636008414, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003705927970568077, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.11778391170424 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469732808638e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247447012881711e+00 -1.7319481705791546e+00 +1.7319481705791544e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -2.0929496771200669e-08 +2.0929496771228608e-08 -4.4902941345625891e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -898,31 +898,31 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.3233881738182 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.32338817381821 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.007796994789490233 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.007796994789490242 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --9.7682370106868261e-08 +-9.7682370106896173e-08 -4.4902933206867404e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247446716471744e+00 -1.7319481705872934e+00 +1.7319481705872932e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --2.7212887670995334e-04 +-2.7212887671008155e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.3426735146055989e-04 +-3.3426735146074664e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -930,92 +930,92 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247446716471744e+00 -1.7319481705872934e+00 +1.7319481705872932e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.5395095723508104e-01 +-1.5395095723508082e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5711225243426592e-08 --2.5658492872513480e-05 +-4.4568980194766174e-08 +-2.0526794298010756e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446159359492e+00 -1.7319225120944208e+00 +1.2247446270781941e+00 +1.7319276437929951e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7319354610911633e-01 +-1.6934487351291566e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5711225243426592e-08 --2.8865591018186027e-05 +-6.6853470292149254e-08 +-3.4638670516474838e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446159359492e+00 -1.7319193049962753e+00 +1.2247446047937041e+00 +1.7319135319167767e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7319065972078385e-01 +-1.7703883761395153e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1142245048685318e-07 --5.7730219906927891e-05 +-1.1142245048691544e-07 +-5.6564004464627685e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445602247240e+00 -1.7318904403673865e+00 +1.7318916065828287e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9243228401122625e-01 +-1.9243332064687008e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.3566837865139879e-08 --4.2095373971856035e-05 +-1.1142245048691544e-07 +-5.7730647383671889e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445880803365e+00 -1.7319060752133215e+00 +1.2247445602247240e+00 +1.7318904399399095e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8281232072176698e-01 +-1.9243228363124665e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445602247240e+00 -1.7318904399399098e+00 +1.7318904399399095e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127280759621378, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042189529236523, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126568587709575 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341133666858e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003569623881345332, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003426838926091519, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.28051677827457 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645808019667e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247445602247240e+00 -1.7318904399399098e+00 +1.7318904399399095e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --7.6096937630647958e-08 +-7.6096937630578475e-08 -1.0263358059048322e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1028,26 +1028,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01782130916736245 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01782130916736246 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.2434430386004631e-07 +-2.2434430386003268e-07 -1.0263356198793709e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247445449852408e+00 -1.7318904399585122e+00 +1.7318904399585120e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001666666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.4012102088583200e-04 +-3.4012102088589607e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = -2.1387018918020461e-05 +2.1387018917786707e-05 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1055,92 +1055,92 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247445449852408e+00 -1.7318904399585122e+00 +1.7318904399585120e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9243229126752426e-01 +-1.9243229126752417e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5645031530034089e-09 --3.2072048544587364e-05 +2.8516025223715599e-09 +-2.5657638835669882e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247445485497439e+00 -1.7318583679099677e+00 +1.2247445478368433e+00 +1.7318647823196762e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.1167277746392044e-01 +-2.0782454823914867e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5645031530034089e-09 --3.5278796243986730e-05 +4.2774037835573399e-09 +-4.2334522496410943e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247445485497439e+00 -1.7318551611622683e+00 +1.2247445492626445e+00 +1.7318481054360155e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.1166996265204699e-01 +-2.1551770006385798e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.1290063060068177e-09 --7.0556654217348975e-05 +7.1290063059289006e-09 +-6.9390555401894287e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445521142470e+00 -1.7318198833042948e+00 +1.7318210494031101e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090927033136022e-01 +-2.3091028095004759e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.3467547295051133e-09 --5.1715324403440764e-05 +7.1290063059288998e-09 +-7.0557057879483564e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445503319956e+00 -1.7318387246341087e+00 +1.2247445521142470e+00 +1.7318198829006326e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2129047419569908e-01 +-2.3090926998151970e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445521142470e+00 -1.7318198829006328e+00 +1.7318198829006326e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127236384874792, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020421469294798, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126440788439403 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983334309895e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003568376008195399, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003425640967867583, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27692290360275 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.786633165063192e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247445521142470e+00 -1.7318198829006328e+00 +1.7318198829006326e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693295446e+00 -1.7319930735205002e+00 +1.7319930735205000e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.2824442733098544e-07 +-1.2824442733095748e-07 -1.7319061986742490e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1148,12 +1148,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67317810828131 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67317810828132 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.030079277696704 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03007927769670401 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = -3.0618611407134861e-07 @@ -1162,36 +1162,36 @@ Using dense direct linear solver [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441158800247649e-11 + 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441136595787157e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --4.0824811730309811e-04 +-4.0824811730322632e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.002333333333333334 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824811730309795e-04 +-4.0824811730322616e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1199,92 +1199,92 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931449413818e-01 +-2.3090931449413793e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041352883849631e-08 --3.8484885749023016e-05 +-5.4433082307096799e-08 +-3.0787908599218380e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443951020778e+00 -1.7317813980462817e+00 +1.2247444087103483e+00 +1.7317890950234314e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5014733563648733e-01 +-2.4629962226406527e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8041352883849631e-08 --4.1691222606081210e-05 +-8.1649623460645199e-08 +-5.0029439841309396e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443951020778e+00 -1.7317781917094248e+00 +1.2247443814938070e+00 +1.7317698534921893e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5014459243716736e-01 +-2.5399181689121747e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3608270576769926e-07 --8.3381530812389086e-05 +-1.3608270576774204e-07 +-8.2215570583911646e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443270607248e+00 -1.7317365014012185e+00 +1.7317376673614466e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6938122109489104e-01 +-2.6938220568326243e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206202932577445e-07 --6.1334129192858173e-05 +-1.3608270576774201e-07 +-8.3381910652006785e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443610814013e+00 -1.7317585488028380e+00 +1.2247443270607248e+00 +1.7317365010213785e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5976377331361755e-01 +-2.6938122077413745e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443270607248e+00 -1.7317365010213788e+00 +1.7317365010213785e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127183703426417, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204209635528936, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126289065868082 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753352378277e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003567183773372547, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003424496422437645, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27348926731294 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448181473495e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247443270607248e+00 -1.7317365010213788e+00 +1.7317365010213785e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -4.1858981030688257e-08 +4.1858981030744135e-08 -8.3381910652047253e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1292,26 +1292,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.02874272231963 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.02874272231964 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.6571630018547195e-07 +-1.6571630018547197e-07 -8.3346426265853518e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247442974271303e+00 -1.7317365365057649e+00 +1.7317365365057646e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002333333333333334 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --4.7623509692290599e-04 +-4.7623509692303420e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.3835732820104853e-04 +-5.3835732820117668e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1319,92 +1319,92 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247442974271303e+00 -1.7317365365057649e+00 +1.7317365365057646e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.6938126555552749e-01 +-2.6938126555552733e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.9726221366841274e-08 --4.4896877592587839e-05 +-7.1780977093490105e-08 +-3.5917502074070255e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442077009090e+00 -1.7316916396281723e+00 +1.2247442256461532e+00 +1.7317006190036905e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8861636840667337e-01 +-2.8476926153964699e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.9726221366841274e-08 --4.8102728067778817e-05 +-1.0767146564023515e-07 +-5.7723252107135274e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442077009090e+00 -1.7316884337776970e+00 +1.2247441897556646e+00 +1.7316788132536576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8861369686463573e-01 +-2.9246031771409281e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7945244273368255e-07 --9.6204565621545087e-05 +-1.7945244273372530e-07 +-9.5038771447151582e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247441179746876e+00 -1.7316403319401432e+00 +1.7316414977343175e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0784719323815268e-01 +-3.0784815177977021e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3458933205026190e-07 --7.0951580964858881e-05 +-1.7945244273372527e-07 +-9.6204921629776540e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247441628377982e+00 -1.7316655849247999e+00 +1.2247441179746876e+00 +1.7316403315841349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.9823132043473349e-01 +-3.0784719294543472e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247441179746876e+00 -1.7316403315841351e+00 +1.7316403315841349e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997252938, h_cfl = 3.333333333333328e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042035173628204, h_cfl = 1.666666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126105520884623 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.854673693492052e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003566054803162448, h_cfl = 3.333333333333328e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342341261103595, h_cfl = 1.666666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27023783310787 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407635032002e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247441179746876e+00 -1.7316403315841351e+00 +1.7316403315841349e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.2320155498819360e-07 +-1.2320155498813769e-07 -1.7955134789571225e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1412,26 +1412,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.2761708669783 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.27617086697832 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.6039715834514013e-07 +-3.6039715834514008e-07 -1.7947493797855279e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247441027462722e+00 -1.7316404079940522e+00 +1.7316404079940519e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002666666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --5.4418903119967310e-04 +-5.4418903119980136e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.8285683670685908e-04 +-1.8285683670698724e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1439,92 +1439,92 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247441027462722e+00 -1.7316404079940522e+00 +1.7316404079940519e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.0784726338557328e-01 +-3.0784726338557311e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0476139451143170e-08 --5.1307877230928863e-05 +-2.4380911560931621e-08 +-4.1046301784743069e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247440722701328e+00 -1.7315891001168213e+00 +1.2247440783653607e+00 +1.7315993616922671e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.2707897908296096e-01 +-3.2323257249946502e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0476139451143170e-08 --5.4513163180493475e-05 +-3.6571367341397435e-08 +-6.5415779955587566e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247440722701328e+00 -1.7315858948308718e+00 +1.2247440661749049e+00 +1.7315749922140964e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.2707637924000710e-01 +-3.3092230271235346e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.0952278902286340e-08 --1.0902545974666899e-04 +-6.0952278902329063e-08 +-1.0785986004036401e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247440417939932e+00 -1.7315313825343055e+00 +1.7315325481340116e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630627443820799e-01 +-3.4630720691770894e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5714209176714749e-08 --8.0567456522817436e-05 +-6.0952278902329063e-08 +-1.0902579191496091e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440570320631e+00 -1.7315598405375294e+00 +1.2247440417939932e+00 +1.7315313822021370e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.3669221105147978e-01 +-3.4630627417247317e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247440417939932e+00 -1.7315313822021372e+00 +1.7315313822021370e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127045936467591, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002041964099008887, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.125892297026663 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748275024137e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003564986592290118, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003422387128598513, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.26716138579554 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.797514971275444e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247440417939932e+00 -1.7315313822021372e+00 +1.7315313822021370e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631434306e+00 -1.7318198829320308e+00 +1.7318198829320306e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.4340775053934476e-07 +-2.4340775053928886e-07 -2.8850072989361486e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1541,22 +1541,22 @@ Using dense direct linear solver [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247439528694488e+00 -1.7315315049915700e+00 +1.7315315049915698e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247439528694488e+00 -1.7315315049915700e+00 +1.7315315049915698e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247439528694488e+00 -1.7315315049915700e+00 +1.7315315049915698e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179997030935e-07 + 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out index 9102cd9aab..83ae686477 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out @@ -36,10 +36,10 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.7665928206329331e-25 -6.1989172313708505e-25 +7.0132742565063471e-25 +4.9591337850966802e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -47,203 +47,203 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.6371994311708601e-07 +-6.9097595397071484e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.7665928206329331e-25 --6.4606546253197653e-15 +1.0519911384759520e-24 +-7.7527855447021162e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688708e+00 +1.7320508075688694e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.6371993670721352e-07 +-1.0364639248280051e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.7533185641265866e-24 --1.2921309154747402e-14 +-1.0571980204099113e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688643e+00 +1.7320508075688665e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.7274398799278809e-06 +-1.7274398821072365e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3149889230949401e-24 --7.2682364172830469e-15 +1.7533185641265866e-24 +-1.2921309202394519e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.2955799098182033e-06 +-1.7274398799278809e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688645e+00 +1.7320508075688643e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.283118913371641e-06, h_cfl = 1.496006819526213e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.231794156836775e-06, h_cfl = 7.480034097631063e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472585 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688645e+00 +1.7320508075688643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.7274398800560780e-06 +-1.7274398799278809e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.2183078785983163e-23 --1.0639251752699482e-12 +5.7746463028786526e-23 +-8.5114014015279349e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075678007e+00 +1.7320508075680132e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.2845130562184719e-05 +-5.8621588925090254e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.2183078785983163e-23 --4.4865103090255557e-11 +8.6619694543179800e-23 +-5.3838120474252888e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075239995e+00 +1.7320508075150263e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.2845086762910995e-05 +-8.7068621390116988e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.4436615757196633e-22 --8.9730152228821661e-11 +-7.3802453613823533e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074950618e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4396277740047413e-04 +-1.4396279332666562e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0827461817897473e-22 --5.0872192687095676e-11 +1.4436615757196635e-22 +-8.9730179195244251e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075179923e+00 +1.7320508074791341e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0840394303739344e-04 +-1.4396277740021774e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074791341e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.108004205495869e-05, h_cfl = 1.231794156836775e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.023684037276034e-05, h_cfl = 6.158970784183875e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074791341e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.4396277740047413e-04 +-1.4396277740021774e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1858778797567304e-21 --1.4566758729363121e-09 +9.4870230380538442e-22 +-1.1653406983469745e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508060224584e+00 +1.7320508063137934e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3123431954948648e-03 +-1.0786661695545738e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1858778797567304e-21 --1.3278839880753896e-08 +1.4230534557080764e-21 +-1.5934593554699443e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507942002945e+00 +1.7320507915445404e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3123313822883717e-03 +-1.5460065179100856e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.3717557595134609e-21 --2.6557440699533699e-08 +-2.2258482762900637e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507809216936e+00 +1.7320507852206513e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.4807117632403230e-03 +-2.4807160560409314e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.7788168196350954e-21 --1.5484858693447888e-08 +2.3717557595134609e-21 +-2.6557560105241386e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507919942756e+00 +1.7320507809215739e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8965245322040000e-03 +-2.4807117631208860e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -255,7 +255,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007461211873381922, h_cfl = 2.023684037276034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004047368074552068, h_cfl = 1.011842018638017e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -267,137 +267,137 @@ Using fixed-point nonlinear solver -2.4807117631208860e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.3717557595134611e-20 --5.0201767961106226e-07 +1.8974046076107690e-20 +-4.0161414368884986e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320502789038943e+00 +1.7320503793074302e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5850485697902034e-02 +-2.1176173480527707e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.3717557595134611e-20 --5.2313215262676757e-06 +2.8461069114161532e-20 +-6.2774773325864797e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320455496000478e+00 +1.7320445034442413e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5845826971662583e-02 +-3.0519395454806933e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 4.7435115190269222e-20 --1.0460757494550389e-05 +-8.7410892356701039e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320403201640795e+00 +1.7320420398323382e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --4.9215386380348593e-02 +-4.9217057183954721e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5576336392701913e-20 --6.0727889759923864e-06 +4.7435115190269222e-20 +-1.0461685802498012e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320447081325980e+00 +1.7320403192357714e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.7531810140477219e-02 +-4.9215385478418014e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320403192357716e+00 +1.7320403192357714e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001474585099681421, h_cfl = 4.047368074552068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001415601695694164, h_cfl = 2.023684037276034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002798042933992903, h_cfl = 4.047368074552068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002686121216633187, h_cfl = 2.023684037276034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320403192357716e+00 +1.7320403192357714e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --4.9215385478418264e-02 +-4.9215385478418014e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6526213959361231e-22 --2.3736874368566389e-07 +4.5220971167488994e-22 +-1.8989499494853018e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320400818670278e+00 +1.7320401293407766e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --4.9772295306148802e-02 +-4.9660913150584490e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6526213959361231e-22 --2.4005475304776807e-07 +6.7831456751233477e-22 +-2.8806570228261830e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320400791810187e+00 +1.7320400311700692e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --4.9772292697325332e-02 +-4.9883674426259524e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1305242791872246e-21 --4.8010948093051328e-07 +1.1305242791872248e-21 +-4.7913275109108114e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320398391262908e+00 +1.7320398401030204e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.0329202291137985e-02 +-5.0329203239485976e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.4789320939041850e-22 --3.5907486669449202e-07 +1.1305242791872246e-21 +-4.8010949313695675e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320399601609049e+00 +1.7320398391262783e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.0050748175839127e-02 +-5.0329202291125912e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -406,10 +406,10 @@ Using fixed-point nonlinear solver 1.7320398391262783e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008221669095400283, h_cfl = 9.646119455459875e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006519856051646501, h_cfl = 9.646119455459875e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001929223891091975, h_cfl = 4.823059727729937e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247448713915889e+00 @@ -469,153 +469,153 @@ Using fixed-point nonlinear solver -5.0329202300611685e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3910463661956914e-08 --4.8548149748970629e-06 +-1.1128370929565532e-08 +-3.8838519799176507e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448574621538e+00 -1.7320349843113034e+00 +1.2247448602442466e+00 +1.7320359552742983e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.1467840061051257e-02 +-5.9240038613721124e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3910463661956914e-08 --5.9292612789800244e-06 +-1.6692556394348299e-08 +-7.1151028427410257e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448574621538e+00 -1.7320339098649993e+00 +1.2247448546800610e+00 +1.7320327240234357e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.1466803745250223e-02 +-6.3694435882226258e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7820927323913828e-08 --1.1858322629439841e-05 +-1.1467621183553475e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448435516901e+00 -1.7320279808036489e+00 +1.7320283715050948e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --7.2605326304862286e-02 +-7.2605700628351963e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0865695492935375e-08 --8.4909002757694385e-06 +-2.7820927323913828e-08 +-1.1858418889564434e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448505069221e+00 -1.7320313482260026e+00 +1.2247448435516901e+00 +1.7320279807073888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.7036339799890432e-02 +-7.2605326212637267e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448435516901e+00 -1.7320279807073891e+00 +1.7320279807073888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008364545729167712, h_cfl = 1.929223891091975e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029963900001004, h_cfl = 9.646119455459875e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.162276829080684 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270566101614e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001771810520934313, h_cfl = 1.929223891091975e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093810009694, h_cfl = 9.646119455459875e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.816696226658166 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278340402164e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448435516901e+00 -1.7320279807073891e+00 +1.7320279807073888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --7.2605326212637517e-02 +-7.2605326212637267e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4276585468868413e-09 --3.2361773108397287e-06 +-5.1421268375094732e-09 +-2.5889418486717743e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448371240315e+00 -1.7320247445300783e+00 +1.2247448384095632e+00 +1.7320253917655402e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.7751969210255026e-02 +-7.6722625549141041e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4276585468868413e-09 --3.4655743835435070e-06 +-7.7131902562642102e-09 +-4.1586882532604408e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448371240315e+00 -1.7320245151330056e+00 +1.2247448358384998e+00 +1.7320238220191355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.7751750110986395e-02 +-7.8781057582140629e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2855317093773683e-08 --6.9311292356250966e-06 +-6.8477126393394674e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448306963731e+00 -1.7320210495781534e+00 +1.7320211329947495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --8.2898362024615493e-02 +-8.2898441448706423e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6414878203302599e-09 --5.1123304353456857e-06 +-1.2855317093773683e-08 +-6.9311385395290540e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448339102023e+00 -1.7320228683769536e+00 +1.2247448306963731e+00 +1.7320210495688493e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --8.0325114855944707e-02 +-8.2898362015756580e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448306963731e+00 -1.7320210495688495e+00 +1.7320210495688493e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001966024868239103, h_cfl = 8.914435013657296e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710662895625, h_cfl = 8.914435013657296e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001782887002731459, h_cfl = 4.457217506828648e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480983041563123e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057658423235529e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247448306963731e+00 -1.7320210495688495e+00 +1.7320210495688493e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0007179332607542295 @@ -625,24 +625,24 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -3.5303701232409777e-08 --2.9758000027690912e-05 +-2.9758000027912956e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.14796270537412 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.14796270546477 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.003729401476593421 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00372940147662568 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.5324396569906511e-08 --2.9758000027690912e-05 +-3.5324396569962388e-08 +-2.9758000027912956e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247448360671924e+00 -1.7320210495688495e+00 +1.7320210495688493e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0007179332607542295 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = @@ -650,13 +650,13 @@ Using fixed-point nonlinear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.4560825977706726e-08 +-3.4560826105906440e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.6083546068275961e-04 +-4.6083546068235873e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -664,83 +664,83 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0007179332607542295 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448360671924e+00 -1.7320210495688495e+00 +1.7320210495688493e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --8.2898359330347199e-02 +-8.2898359330346963e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4993177861804168e-08 --1.1691434952567602e-05 +-5.1994542289398114e-08 +-9.3531479620540555e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447710740145e+00 -1.7320093581338969e+00 +1.2247447840726502e+00 +1.7320116964208871e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --9.9183578730413904e-02 +-9.5926392680909953e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4993177861804168e-08 --1.3988194319606989e-05 +-7.7991813434097170e-08 +-1.6785803107564923e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447710740145e+00 -1.7320070613745300e+00 +1.2247447580753790e+00 +1.7320042637657418e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --9.9181413493690529e-02 +-1.0243824071801669e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2998635572360834e-07 --2.7975777897951721e-05 +-1.2998635572349526e-07 +-2.7140606310614404e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447060808367e+00 -1.7319930737909515e+00 +1.7319939089625387e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546623668960283e-01 +-1.1546701618290967e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.7489766792706259e-08 --2.0120781181172802e-05 +-1.2998635572349526e-07 +-2.7976064642584774e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447385774257e+00 -1.7320009287876683e+00 +1.2247447060808367e+00 +1.7319930735042066e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0732441997669399e-01 +-1.1546623642197434e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447060808367e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001522938943322793, h_cfl = 2.820667392457702e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001462021385589881, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.183246310781768 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422835575235e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002557258282000896, h_cfl = 2.820667392457702e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496795072086, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.703500303812136 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971638889635e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247447060808367e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -749,25 +749,25 @@ Using fixed-point nonlinear solver 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.3025724429055542e-07 --5.7734064670356133e-05 +-1.3025724429053001e-07 +-5.7734064670578178e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56857053242068 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56857053251133 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007204341456067922 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007204341456084042 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.3024355617993035e-07 --5.7734064670356133e-05 +-1.3024355617993287e-07 +-5.7734064670578178e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247447411480328e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = @@ -775,41 +775,41 @@ Using fixed-point nonlinear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = -5.6362972301911524e-08 +5.6362972237810632e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247447693109426e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247447693109426e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.437694987151190e-15 + 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.659739592076221e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247447693109426e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_0(:) = -2.0412412822468201e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = -3.7152058512715457e-11 +3.7151994411822586e-11 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412409107262348e-04 +-2.0412409107268759e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -817,110 +817,110 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693109426e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620480692074e-01 +-1.1546620480692062e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4485428765950111e-08 --2.5163926520487908e-05 +-3.5588343012771266e-08 +-2.0131141216390304e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447248255139e+00 -1.7319679095776863e+00 +1.2247447337225996e+00 +1.7319729423629902e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.4063038210989059e-01 +-1.3559724829886941e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4485428765950111e-08 --3.0648037734321698e-05 +-5.3382514519156896e-08 +-3.6777547750463866e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447248255139e+00 -1.7319624254664725e+00 +1.2247447159284282e+00 +1.7319562959564561e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.4062534328410545e-01 +-1.4565763006543619e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970857531900223e-08 --6.1293879213175935e-05 +-8.8970857531928175e-08 +-5.9299683535405404e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446803400850e+00 -1.7319317796249936e+00 +1.7319337738206713e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.6578818115831298e-01 +-1.6578998445980814e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.6728143148925164e-08 --4.3914709544624431e-05 +-8.8970857531928148e-08 +-6.1294880038901588e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447025827993e+00 -1.7319491587946623e+00 +1.2247446803400850e+00 +1.7319317786241677e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.5320820430434803e-01 +-1.6578818025329059e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446803400850e+00 -1.7319317786241679e+00 +1.7319317786241677e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002572109904163659, h_cfl = 4.358665215084587e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002469225507997112, h_cfl = 2.179332607542293e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.665095588097819 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573793277643e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702712074304, h_cfl = 4.358665215084587e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004144346035913318, h_cfl = 2.179332607542293e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.508291716396233 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645527883502e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247446803400850e+00 -1.7319317786241679e+00 +1.7319317786241677e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693109426e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --8.8970873763541570e-08 +-8.8970873763513632e-08 -6.1294880038920141e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 25.02295754400714 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 25.02295754400715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007673490841823296 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007673490841839424 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.8999322153602641e-08 +-8.8999322153630579e-08 -6.1294880038920141e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247446803116204e+00 -1.7319317786241679e+00 +1.7319317786241677e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001435866521508459 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = @@ -928,13 +928,13 @@ Using fixed-point nonlinear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --3.8684663167164401e-08 +-3.8684663295370719e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.4833189058418632e-04 +-3.4833189058430510e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -942,110 +942,110 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247446803116204e+00 -1.7319317786241679e+00 +1.7319317786241677e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.6578818026752318e-01 +-1.6578818026752296e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.9126420276197904e-08 --2.3381665706775094e-05 +-3.9301136220971725e-08 +-1.8705332565420052e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446311852002e+00 -1.7319083969584612e+00 +1.2247446410104843e+00 +1.7319130732916024e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8207064310861676e-01 +-1.7881404357797157e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.9126420276197904e-08 --2.5678036307013935e-05 +-5.8951704331457580e-08 +-3.0813620940509586e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446311852002e+00 -1.7319061005878609e+00 +1.2247446213599160e+00 +1.7319009650032271e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8206858814778498e-01 +-1.8532483329527230e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8252840552395807e-08 --5.1355492977926776e-05 +-9.8252840552429292e-08 +-5.0520448658207853e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445820587799e+00 -1.7318804231311899e+00 +1.7318812581755094e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9835032489237425e-01 +-1.9835106429984511e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.3689630414296852e-08 --3.7655704522133223e-05 +-9.8252840552429305e-08 +-5.1355748661364055e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446066219900e+00 -1.7318941229196458e+00 +1.2247445820587799e+00 +1.7318804228755063e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.9021006507330826e-01 +-1.9835032466597360e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445820587799e+00 -1.7318804228755065e+00 +1.7318804228755063e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257738579556575, h_cfl = 2.820667392457701e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167429036374312, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.684100018917118 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487925979834815e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003788366449981633, h_cfl = 2.820667392457701e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003636831791982367, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.89351520745424 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825627642645e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247445820587799e+00 -1.7318804228755065e+00 +1.7318804228755063e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693109426e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.8186067383144968e-07 +-1.8186067383139642e-07 -1.1265062870036147e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.9883942369528 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.98839423695281 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01409326137946229 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01409326137947841 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.8189698061615481e-07 +-1.8189698061615743e-07 -1.1265062870036147e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247445874139620e+00 -1.7318804228755065e+00 +1.7318804228755063e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001717933260754229 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = @@ -1053,13 +1053,13 @@ Using fixed-point nonlinear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.4473472738764811e-08 +-3.4473472866974940e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --6.6495939977230599e-04 +-6.6495939977240855e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1067,92 +1067,92 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247445874139620e+00 -1.7318804228755065e+00 +1.7318804228755063e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9835032198838284e-01 +-1.9835032198838259e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.3781464812299475e-08 --2.7974014275805879e-05 +-7.5025171849851142e-08 +-2.2379211420644674e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247444936324972e+00 -1.7318524488612306e+00 +1.2247445123887901e+00 +1.7318580436640856e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.1463126779703690e-01 +-2.1137498551040729e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.3781464812299475e-08 --3.0270170923847948e-05 +-1.1253775777477673e-07 +-3.6324185408040137e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247444936324972e+00 -1.7318501527045826e+00 +1.2247444748762042e+00 +1.7318440986900983e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.1462925620562501e-01 +-2.1788518586051056e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8756292962459895e-07 --6.0539774444665648e-05 +-1.8756292962462788e-07 +-5.9704802383870389e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443998510323e+00 -1.7318198831010618e+00 +1.7318207180731224e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090934628683152e-01 +-2.3091006992913790e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4067219721844919e-07 --4.4543992409502643e-05 +-1.8756292962462788e-07 +-6.0540017917469218e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247444467417647e+00 -1.7318358788830970e+00 +1.2247443998510323e+00 +1.7318198828575888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2276991516131775e-01 +-2.3090934607582159e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443998510323e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885990625018675, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810551000017928, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418874500620789 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213435739734e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003163681707906477, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003037134439590218, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.76743201878866 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.161071371876041e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247443998510323e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247447693109426e+00 -1.7319930735042068e+00 +1.7319930735042066e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.3440645615226613e-07 +-3.3440645615221743e-07 -1.7319064661780459e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1161,16 +1161,16 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70326789489285 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02163921128613955 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02163921128615572 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.3441450778033596e-07 +-3.3441450778034316e-07 -1.7319064661780459e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247444348964347e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = @@ -1178,41 +1178,41 @@ Using fixed-point nonlinear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = -5.6493849413305985e-08 +5.6493849285091376e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247444630593312e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247444630593312e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.019806626980426e-14 + 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.042011087472929e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247444630593312e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_0(:) = -4.0824815440909770e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = -1.6805587464310136e-10 +1.6805574642849481e-10 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.002435866521508459 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824798635322320e-04 +-4.0824798635335146e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1220,67 +1220,67 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630593312e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931447167165e-01 +-2.3090931447167143e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970814862306007e-08 --5.0322819841335137e-05 +-7.1176651889867172e-08 +-4.0258255873068074e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443740885162e+00 -1.7317695600377476e+00 +1.2247443918826793e+00 +1.7317796246017156e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5606520962985807e-01 +-2.5103384938549128e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970814862306007e-08 --5.5805126100350226e-05 +-1.0676497783480076e-07 +-6.6966092081998746e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443740885162e+00 -1.7317640777314887e+00 +1.2247443562943534e+00 +1.7317529167655068e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5606053794954092e-01 +-2.6109106597591725e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7794162972461201e-07 --1.1160821597165102e-04 +-1.7794162972466792e-07 +-1.0961460414175199e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442851177015e+00 -1.7317082746416175e+00 +1.7317102682534471e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.8121399619441229e-01 +-2.8121566606065562e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3345622229345902e-07 --8.1651093910280195e-05 +-1.7794162972466794e-07 +-1.1160905705797372e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443296031089e+00 -1.7317382317636787e+00 +1.2247442851177015e+00 +1.7317082738005309e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6863875455863734e-01 +-2.8121399548991061e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1289,10 +1289,10 @@ Using fixed-point nonlinear solver 1.7317082738005309e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002205765825198395, h_cfl = 4.358665215084585e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002117535192190459, h_cfl = 2.179332607542292e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.858219403642281 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419125643031044e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003698595759943598, h_cfl = 4.358665215084585e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003550651929545854, h_cfl = 2.179332607542292e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146190988143946 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102673e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247442851177015e+00 @@ -1302,23 +1302,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444630593312e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.7794170290316275e-07 --1.1160905705809299e-04 +-1.7794170290310684e-07 +-1.1160905705787094e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.56773766995966 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.567737669869 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01396408830693848 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01396408830690622 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.7797958485633952e-07 --1.1160905705809299e-04 +-1.7797958485628362e-07 +-1.1160905705787094e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = @@ -1337,7 +1337,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.5245564069139781e-04 +-5.5245564069141657e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1352,60 +1352,60 @@ Using fixed-point nonlinear solver -2.8121399550888826e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.7914680573877736e-08 --3.9660557371733406e-05 +-6.2331744459104314e-08 +-3.1728445897386727e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442071650658e+00 -1.7316686132431591e+00 +1.2247442227480019e+00 +1.7316765453546334e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.9748984565606490e-01 +-2.9423461773489007e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.7914680573877736e-08 --4.1955995361466861e-05 +-9.3497616688656465e-08 +-5.0347182186759586e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442071650658e+00 -1.7316663178051694e+00 +1.2247441915821295e+00 +1.7316579266183443e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.9748794455898686e-01 +-3.0074282432142130e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5582936114775547e-07 --8.3911454486679929e-05 +-1.5582936114776077e-07 +-8.3076729647194337e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247441292503851e+00 -1.7316243623460443e+00 +1.7316251970708838e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.1376260897898284e-01 +-3.1376329245527429e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1687202086081662e-07 --6.2073013159148806e-05 +-1.5582936114776077e-07 +-8.3911666862431923e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247441682077254e+00 -1.7316462007873719e+00 +1.2247441292503851e+00 +1.7316243621336684e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0562590431165032e-01 +-3.1376260880508849e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1414,10 +1414,10 @@ Using fixed-point nonlinear solver 1.7316243621336684e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553829678998, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167251676491838, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.683471231974887 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193419476551e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460754926259, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003633223247292087, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.88072197738418 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201878237253858e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247441292503851e+00 @@ -1427,23 +1427,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444630593312e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.2841752652787474e-07 --1.9552072392059472e-04 +-3.2841752652786945e-07 +-1.9552072392037267e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 79.82720625180357 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 79.82720625171292 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02445379030807663 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02445379030804438 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.2846939891931796e-07 --1.9552072392059472e-04 +-3.2846939891931267e-07 +-1.9552072392037267e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = @@ -1462,7 +1462,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.6908291255826428e-04 +-8.6908291255831545e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1477,103 +1477,103 @@ Using fixed-point nonlinear solver -3.1376260613531509e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2256969163976328e-07 --4.4250997604921629e-05 +-9.8055753311816391e-08 +-3.5400798083937302e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247440120202404e+00 -1.7315801111360636e+00 +1.2247440365341788e+00 +1.7315889613355846e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.3003602008215271e-01 +-3.2678129324882860e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2256969163976328e-07 --4.6546092009112194e-05 +-1.4708362996772458e-07 +-5.5855301093433212e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247440120202404e+00 -1.7315778160416593e+00 +1.2247439875063022e+00 +1.7315685068325750e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.3003416242761002e-01 +-3.3328854286323717e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4513938327952656e-07 --9.3091660035664884e-05 +-2.4513938327954096e-07 +-9.2257054591480148e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247438894505489e+00 -1.7315312704736328e+00 +1.7315321050790771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630626096139167e-01 +-3.4630692864563850e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8385453745964491e-07 --6.8958292713458005e-05 +-2.4513938327954096e-07 +-9.3091860187888997e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247439507353948e+00 -1.7315554038409551e+00 +1.2247438894505489e+00 +1.7315312702734806e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.3817084458784386e-01 +-3.4630626080126997e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247438894505489e+00 -1.7315312702734804e+00 +1.7315312702734806e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885820260655438, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038745022922, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418294674055113 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668466049585e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003160678462138904, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003034251323653348, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.75721062244615 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.216745165531386e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247438894505489e+00 -1.7315312702734804e+00 +1.7315312702734806e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444630593312e+00 -1.7318198828575890e+00 +1.7318198828575888e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --5.3855544036051835e-07 --2.8861258410861623e-04 +-5.3855544036050395e-07 +-2.8861258410817214e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8348216738145 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8348216736332 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0360687584086095 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03606875840854498 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.3858518292645864e-07 --2.8861258410861623e-04 +-5.3858518292638834e-07 +-2.8861258410817214e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247439244741483e+00 -1.7315312702734804e+00 +1.7315312702734806e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = @@ -1581,23 +1581,23 @@ Using fixed-point nonlinear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = -5.6718219058562805e-08 +5.6718219186798782e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247439526370172e+00 -1.7315312702734804e+00 +1.7315312702734806e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247439526370172e+00 -1.7315312702734804e+00 +1.7315312702734806e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952637017e+00 1.731531270273480e+00 1.962627838025810e-10 8.992806499463768e-14 + 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out index 56a246dad8..58137c9100 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out @@ -37,10 +37,10 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.7665928206329331e-25 -6.1989172313708505e-25 +7.0132742565063471e-25 +4.9591337850966802e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -48,203 +48,203 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.6371994311708601e-07 +-6.9097595397071484e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.7665928206329331e-25 --6.4606546253197653e-15 +1.0519911384759520e-24 +-7.7527855447021162e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688708e+00 +1.7320508075688694e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.6371993670721352e-07 +-1.0364639248280051e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.7533185641265866e-24 --1.2921309154747402e-14 +-1.0571980204099113e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688643e+00 +1.7320508075688665e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.7274398799278809e-06 +-1.7274398821072365e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3149889230949401e-24 --7.2682364172830469e-15 +1.7533185641265866e-24 +-1.2921309202394519e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.2955799098182033e-06 +-1.7274398799278809e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688645e+00 +1.7320508075688643e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.283118913371641e-06, h_cfl = 1.496006819526213e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.231794156836775e-06, h_cfl = 7.480034097631063e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472585 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688645e+00 +1.7320508075688643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.7274398800560780e-06 +-1.7274398799278809e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.2183078785983163e-23 --1.0639251752699482e-12 +5.7746463028786526e-23 +-8.5114014015279349e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075678007e+00 +1.7320508075680132e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.2845130562184719e-05 +-5.8621588925090254e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.2183078785983163e-23 --4.4865103090255557e-11 +8.6619694543179800e-23 +-5.3838120474252888e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075239995e+00 +1.7320508075150263e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.2845086762910995e-05 +-8.7068621390116988e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.4436615757196633e-22 --8.9730152228821661e-11 +-7.3802453613823533e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074950618e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4396277740047413e-04 +-1.4396279332666562e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0827461817897473e-22 --5.0872192687095676e-11 +1.4436615757196635e-22 +-8.9730179195244251e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075179923e+00 +1.7320508074791341e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0840394303739344e-04 +-1.4396277740021774e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074791341e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.108004205495869e-05, h_cfl = 1.231794156836775e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.023684037276034e-05, h_cfl = 6.158970784183875e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074791341e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.4396277740047413e-04 +-1.4396277740021774e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1858778797567304e-21 --1.4566758729363121e-09 +9.4870230380538442e-22 +-1.1653406983469745e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508060224584e+00 +1.7320508063137934e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3123431954948648e-03 +-1.0786661695545738e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1858778797567304e-21 --1.3278839880753896e-08 +1.4230534557080764e-21 +-1.5934593554699443e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507942002945e+00 +1.7320507915445404e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3123313822883717e-03 +-1.5460065179100856e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.3717557595134609e-21 --2.6557440699533699e-08 +-2.2258482762900637e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507809216936e+00 +1.7320507852206513e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.4807117632403230e-03 +-2.4807160560409314e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.7788168196350954e-21 --1.5484858693447888e-08 +2.3717557595134609e-21 +-2.6557560105241386e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507919942756e+00 +1.7320507809215739e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8965245322040000e-03 +-2.4807117631208860e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -256,7 +256,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007461211873381922, h_cfl = 2.023684037276034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004047368074552068, h_cfl = 1.011842018638017e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -268,137 +268,137 @@ Using GMRES iterative linear solver -2.4807117631208860e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.3717557595134611e-20 --5.0201767961106226e-07 +1.8974046076107690e-20 +-4.0161414368884986e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320502789038943e+00 +1.7320503793074302e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5850485697902034e-02 +-2.1176173480527707e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.3717557595134611e-20 --5.2313215262676757e-06 +2.8461069114161532e-20 +-6.2774773325864797e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320455496000478e+00 +1.7320445034442413e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5845826971662583e-02 +-3.0519395454806933e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 4.7435115190269222e-20 --1.0460757494550389e-05 +-8.7410892356701039e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320403201640795e+00 +1.7320420398323382e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --4.9215386380348593e-02 +-4.9217057183954721e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5576336392701913e-20 --6.0727889759923864e-06 +4.7435115190269222e-20 +-1.0461685802498012e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320447081325980e+00 +1.7320403192357714e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.7531810140477219e-02 +-4.9215385478418014e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320403192357716e+00 +1.7320403192357714e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001474585099681421, h_cfl = 4.047368074552068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001415601695694164, h_cfl = 2.023684037276034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002798042933992903, h_cfl = 4.047368074552068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002686121216633187, h_cfl = 2.023684037276034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320403192357716e+00 +1.7320403192357714e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --4.9215385478418264e-02 +-4.9215385478418014e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6526213959361231e-22 --2.3736874368566389e-07 +4.5220971167488994e-22 +-1.8989499494853018e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320400818670278e+00 +1.7320401293407766e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --4.9772295306148802e-02 +-4.9660913150584490e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6526213959361231e-22 --2.4005475304776807e-07 +6.7831456751233477e-22 +-2.8806570228261830e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320400791810187e+00 +1.7320400311700692e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --4.9772292697325332e-02 +-4.9883674426259524e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1305242791872246e-21 --4.8010948093051328e-07 +1.1305242791872248e-21 +-4.7913275109108114e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320398391262908e+00 +1.7320398401030204e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.0329202291137985e-02 +-5.0329203239485976e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.4789320939041850e-22 --3.5907486669449202e-07 +1.1305242791872246e-21 +-4.8010949313695675e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320399601609049e+00 +1.7320398391262783e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.0050748175839127e-02 +-5.0329202291125912e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -407,10 +407,10 @@ Using GMRES iterative linear solver 1.7320398391262783e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008221669095400283, h_cfl = 9.646119455459875e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006519856051646501, h_cfl = 9.646119455459875e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001929223891091975, h_cfl = 4.823059727729937e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247448713915889e+00 @@ -483,60 +483,60 @@ Using GMRES iterative linear solver -5.0329202299566819e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3910464005878555e-08 --4.8548149747962736e-06 +-1.1128371204702846e-08 +-3.8838519798370191e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448574642430e+00 -1.7320349843113036e+00 +1.2247448602463360e+00 +1.7320359552742985e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.1467840060006905e-02 +-5.9240038612676689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3910464005878555e-08 --5.9292612788792851e-06 +-1.6692556807054269e-08 +-7.1151028426201414e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448574642430e+00 -1.7320339098649995e+00 +1.2247448546821502e+00 +1.7320327240234357e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.1466803744205871e-02 +-6.3694435881181663e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7820928011757110e-08 --1.1858322629238362e-05 +-1.1467621183351915e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448435537791e+00 -1.7320279808036492e+00 +1.7320283715050950e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --7.2605326303817899e-02 +-7.2605700627307701e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0865696008817833e-08 --8.4909002756183143e-06 +-2.7820928011757110e-08 +-1.1858418889362921e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448505090111e+00 -1.7320313482260028e+00 +1.2247448435537791e+00 +1.7320279807073891e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.7036339798846212e-02 +-7.2605326211593005e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -545,10 +545,10 @@ Using GMRES iterative linear solver 1.7320279807073891e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008364545630537986, h_cfl = 1.929223891091975e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029963805316466, h_cfl = 9.646119455459875e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.162276780001601 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.442705992966839e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181049706912, h_cfl = 1.929223891091975e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001700938077186356, h_cfl = 9.646119455459875e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669610790272 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278478714956e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -560,60 +560,60 @@ Using GMRES iterative linear solver -7.2605326211593005e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4276587058039642e-09 --3.2361773107931728e-06 +-5.1421269646431720e-09 +-2.5889418486345383e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448371261205e+00 -1.7320247445300783e+00 +1.2247448384116522e+00 +1.7320253917655404e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.7751969209210514e-02 +-7.6722625548096710e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4276587058039642e-09 --3.4655743834969511e-06 +-7.7131904469647580e-09 +-4.1586882532045823e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448371261205e+00 -1.7320245151330056e+00 +1.2247448358405886e+00 +1.7320238220191360e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.7751750109941897e-02 +-7.8781057581096742e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2855317411607928e-08 --6.9311292355319857e-06 +-6.8477126392464107e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448306984616e+00 -1.7320210495781536e+00 +1.7320211329947499e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --8.2898362023571329e-02 +-8.2898441447662632e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6414880587059463e-09 --5.1123304352758512e-06 +-1.2855317411607928e-08 +-6.9311385394359811e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448339122911e+00 -1.7320228683769539e+00 +1.2247448306984616e+00 +1.7320210495688497e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --8.0325114854900584e-02 +-8.2898362014712790e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -622,10 +622,10 @@ Using GMRES iterative linear solver 1.7320210495688497e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001966024156162993, h_cfl = 8.914435013657296e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002957107189014047, h_cfl = 8.914435013657296e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001782887002731459, h_cfl = 4.457217506828648e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480987744230228e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057649778626881e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247448306984616e+00 @@ -698,60 +698,60 @@ Using GMRES iterative linear solver -8.2898359326464444e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4993173208836513e-08 --1.1691434952020005e-05 +-5.1994538567069217e-08 +-9.3531479616160040e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447710817851e+00 -1.7320093581338978e+00 +1.2247447840804198e+00 +1.7320116964208880e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --9.9183578726529387e-02 +-9.5926392677026018e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4993173208836513e-08 --1.3988194319059144e-05 +-7.7991807850603816e-08 +-1.6785803106907544e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447710817851e+00 -1.7320070613745306e+00 +1.2247447580831505e+00 +1.7320042637657429e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --9.9181413489805761e-02 +-1.0243824071413200e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2998634641767303e-07 --2.7975777896855958e-05 +-1.2998634641767300e-07 +-2.7140606309518855e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447060886121e+00 -1.7319930737909528e+00 +1.7319939089625402e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546623668571636e-01 +-1.1546701617902343e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.7489759813254763e-08 --2.0120781180351096e-05 +-1.2998634641767303e-07 +-2.7976064641489133e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447385851986e+00 -1.7320009287876694e+00 +1.2247447060886121e+00 +1.7319930735042082e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0732441997280862e-01 +-1.1546623641808809e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -760,10 +760,10 @@ Using GMRES iterative linear solver 1.7319930735042082e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293912788855, h_cfl = 2.820667392457702e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001462021562773008, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.183246938942064 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422957291812e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002557258105217176, h_cfl = 2.820667392457702e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002454967781008489, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.703499702137613 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971638889631e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247447060886121e+00 @@ -864,60 +864,60 @@ Using GMRES iterative linear solver -1.1546620479750114e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4485436977633871e-08 --2.5163926518435063e-05 +-3.5588349582107097e-08 +-2.0131141214748050e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447248443475e+00 -1.7319679095776896e+00 +1.2247447337414348e+00 +1.7319729423629935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.4063038210047685e-01 +-1.3559724828945494e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4485436977633871e-08 --3.0648037732270130e-05 +-5.3382524373160639e-08 +-3.6777547748002124e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447248443475e+00 -1.7319624254664758e+00 +1.2247447159472600e+00 +1.7319562959564601e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.4062534327469176e-01 +-1.4565763005602403e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970873955267743e-08 --6.1293879209072826e-05 +-8.8970873955267756e-08 +-5.9299683531301915e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446803589104e+00 -1.7319317796249991e+00 +1.7319337738206768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.6578818114890542e-01 +-1.6578998445040047e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.6728155466450807e-08 --4.3914709541546611e-05 +-8.8970873955267729e-08 +-6.1294880034798601e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447026016289e+00 -1.7319491587946667e+00 +1.2247446803589104e+00 +1.7319317786241735e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.5320820429493723e-01 +-1.6578818024388314e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -926,10 +926,10 @@ Using GMRES iterative linear solver 1.7319317786241735e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002572109755115509, h_cfl = 4.358665215084587e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002469225364910889, h_cfl = 2.179332607542293e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.665095259817906 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573779999255e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004317027246987211, h_cfl = 4.358665215084587e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004144346157107723, h_cfl = 2.179332607542293e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.508291994450175 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645597041759e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247446803589104e+00 @@ -1002,76 +1002,76 @@ Using GMRES iterative linear solver -1.6578818025221362e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.9126428425574621e-08 --2.3381665704615935e-05 +-3.9301142740459700e-08 +-1.8705332563692748e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446312158210e+00 -1.7319083969584688e+00 +1.2247446410411067e+00 +1.7319130732916097e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8207064309331306e-01 +-1.7881404356266709e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.9126428425574621e-08 --2.5678036304855603e-05 +-5.8951714110689543e-08 +-3.0813620937919664e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446312158210e+00 -1.7319061005878686e+00 +1.2247446213905353e+00 +1.7319009650032355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8206858813248142e-01 +-1.8532483327997024e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8252856851149243e-08 --5.1355492973610147e-05 +-9.8252856851149230e-08 +-5.0520448653891000e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445820893925e+00 -1.7318804231311999e+00 +1.7318812581755196e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9835032487707666e-01 +-1.9835106428454771e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.3689642638361926e-08 --3.7655704518895430e-05 +-9.8252856851149243e-08 +-5.1355748657047514e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446066526069e+00 -1.7318941229196545e+00 +1.2247445820893925e+00 +1.7318804228755165e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.9021006505800758e-01 +-1.9835032465067637e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445820893925e+00 -1.7318804228755162e+00 +1.7318804228755165e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257738578277529, h_cfl = 2.820667392457701e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167429035146428, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.684100014563951 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487925957703379e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003788366431347719, h_cfl = 2.820667392457701e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683177409381, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.89351514403465 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825904285456e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247445820893925e+00 -1.7318804228755162e+00 +1.7318804228755165e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 @@ -1081,37 +1081,37 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.8184887730253744e-07 --1.1265062869192377e-04 +-1.1265062869170173e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.98839422006409, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.98839421997345, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 65.0374108177751, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 65.03741081764692, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01993022435383186 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01993022435379259 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.601715600583093e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.761880948336852e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.601715600583093e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.98842420996601 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.761880948336852e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.98842420987538 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.508449719859987e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.50844967414183e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.8186316808347051e-07 --1.1265062869192373e-04 +-1.8186316808342255e-07 +-1.1265062869170174e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247445874666163e+00 -1.7318804228755162e+00 +1.7318804228755165e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001717933260754229 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = @@ -1119,13 +1119,13 @@ Using GMRES iterative linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.4578776485889356e-08 +-3.4578776357679226e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --6.6495931383095375e-04 +-6.6495931383135469e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1133,83 +1133,83 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247445874666163e+00 -1.7318804228755162e+00 +1.7318804228755165e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9835032196206431e-01 +-1.9835032196206454e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.3781452691700971e-08 --2.7974014272094086e-05 +-7.5025162153406022e-08 +-2.2379211417675295e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247444936851637e+00 -1.7318524488612441e+00 +1.2247445124414542e+00 +1.7318580436640989e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.1463126777071542e-01 +-2.1137498548408681e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.3781452691700971e-08 --3.0270170920135741e-05 +-1.1253774323010903e-07 +-3.6324185403585564e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247444936851637e+00 -1.7318501527045962e+00 +1.2247444749288732e+00 +1.7318440986901129e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.1462925617930362e-01 +-2.1788518583418881e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8756290538340194e-07 --6.0539774437241262e-05 +-1.8756290538351505e-07 +-5.9704802376446219e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443999037109e+00 -1.7318198831010789e+00 +1.7318207180731400e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090934626050705e-01 +-2.3091006990281387e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4067217903755145e-07 --4.4543992403934499e-05 +-1.8756290538351505e-07 +-6.0540017910044920e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247444467944373e+00 -1.7318358788831123e+00 +1.2247443999037109e+00 +1.7318198828576064e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2276991513499478e-01 +-2.3090934604949756e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443999037109e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885990630919255, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810551005682485, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418874520703118 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213391475553e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003163681713204779, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003037134444676588, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.76743203682116 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.161071371875986e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247443999037109e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -1218,38 +1218,38 @@ Using GMRES iterative linear solver 1.7319930735042082e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.3437258667066619e-07 --1.7319064660226147e-04 +-3.3437258667069160e-07 +-1.7319064660181738e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70326784116725, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70326784098594, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98952028507621, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98952028481982, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03060090279483382 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03060090279475539 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.928833636261717e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.732171617718288e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.928833636261717e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.7033235562848 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.732171617718288e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.7033235561035 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884213617642e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884204471758e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.3434617870545338e-07 --1.7319064660226147e-04 +-3.3434617870538287e-07 +-1.7319064660181738e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247444349836056e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = @@ -1257,41 +1257,41 @@ Using GMRES iterative linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = -5.6319515876694253e-08 +5.6319516133123465e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247444631465021e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247444631465021e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.332267629550188e-14 + 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.287858708565182e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.2247444631465021e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_0(:) = -4.0824815438004076e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --6.2776539506729569e-12 +-6.2773975214598238e-12 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.002435866521508459 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824816065769488e-04 +-4.0824816065743847e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1299,123 +1299,123 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631465021e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931442810073e-01 +-2.3090931442810117e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970852849047882e-08 --5.0322819831839579e-05 +-7.1176682279193614e-08 +-4.0258255865471747e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443741756492e+00 -1.7317695600377740e+00 +1.2247443919698198e+00 +1.7317796246017410e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5606520958631401e-01 +-2.5103384934194262e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970852849047882e-08 --5.5805126090860530e-05 +-1.0676502341879041e-07 +-6.6966092070611317e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443741756492e+00 -1.7317640777315151e+00 +1.2247443563814786e+00 +1.7317529167655357e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5606053790599703e-01 +-2.6109106593237924e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7794170569809576e-07 --1.1160821595267170e-04 +-1.7794170569798401e-07 +-1.0961460412277073e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442852047965e+00 -1.7317082746416532e+00 +1.7317102682534835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.8121399615089460e-01 +-2.8121566601713860e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3345627927357182e-07 --8.1651093896043496e-05 +-1.7794170569798404e-07 +-1.1160905703899460e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443296902227e+00 -1.7317382317637098e+00 +1.2247442852047965e+00 +1.7317082738005674e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6863875451510671e-01 +-2.8121399544639358e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442852047965e+00 -1.7317082738005669e+00 +1.7317082738005674e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002205765820445304, h_cfl = 4.358665215084585e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002117535187627492, h_cfl = 2.179332607542292e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.858219393173556 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419125651884173e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003698595756213618, h_cfl = 4.358665215084585e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003550651925965073, h_cfl = 2.179332607542292e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146190979928631 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.237313391026676e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247442852047965e+00 -1.7317082738005669e+00 +1.7317082738005674e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631465021e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.7794170285626894e-07 +-1.7794170285638069e-07 -1.1160905703899715e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.56773766224819, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.56773766224818, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 64.44251260861067, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 64.44251260861066, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0197475505808735 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01974755058191296 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.813872614936062e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.326799159987934e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.813872614936062e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.56776698106852 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.326799159987934e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.56776698106851 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.425041483437005e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.425034303297187e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.7795782736178756e-07 +-1.7795782736305922e-07 -1.1160905703899719e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247442851886747e+00 -1.7317082738005669e+00 +1.7317082738005674e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002435866521508459 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = @@ -1423,13 +1423,13 @@ Using GMRES iterative linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --3.8752706795920109e-08 +-3.8752706603585807e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.5245585208699220e-04 +-5.5245585208679043e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1437,123 +1437,123 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247442851886747e+00 -1.7317082738005669e+00 +1.7317082738005674e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.8121399545445414e-01 +-2.8121399545445447e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.7914710387710737e-08 --3.9660557364056374e-05 +-6.2331768310145836e-08 +-3.1728445891245142e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442072739643e+00 -1.7316686132432029e+00 +1.2247442228569063e+00 +1.7316765453546761e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.9748984560165198e-01 +-2.9423461768047326e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.7914710387710737e-08 --4.1955995353792824e-05 +-9.3497652465218741e-08 +-5.0347182177550800e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442072739643e+00 -1.7316663178052132e+00 +1.2247441916910222e+00 +1.7316579266183898e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.9748794450457383e-01 +-3.0074282426701260e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5582942077542147e-07 --8.3911454471331814e-05 +-1.5582942077536456e-07 +-8.3076729631845192e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247441293592540e+00 -1.7316243623460956e+00 +1.7316251970709355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.1376260892459040e-01 +-3.1376329240088213e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1687206558156612e-07 --6.2073013147636625e-05 +-1.5582942077536456e-07 +-8.3911666847083876e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247441683166091e+00 -1.7316462007874194e+00 +1.2247441293592540e+00 +1.7316243621337202e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0562590425724756e-01 +-3.1376260875069645e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247441293592540e+00 -1.7316243621337195e+00 +1.7316243621337202e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553839765699, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167251686175071, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.683471266304468 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193375207932e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003784607516262309, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003633223215611816, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.88072186506938 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201878652271481e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247441293592540e+00 -1.7316243621337195e+00 +1.7316243621337202e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631465021e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.2839573540567387e-07 --1.9552072388639985e-04 +-3.2839573540576038e-07 +-1.9552072388617781e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 79.82720621190367, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 79.82720621181299, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 112.892717671228, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 112.8927176710997, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03458090468247423 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03458090468425559 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.108501437863291e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.833427354139076e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.108501437863291e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.82726049775935 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.833427354139076e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.82726049766868 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.371022992941138e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.371021702201104e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.2840843660907345e-07 --1.9552072388639982e-04 +-3.2840843661122809e-07 +-1.9552072388617772e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247441347380654e+00 -1.7316243621337195e+00 +1.7316243621337202e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002717933260754229 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = @@ -1561,13 +1561,13 @@ Using GMRES iterative linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.4588749624294499e-08 +-3.4588749239607253e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.6908286769073217e-04 +-8.6908286769111598e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1575,123 +1575,123 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247441347380654e+00 -1.7316243621337195e+00 +1.7316243621337202e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.1376260606129014e-01 +-3.1376260606129081e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2256968531194404e-07 --4.4250997594481636e-05 +-9.8055748249598534e-08 +-3.5400798075585388e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247440121683801e+00 -1.7315801111361251e+00 +1.2247440366823172e+00 +1.7315889613356445e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.3003602000813270e-01 +-3.2678129317480814e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2256968531194404e-07 --4.6546091998672899e-05 +-1.4708362237439777e-07 +-5.5855301080906151e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247440121683801e+00 -1.7315778160417208e+00 +1.2247439876544430e+00 +1.7315685068326392e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.3003416235359007e-01 +-3.3328854278921849e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4513937062388807e-07 --9.3091660014786321e-05 +-2.4513937062399634e-07 +-9.2257054570601423e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247438895986948e+00 -1.7315312704737047e+00 +1.7315321050791497e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630626088737626e-01 +-3.4630692857162360e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8385452796791604e-07 --6.8958292697798818e-05 +-2.4513937062399634e-07 +-9.3091860167010529e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247439508835374e+00 -1.7315554038410217e+00 +1.2247438895986948e+00 +1.7315312702735532e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.3817084451382617e-01 +-3.4630626072725512e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247438895986948e+00 -1.7315312702735526e+00 +1.7315312702735532e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885820264398724, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810387453822775, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418294686795201 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668421778799e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003160678453772991, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003034251315622071, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.75721059397318 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674544222306e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247438895986948e+00 -1.7315312702735526e+00 +1.7315312702735532e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.2247444631465021e+00 -1.7318198828576059e+00 +1.7318198828576064e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --5.3849435978571907e-07 --2.8861258405332713e-04 +-5.3849435978584825e-07 +-2.8861258405310508e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8348215690963, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8348215690056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6436027828297, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6436027827015, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05100462411786148 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05100462412051134 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.464460115747127e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.277024904141939e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.464460115747127e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8349111208192 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.277024904141939e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8349111207285 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999444839290604e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.99944295172404e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.3846462366900770e-07 --2.8861258405332718e-04 +-5.3846462367226676e-07 +-2.8861258405310508e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247439246818783e+00 -1.7315312702735526e+00 +1.7315312702735532e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = @@ -1699,23 +1699,23 @@ Using GMRES iterative linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = -5.6302794985155313e-08 +5.6302795305745260e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247439528447472e+00 -1.7315312702735526e+00 +1.7315312702735532e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247439528447472e+00 -1.7315312702735526e+00 +1.7315312702735532e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.776356839400250e-14 + 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out index fc2aaf3340..78a6b3b539 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out @@ -37,10 +37,10 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.7665928206329331e-25 -6.1989172313708505e-25 +7.0132742565063471e-25 +4.9591337850966802e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -48,203 +48,203 @@ Using dense direct linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.6371994311708601e-07 +-6.9097595397071484e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.7665928206329331e-25 --6.4606546253197653e-15 +1.0519911384759520e-24 +-7.7527855447021162e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688708e+00 +1.7320508075688694e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.6371993670721352e-07 +-1.0364639248280051e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.7533185641265866e-24 --1.2921309154747402e-14 +-1.0571980204099113e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688643e+00 +1.7320508075688665e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.7274398799278809e-06 +-1.7274398821072365e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3149889230949401e-24 --7.2682364172830469e-15 +1.7533185641265866e-24 +-1.2921309202394519e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688699e+00 +1.7320508075688643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.2955799098182033e-06 +-1.7274398799278809e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688645e+00 +1.7320508075688643e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.283118913371641e-06, h_cfl = 1.496006819526213e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.231794156836775e-06, h_cfl = 7.480034097631063e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472585 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688645e+00 +1.7320508075688643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.7274398800560780e-06 +-1.7274398799278809e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.2183078785983163e-23 --1.0639251752699482e-12 +5.7746463028786526e-23 +-8.5114014015279349e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075678007e+00 +1.7320508075680132e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.2845130562184719e-05 +-5.8621588925090254e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.2183078785983163e-23 --4.4865103090255557e-11 +8.6619694543179800e-23 +-5.3838120474252888e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075239995e+00 +1.7320508075150263e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.2845086762910995e-05 +-8.7068621390116988e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.4436615757196633e-22 --8.9730152228821661e-11 +-7.3802453613823533e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074950618e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4396277740047413e-04 +-1.4396279332666562e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0827461817897473e-22 --5.0872192687095676e-11 +1.4436615757196635e-22 +-8.9730179195244251e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075179923e+00 +1.7320508074791341e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0840394303739344e-04 +-1.4396277740021774e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074791341e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.108004205495869e-05, h_cfl = 1.231794156836775e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.023684037276034e-05, h_cfl = 6.158970784183875e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508074791343e+00 +1.7320508074791341e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.4396277740047413e-04 +-1.4396277740021774e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1858778797567304e-21 --1.4566758729363121e-09 +9.4870230380538442e-22 +-1.1653406983469745e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508060224584e+00 +1.7320508063137934e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3123431954948648e-03 +-1.0786661695545738e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1858778797567304e-21 --1.3278839880753896e-08 +1.4230534557080764e-21 +-1.5934593554699443e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507942002945e+00 +1.7320507915445404e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3123313822883717e-03 +-1.5460065179100856e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.3717557595134609e-21 --2.6557440699533699e-08 +-2.2258482762900637e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507809216936e+00 +1.7320507852206513e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.4807117632403230e-03 +-2.4807160560409314e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.7788168196350954e-21 --1.5484858693447888e-08 +2.3717557595134609e-21 +-2.6557560105241386e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507919942756e+00 +1.7320507809215739e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8965245322040000e-03 +-2.4807117631208860e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -256,7 +256,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007461211873381922, h_cfl = 2.023684037276034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004047368074552068, h_cfl = 1.011842018638017e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -268,137 +268,137 @@ Using dense direct linear solver -2.4807117631208860e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.3717557595134611e-20 --5.0201767961106226e-07 +1.8974046076107690e-20 +-4.0161414368884986e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320502789038943e+00 +1.7320503793074302e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5850485697902034e-02 +-2.1176173480527707e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.3717557595134611e-20 --5.2313215262676757e-06 +2.8461069114161532e-20 +-6.2774773325864797e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320455496000478e+00 +1.7320445034442413e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5845826971662583e-02 +-3.0519395454806933e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 4.7435115190269222e-20 --1.0460757494550389e-05 +-8.7410892356701039e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320403201640795e+00 +1.7320420398323382e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --4.9215386380348593e-02 +-4.9217057183954721e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.5576336392701913e-20 --6.0727889759923864e-06 +4.7435115190269222e-20 +-1.0461685802498012e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320447081325980e+00 +1.7320403192357714e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.7531810140477219e-02 +-4.9215385478418014e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320403192357716e+00 +1.7320403192357714e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001474585099681421, h_cfl = 4.047368074552068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001415601695694164, h_cfl = 2.023684037276034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002798042933992903, h_cfl = 4.047368074552068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002686121216633187, h_cfl = 2.023684037276034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320403192357716e+00 +1.7320403192357714e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --4.9215385478418264e-02 +-4.9215385478418014e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6526213959361231e-22 --2.3736874368566389e-07 +4.5220971167488994e-22 +-1.8989499494853018e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320400818670278e+00 +1.7320401293407766e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --4.9772295306148802e-02 +-4.9660913150584490e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6526213959361231e-22 --2.4005475304776807e-07 +6.7831456751233477e-22 +-2.8806570228261830e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320400791810187e+00 +1.7320400311700692e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --4.9772292697325332e-02 +-4.9883674426259524e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1305242791872246e-21 --4.8010948093051328e-07 +1.1305242791872248e-21 +-4.7913275109108114e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320398391262908e+00 +1.7320398401030204e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.0329202291137985e-02 +-5.0329203239485976e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.4789320939041850e-22 --3.5907486669449202e-07 +1.1305242791872246e-21 +-4.8010949313695675e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320399601609049e+00 +1.7320398391262783e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.0050748175839127e-02 +-5.0329202291125912e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -407,10 +407,10 @@ Using dense direct linear solver 1.7320398391262783e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008221669095400283, h_cfl = 9.646119455459875e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006519856051646501, h_cfl = 9.646119455459875e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001929223891091975, h_cfl = 4.823059727729937e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247448713915889e+00 @@ -474,60 +474,60 @@ Using dense direct linear solver -5.0329202301590562e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3910463919348703e-08 --4.8548149749914859e-06 +-1.1128371135478964e-08 +-3.8838519799931891e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448574642379e+00 -1.7320349843133851e+00 +1.2247448602463307e+00 +1.7320359552763800e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.1467840062017012e-02 +-5.9240038614689558e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3910463919348703e-08 --5.9292612790731819e-06 +-1.6692556703218446e-08 +-7.1151028428528231e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448574642379e+00 -1.7320339098670809e+00 +1.2247448546821451e+00 +1.7320327240255171e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.1466803746215971e-02 +-6.3694435883189085e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7820927838697407e-08 --1.1858322629626156e-05 +-1.1467621183740195e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448435537740e+00 -1.7320279808057304e+00 +1.7320283715071763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --7.2605326305814510e-02 +-7.2605700629304173e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0865695879023057e-08 --8.4909002759096513e-06 +-2.7820927838697407e-08 +-1.1858418889750722e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448505090059e+00 -1.7320313482280840e+00 +1.2247448435537740e+00 +1.7320279807094703e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.7036339800849387e-02 +-7.2605326213589491e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -536,10 +536,10 @@ Using dense direct linear solver 1.7320279807094703e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008364545860675966, h_cfl = 1.929223891091975e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029964026248927, h_cfl = 9.646119455459875e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.16227689452043 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.442705218408666e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001771810494086383, h_cfl = 1.929223891091975e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001700938074322928, h_cfl = 9.646119455459875e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.816696093060337 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278496001669e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -551,60 +551,60 @@ Using dense direct linear solver -7.2605326213589491e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4276586658208013e-09 --3.2361773108821604e-06 +-5.1421269326566412e-09 +-2.5889418487057284e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448371261154e+00 -1.7320247445321595e+00 +1.2247448384116471e+00 +1.7320253917676216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.7751969211200825e-02 +-7.6722625550088366e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4276586658208013e-09 --3.4655743835856634e-06 +-7.7131903989849622e-09 +-4.1586882533110442e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448371261154e+00 -1.7320245151350866e+00 +1.2247448358405837e+00 +1.7320238220212170e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.7751750111932069e-02 +-7.8781057583085484e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2855317331641603e-08 --6.9311292357093984e-06 +-6.8477126394239047e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448306984567e+00 -1.7320210495802346e+00 +1.7320211329968309e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --8.2898362025555242e-02 +-8.2898441449646407e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.6414879987312010e-09 --5.1123304354090184e-06 +-1.2855317331641603e-08 +-6.9311385396133930e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448339122859e+00 -1.7320228683790349e+00 +1.2247448306984567e+00 +1.7320210495709307e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --8.0325114856887550e-02 +-8.2898362016696578e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -613,10 +613,10 @@ Using dense direct linear solver 1.7320210495709307e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001966024518003245, h_cfl = 8.914435013657296e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002957106536053494, h_cfl = 8.914435013657296e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001782887002731459, h_cfl = 4.457217506828648e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480985254579955e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057660152146372e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247448306984567e+00 @@ -680,60 +680,60 @@ Using dense direct linear solver -8.2898359333847427e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4993174407826685e-08 --1.1691434953061251e-05 +-5.1994539526261350e-08 +-9.3531479624490016e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447710817292e+00 -1.7320093581416220e+00 +1.2247447840803640e+00 +1.7320116964286127e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --9.9183578733839414e-02 +-9.5926392684350784e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.4993174407826685e-08 --1.3988194320090101e-05 +-7.7991809289392019e-08 +-1.6785803108144724e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447710817292e+00 -1.7320070613822549e+00 +1.2247447580830944e+00 +1.7320042637734669e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --9.9181413497115678e-02 +-1.0243824072142721e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2998634881565337e-07 --2.7975777898917843e-05 +-1.2998634881565334e-07 +-2.7140606311584440e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447060885548e+00 -1.7319930737986762e+00 +1.7319939089702636e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546623669295350e-01 +-1.1546701618626057e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.7489761611740020e-08 --2.0120781181901383e-05 +-1.2998634881565337e-07 +-2.7976064643551042e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447385851420e+00 -1.7320009287953932e+00 +1.2247447060885548e+00 +1.7319930735119315e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.0732441998008208e-01 +-1.1546623642532522e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -742,10 +742,10 @@ Using dense direct linear solver 1.7319930735119315e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001522939033375331, h_cfl = 2.820667392457702e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001462021472040318, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.183246617271065 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422913020145e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002557258296335922, h_cfl = 2.820667392457702e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002454967964482485, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.703500352600681 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971880899068e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247447060885548e+00 @@ -837,76 +837,76 @@ Using dense direct linear solver -1.1546620481505229e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4485434832388956e-08 --2.5163926522260043e-05 +-3.5588347865911163e-08 +-2.0131141217808034e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447248440948e+00 -1.7319679095963543e+00 +1.2247447337411819e+00 +1.7319729423816588e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.4063038211775231e-01 +-1.3559724830678543e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4485434832388956e-08 --3.0648037736035022e-05 +-5.3382521798866741e-08 +-3.6777547752519968e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447248440948e+00 -1.7319624254851405e+00 +1.2247447159470080e+00 +1.7319562959751240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.4062534329196719e-01 +-1.4565763007324425e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970869664777911e-08 --6.1293879216602596e-05 +-8.8970869664777924e-08 +-5.9299683538853532e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446803586601e+00 -1.7319317796436600e+00 +1.7319337738393377e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.6578818116590505e-01 +-1.6578998446740018e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.6728152248583440e-08 --4.3914709547216480e-05 +-8.8970869664777898e-08 +-6.1294880042328371e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447026013774e+00 -1.7319491588133293e+00 +1.2247446803586601e+00 +1.7319317786428343e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.5320820431207477e-01 +-1.6578818026088288e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446803586601e+00 -1.7319317786428341e+00 +1.7319317786428343e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002572109837952736, h_cfl = 4.358665215084587e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002469225444434626, h_cfl = 2.179332607542293e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.665095442267654 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573779983966e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004317027089119721, h_cfl = 4.358665215084587e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004144346005554933, h_cfl = 2.179332607542293e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.508291646745585 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645603901512e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247446803586601e+00 -1.7319317786428341e+00 +1.7319317786428343e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 @@ -916,28 +916,28 @@ Using dense direct linear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -8.8970873619722298e-08 --6.1294880042472855e-05 +-6.1294880042250810e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 25.01207820825822 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 25.01207820816762 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01088917366868417 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01088917366864545 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.8987754617939093e-08 --6.1294868417663477e-05 +-8.8987754617883202e-08 +-6.1294868417441432e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247446803417750e+00 -1.7319317786544588e+00 +1.7319317786544590e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001435866521508459 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = @@ -945,13 +945,13 @@ Using dense direct linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --3.8729826894760647e-08 +-3.8729826766554323e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.4833193319369225e-04 +-3.4833193319358286e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -959,83 +959,83 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247446803417750e+00 -1.7319317786544588e+00 +1.7319317786544590e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.6578818027983722e-01 +-1.6578818027983747e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.9126426285560101e-08 --2.3381665708511786e-05 +-3.9301141028435741e-08 +-1.8705332566809457e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446312153487e+00 -1.7319083969887503e+00 +1.2247446410406340e+00 +1.7319130733218921e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8207064312064725e-01 +-1.7881404359005929e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.9126426285560101e-08 --2.5678036308710637e-05 +-5.8951711542653604e-08 +-3.0813620942545718e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446312153487e+00 -1.7319061006181500e+00 +1.2247446213900635e+00 +1.7319009650335164e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8206858815981558e-01 +-1.8532483330724686e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8252852571120202e-08 --5.1355492981320207e-05 +-9.8252852571089325e-08 +-5.0520448661616002e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247445820889225e+00 -1.7318804231614775e+00 +1.7318812582057974e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9835032490412163e-01 +-1.9835106431159291e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.3689639428340148e-08 --3.7655704524693269e-05 +-9.8252852571089352e-08 +-5.1355748664757642e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446066521355e+00 -1.7318941229499341e+00 +1.2247445820889225e+00 +1.7318804229057942e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.9021006508519731e-01 +-1.9835032467772160e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247445820889225e+00 -1.7318804229057940e+00 +1.7318804229057942e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257738564091452, h_cfl = 2.820667392457701e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167429021527794, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.684099966282349 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487926046185586e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003788366433890492, h_cfl = 2.820667392457701e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003636831776534873, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.89351515268885 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825834964861e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247445820889225e+00 -1.7318804229057940e+00 +1.7318804229057942e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 @@ -1044,29 +1044,29 @@ Using dense direct linear solver 1.7319930735228766e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.8184909944076147e-07 --1.1265061708254365e-04 +-1.8184909944081206e-07 +-1.1265061708232160e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.96839978231188 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.96839978222128 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02001100770869457 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02001100770865586 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.8186415876442011e-07 --1.1265059571958069e-04 +-1.8186415876441482e-07 +-1.1265059571935865e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247445874653708e+00 -1.7318804229271569e+00 +1.7318804229271572e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001717933260754229 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = @@ -1074,13 +1074,13 @@ Using dense direct linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.4550465257831265e-08 +-3.4550465129621142e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --6.6495933844260696e-04 +-6.6495933844252998e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1088,67 +1088,67 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247445874653708e+00 -1.7318804229271569e+00 +1.7318804229271572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9835032200841340e-01 +-1.9835032200841363e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.3781456162765359e-08 --2.7974014278630856e-05 +-7.5025164930203600e-08 +-2.2379211422904710e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247444936839147e+00 -1.7318524489128784e+00 +1.2247445124402059e+00 +1.7318580437157343e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.1463126781657504e-01 +-2.1137498553004422e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.3781456162765359e-08 --3.0270170926603478e-05 +-1.1253774739530540e-07 +-3.6324185411346818e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247444936839147e+00 -1.7318501527562304e+00 +1.2247444749276235e+00 +1.7318440987417458e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.1462925622516324e-01 +-2.1788518587995062e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8756291232553072e-07 --6.0539774450176736e-05 +-1.8756291232550901e-07 +-5.9704802389406826e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443999024585e+00 -1.7318198831527067e+00 +1.7318207181247678e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090934630587739e-01 +-2.3091006994818405e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.4067218424414805e-07 --4.4543992413661988e-05 +-1.8756291232550901e-07 +-6.0540017922980394e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247444467931865e+00 -1.7318358789347432e+00 +1.2247443999024585e+00 +1.7318198829092342e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2276991518060965e-01 +-2.3090934609486780e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1157,10 +1157,10 @@ Using dense direct linear solver 1.7318198829092342e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885990638869279, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810551013314508, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418874547760627 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213369269281e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003163681716022767, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003037134447381857, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.76743204641205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107130244008e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247443999024585e+00 @@ -1173,7 +1173,7 @@ Using dense direct linear solver 1.7319930735228766e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.3437359305001307e-07 +-3.3437359305005457e-07 -1.7319061364240440e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1189,7 +1189,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03076033257676166 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.3434902404443183e-07 +-3.3434902404447334e-07 -1.7319058080374219e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -1252,76 +1252,76 @@ Using dense direct linear solver -2.3090931450285537e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970842294003302e-08 --5.0322819848131106e-05 +-7.1176673835202644e-08 +-4.0258255878504887e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443741725599e+00 -1.7317695601222247e+00 +1.2247443919667282e+00 +1.7317796246861943e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5606520965982216e-01 +-2.5103384941569962e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.8970842294003302e-08 --5.5805126106880403e-05 +-1.0676501075280396e-07 +-6.6966092089835048e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443741725599e+00 -1.7317640778159660e+00 +1.2247443563783913e+00 +1.7317529168499830e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5606053797950556e-01 +-2.6109106600563836e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.7794168458800660e-07 --1.1160821598471161e-04 +-1.0961460415490935e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442852017176e+00 -1.7317082747260881e+00 +1.7317102683379180e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.8121399622315751e-01 +-2.8121566608940096e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3345626344100495e-07 --8.1651093920175221e-05 +-1.7794168458800660e-07 +-1.1160905707103434e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443296871388e+00 -1.7317382318481527e+00 +1.2247442852017176e+00 +1.7317082738850018e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6863875458799219e-01 +-2.8121399551865606e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442852017176e+00 -1.7317082738850020e+00 +1.7317082738850018e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002205765817803392, h_cfl = 4.358665215084585e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002117535185091256, h_cfl = 2.179332607542292e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821938735472 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564738839e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003698595758998121, h_cfl = 4.358665215084585e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003550651928638196, h_cfl = 2.179332607542292e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146190986061523 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731336310518e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.2247442852017176e+00 -1.7317082738850020e+00 +1.7317082738850018e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 @@ -1331,23 +1331,23 @@ Using dense direct linear solver [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.7794170287257101e-07 --1.1160905707074953e-04 +-1.1160905707097157e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.54793022201162 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.54793022210224 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.7794862201029117e-07 --1.1156047068530326e-04 +-1.7794862201033947e-07 +-1.1156047068552521e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.2247442851947801e+00 -1.7317083224713874e+00 +1.7317083224713872e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002435866521508459 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = @@ -1355,13 +1355,13 @@ Using dense direct linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --1.4429507578079948e-08 +-1.4429507642191379e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.5243509413804165e-04 +-5.5243509413809629e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1369,83 +1369,83 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247442851947801e+00 -1.7317083224713874e+00 +1.7317083224713872e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.8121403621851360e-01 +-2.8121403621851349e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.7911782824223786e-08 --3.9660563113149043e-05 +-6.2329426259385191e-08 +-3.1728450490519222e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442072829973e+00 -1.7316686619082742e+00 +1.2247442228653538e+00 +1.7316765940208967e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.9748988590185105e-01 +-2.9423465807343857e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.7911782824223786e-08 --4.1956001037465689e-05 +-9.3494139389077786e-08 +-5.0347188997957032e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442072829973e+00 -1.7316663664703500e+00 +1.2247441917006407e+00 +1.7316579752823893e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.9748798480486938e-01 +-3.0074286447456267e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5582356564844757e-07 --8.3911465838704772e-05 +-1.5582356564846298e-07 +-8.3076741023012011e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247441293712145e+00 -1.7316244110055488e+00 +1.7316252457303642e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.1376264876118676e-01 +-3.1376333223744374e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1686767423633569e-07 --6.2073021697687145e-05 +-1.5582356564846298e-07 +-8.3911678214450695e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247441683271059e+00 -1.7316462494496898e+00 +1.2247441293712145e+00 +1.7316244107931726e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0562594432564943e-01 +-3.1376264858729230e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247441293712145e+00 -1.7316244107931731e+00 +1.7316244107931726e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553825035457, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167251672034038, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.683471216170827 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193460191508e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003784607662870729, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036332233563559, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.88072236404378 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201876802759877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.2247441293712145e+00 -1.7316244107931731e+00 +1.7316244107931726e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 @@ -1454,24 +1454,24 @@ Using dense direct linear solver 1.7318198829420728e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.2839027103691621e-07 --1.9547214889970022e-04 +-3.2839027103689095e-07 +-1.9547214890014430e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.77268774500753 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.77268774518876 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.2837835770642712e-07 --1.9538705832610731e-04 +-3.2837835770649854e-07 +-1.9538705832655121e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.2247441347650445e+00 -1.7316244958837468e+00 +1.7316244958837463e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002717933260754229 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = @@ -1479,13 +1479,13 @@ Using dense direct linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = -3.2232303305719437e-08 +3.2232303113375844e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.6920111134588553e-04 +-8.6920111134552341e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1493,83 +1493,83 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247441347650445e+00 -1.7316244958837468e+00 +1.7316244958837463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --3.1376271556291596e-01 +-3.1376271556291568e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2258636161306683e-07 --4.4251013037864910e-05 +-9.8069089290412613e-08 +-3.5400810430291899e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247440121786830e+00 -1.7315802448707089e+00 +1.2247440366959552e+00 +1.7315890950733162e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.3003612824799444e-01 +-3.2678140166700720e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2258636161306683e-07 --4.6546107264105331e-05 +-1.4710363393561892e-07 +-5.5855319399421821e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247440121786830e+00 -1.7315779497764827e+00 +1.2247439876614106e+00 +1.7315686405643469e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.3003427059370549e-01 +-3.3328865077705216e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4517272322613365e-07 --9.3091690545722729e-05 +-2.4517272322603153e-07 +-9.2257085166260337e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247438895923213e+00 -1.7315314041932011e+00 +1.7315322387985801e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630636786615904e-01 +-3.4630703555031483e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8387954241960025e-07 --6.8958315662702045e-05 +-2.4517272322603153e-07 +-9.3091890697931216e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247439508855020e+00 -1.7315555375680840e+00 +1.2247438895923213e+00 +1.7315314039930485e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.3817095212315817e-01 +-3.4630636770603690e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247438895923213e+00 -1.7315314039930489e+00 +1.7315314039930485e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885820271331692, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810387460478425, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418294710391211 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668406571682e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003160678668023024, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003034251521302103, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.75721132316242 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.216741548409017e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.2247438895923213e+00 -1.7315314039930489e+00 +1.7315314039930485e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -1578,24 +1578,24 @@ Using dense direct linear solver 1.7318198829420728e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --5.3851392912567548e-07 --2.8847894902384041e-04 +-5.3851392912562953e-07 +-2.8847894902428450e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7290852919884 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7290852921696 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.3843774558909810e-07 --2.8835338357697290e-04 +-5.3843774558914892e-07 +-2.8835338357741677e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.2247439247056566e+00 -1.7315315295584959e+00 +1.7315315295584954e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = @@ -1603,23 +1603,23 @@ Using dense direct linear solver 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = -1.8589770046461746e-07 +1.8589770020814557e-07 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.2247439528685258e+00 -1.7315315295584959e+00 +1.7315315295584954e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.2247439528685258e+00 -1.7315315295584959e+00 +1.7315315295584954e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952868526e+00 1.731531529558496e+00 3.524580627356499e-11 2.592849255300678e-07 + 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out index a952b02930..810fd5703c 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out @@ -31,10 +31,10 @@ Using Ex-MRI-SR method 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 -8.5332324353576826e-25 +9.6542504327718640e-25 +6.8265859482861472e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -42,203 +42,203 @@ Using Ex-MRI-SR method [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.1889694230616173e-06 +-9.5117553744560093e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 --1.2242553240514061e-14 +1.4481375649157797e-24 +-1.4691063873370668e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688650e+00 +1.7320508075688625e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.1889694108828618e-06 +-1.4267632945325369e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.4135626081929657e-24 --2.4485106230224258e-14 +-2.0033268699306856e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688528e+00 +1.7320508075688572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3779388340687632e-06 +-2.3779388384274727e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8101719561447239e-24 --1.3772872301180226e-14 +2.4135626081929657e-24 +-2.4485106355409614e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688634e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.7834541255044815e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3779388338123684e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --2.0160744284751053e-12 +7.9491945601514801e-23 +-1.6128595429539865e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075668364e+00 +1.7320508075672398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0027630277357223e-04 +-8.0696623353025584e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --8.5016690475470017e-11 +1.1923791840227221e-22 +-1.0202002013558598e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508074838359e+00 +1.7320508074668328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0027621977792367e-04 +-1.1985588591683926e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.9872986400378700e-22 --1.7003324021947768e-10 +-1.3985120439909713e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508074290015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817461380875463e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.4904739800284026e-22 --9.6399751925935201e-11 +1.9872986400378700e-22 +-1.7003331056080624e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508074724528e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4922542246468209e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.7603134562689734e-09 +1.3059534380233044e-21 +-2.2082507650180351e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508046385057e+00 +1.7320508051905688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8065329798490591e-03 +-1.4848595168265363e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.5162648015366993e-08 +1.9589301570349567e-21 +-3.0195140349873647e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507822361713e+00 +1.7320507772036791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8065106008801368e-03 +-2.1281804830314676e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582609e-21 --5.0324672611040883e-08 +3.2648835950582613e-21 +-4.2178397238593067e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507570741466e+00 +1.7320507652204222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4148689076686934e-03 +-3.4148770378833108e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.4486626962936955e-21 --2.9342862858857047e-08 +3.2648835950582613e-21 +-5.0324983905675798e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507780559564e+00 +1.7320507570738355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6106953640960742e-03 +-3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -247,10 +247,10 @@ Using Ex-MRI-SR method 1.7320507570738355e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -262,162 +262,162 @@ Using Ex-MRI-SR method -3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.5129339229286827e-07 +2.6119068760466087e-20 +-7.6103471383429466e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320498057804432e+00 +1.7320499960391216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.5586084640419201e-02 +-2.9151178844601260e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.9133548298325844e-06 +3.9178603140699122e-20 +-1.1895748900626277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320408437190056e+00 +1.7320388613249349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.5577306688127808e-02 +-4.2010812460658582e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.5297671901165209e-20 --1.9821819042637574e-05 +-1.6563084595280827e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320309352547929e+00 +1.7320341939892403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.7747965740933266e-02 +-6.7751097007922326e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.8973253925873913e-20 --1.1507434916573431e-05 +6.5297671901165209e-20 +-1.9824212659222936e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320392496389190e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1664931509040730e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --6.7747963440942832e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.4979707041077427e-07 +6.2249751613389108e-22 +-3.5983765632861759e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320304830641062e+00 +1.7320305730235199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.8514575742804049e-02 +-6.8361252939970668e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.5488681702461341e-07 +9.3374627420083658e-22 +-5.4586417701899842e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320304779743596e+00 +1.7320303869969993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.8514570854394510e-02 +-6.8667892851103390e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.5562437903347276e-21 --9.0977356913827813e-07 +-9.0792275404196263e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320300230876076e+00 +1.7320300249384222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.9281182547766579e-02 +-6.9281184324548689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1671828427510456e-21 --6.8042154646761999e-07 +1.5562437903347276e-21 +-9.0977360024710662e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320302524396303e+00 +1.7320300230875760e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.8897877999666526e-02 +-6.9281182547736284e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = --1.2254796263946310e-04 +-1.2254796263978359e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.3555429072323917e-05 +-8.3555429072542438e-05 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -433,60 +433,60 @@ Using Ex-MRI-SR method 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094942284548030e-08 -1.1004305373251416e-20 +-8.8759538276616374e-09 +8.8034442986011326e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448602966466e+00 +1.2247448625156352e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5333743569277778e-02 +-1.2266837313138872e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094942284548030e-08 --2.0360974959501188e-06 +-1.3313930741492457e-08 +-2.4432856161640473e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448602966466e+00 -1.7320487714713813e+00 +1.2247448580776581e+00 +1.7320483642832609e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5331725496051852e-02 +-1.8398309535509579e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2189884569096061e-08 --4.0716590505205752e-06 +-2.2189884569154093e-08 +-3.3312831891838524e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448492017043e+00 -1.7320467359098266e+00 +1.7320474762856881e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0665413589536904e-02 +-3.0666140857096930e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6642413426822047e-08 --2.2904091653250148e-06 +-2.2189884569154093e-08 +-4.0719245657587865e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448547491755e+00 -1.7320485171597120e+00 +1.2247448492017043e+00 +1.7320467356443114e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2999084375837905e-02 +-3.0665413328722541e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -495,10 +495,10 @@ Using Ex-MRI-SR method 1.7320467356443114e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674153956226, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967187797977, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164123207857 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469436431449e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449550912755, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391568876244, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023500218333 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360662349899e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -510,60 +510,60 @@ Using Ex-MRI-SR method -3.0665413328722541e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781591761825418e-11 --1.6802156961075714e-08 +-3.6625273409556126e-11 +-1.3441725568860572e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448491559227e+00 -1.7320467188421544e+00 +1.2247448491650790e+00 +1.7320467222025859e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.0728681121803422e-02 +-3.0716027560613347e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781591761825418e-11 --1.6836822575347090e-08 +-5.4937910114334173e-11 +-2.0204187088301074e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448491559227e+00 -1.7320467188074888e+00 +1.2247448491467665e+00 +1.7320467154401245e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.0728681087752847e-02 +-3.0741334643420156e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1563183523650836e-11 --3.3673645113380280e-08 +-9.1563183523890305e-11 +-3.3661039436879439e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448491101411e+00 -1.7320467019706662e+00 +1.7320467019832719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0791948878957975e-02 +-3.0791948891339568e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8672387642738124e-11 --2.5242234243740391e-08 +-9.1563183523890305e-11 +-3.3673645131694701e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448491330319e+00 -1.7320467104020771e+00 +1.2247448491101411e+00 +1.7320467019706662e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0760314992102761e-02 +-3.0791948878957975e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -572,10 +572,10 @@ Using Ex-MRI-SR method 1.7320467019706662e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634421513462e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014730989436e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.618934781454142e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.26243167642398e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247448491101411e+00 @@ -588,7 +588,7 @@ Using Ex-MRI-SR method [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.0207732054765795e-04 +-1.0207732054782058e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -604,60 +604,60 @@ Using Ex-MRI-SR method 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186016921554643e-09 -9.0815184667034262e-22 +-8.9488135372579708e-10 +7.2652147733627406e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448702729873e+00 +1.2247448704967077e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2653717796963985e-03 +-1.0122963183480304e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186016921554643e-09 --1.3866420144848115e-08 +-1.3423220305886959e-09 +-1.6639686003584847e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448702729873e+00 -1.7320507937024570e+00 +1.2247448700492669e+00 +1.7320507909291911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2653579234064838e-03 +-1.5184311676782677e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372033843109285e-09 --2.7732536604817700e-08 +-2.2372033843144929e-09 +-2.2690215724383886e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448691543856e+00 -1.7320507798363405e+00 +1.7320507848786615e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5307296606774453e-03 +-2.5307346956310564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6779025382331965e-09 --1.5599608810181516e-08 +-2.2372033843144929e-09 +-2.7732688292285554e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448697136865e+00 -1.7320507919692685e+00 +1.2247448691543856e+00 +1.7320507798361888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8980472633171931e-03 +-2.5307296605260095e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -666,10 +666,10 @@ Using Ex-MRI-SR method 1.7320507798361888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404364362730721, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957006845874, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.064153609642308e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -681,60 +681,60 @@ Using Ex-MRI-SR method -2.5307296605260095e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372033843109283e-08 --5.5465375961367138e-07 +-1.7897627074515943e-08 +-4.4372300769093712e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448467823518e+00 -1.7320502251824292e+00 +1.2247448512567585e+00 +1.7320503361131812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.7840698771529573e-02 +-2.2778287553908518e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372033843109283e-08 --6.1017770822233959e-06 +-2.6846440611773909e-08 +-7.3219952793853821e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448467823518e+00 -1.7320446780591066e+00 +1.2247448423079450e+00 +1.7320434578409094e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.7835240803154377e-02 +-3.2896780932587015e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4744067686218566e-08 --1.2201161745591176e-05 +-4.4744067686289849e-08 +-1.0184125066536262e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448244103178e+00 -1.7320385786744432e+00 +1.7320405957111222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.3144939300901139e-02 +-5.3146894446824862e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.3558050764663921e-08 --7.0716009271379722e-06 +-4.4744067686289849e-08 +-1.2202338185223070e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448355963348e+00 -1.7320437082352618e+00 +1.2247448244103178e+00 +1.7320385774980036e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.0491503572970357e-02 +-5.3144938160558666e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -743,10 +743,10 @@ Using Ex-MRI-SR method 1.7320385774980036e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534110004361672, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472745604187206, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359862723658343 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809673922718e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949309541252, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991337159602, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499487980115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176952124453e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -758,60 +758,60 @@ Using Ex-MRI-SR method -5.3144938160558666e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548024738564205e-08 --1.4342442212646087e-05 +-2.2038419790886478e-08 +-1.1473953770116869e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447968622931e+00 -1.7320242350557911e+00 +1.2247448023718981e+00 +1.7320271035442334e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.4310189391329657e-02 +-7.8076593125180754e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548024738564205e-08 --2.2753136255971913e-05 +-3.3057629686329715e-08 +-2.7303542472186521e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447968622931e+00 -1.7320158243617476e+00 +1.2247447913526881e+00 +1.7320112739555313e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.4302188088322530e-02 +-9.0534479104434601e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5096049477128410e-08 --4.5501953823091131e-05 +-5.5096049477216190e-08 +-4.2443640164909580e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693142683e+00 -1.7319930755441806e+00 +1.7319961338578387e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620670923328e-01 +-1.1546906113297112e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1322037107846306e-08 --3.0974095399983003e-05 +-5.5096049477216190e-08 +-4.5504002284510041e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447830882807e+00 -1.7320076034026035e+00 +1.2247447693142683e+00 +1.7319930734957192e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9886380187369700e-02 +-1.1546620479733603e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -820,10 +820,10 @@ Using Ex-MRI-SR method 1.7319930734957192e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682863348538355, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535548814596821, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550367096815337 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844413390305e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351612077246, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577547594155, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379604302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247447693142683e+00 @@ -861,88 +861,88 @@ Using Ex-MRI-SR method [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620479733610e-01 +-1.1546620479733603e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237230590206332e-08 --3.4639861439200793e-05 +-4.8989784472165071e-08 +-2.7711889151360618e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447080770377e+00 -1.7319584336342799e+00 +1.2247447203244839e+00 +1.7319653616065678e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5010735423265642e-01 +-1.4317857537440354e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237230590206332e-08 --4.5032206269796875e-05 +-7.3484676708247593e-08 +-5.4038400486721287e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447080770377e+00 -1.7319480412894495e+00 +1.2247446958295916e+00 +1.7319390350952324e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5009786255770563e-01 +-1.5702504771559514e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2247446118041266e-07 --9.0058717534623268e-05 +-8.6279743215779046e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446468398071e+00 -1.7319030147781846e+00 +1.7319067937525034e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8473630415972764e-01 +-1.8473968004020713e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1855845885309498e-08 --6.3649095238232204e-05 +-1.2247446118041266e-07 +-9.0061294253857734e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446774584225e+00 -1.7319294244004810e+00 +1.2247446468398071e+00 +1.7319030122014654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.6741983375538932e-01 +-1.8473630185785844e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446468398071e+00 -1.7319030122014651e+00 +1.7319030122014654e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794540378942, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522758763785, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871264606313 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654011537726e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859543384, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051616486, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021752694152 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780367e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247446468398071e+00 -1.7319030122014651e+00 +1.7319030122014654e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = --3.2667200949979355e-04 +-3.2667200949966534e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.8767949346674467e-04 +-2.8767949346665729e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -958,85 +958,85 @@ Using Ex-MRI-SR method -1.1546620479733610e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357265795565941e-08 --1.5395493972978140e-05 +-3.0685812636443438e-08 +-1.2316395178382514e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447309570025e+00 -1.7319776780017462e+00 +1.2247447386284558e+00 +1.7319807571005408e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3086141134744872e-01 +-1.2778225502583998e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357265795565941e-08 --1.7448188179659822e-05 +-4.6028718954665143e-08 +-2.0937802813274544e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447309570025e+00 -1.7319756253075396e+00 +1.2247447232855493e+00 +1.7319721356929059e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3085951374569305e-01 +-1.3393835070065513e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6714531591131881e-08 --3.4895870332184797e-05 +-7.6714531591108588e-08 +-3.4149442992654482e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446925997367e+00 -1.7319581776253870e+00 +1.7319589240527264e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4625425348038215e-01 +-1.4625493687594601e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7535898693348918e-08 --2.5402336071937066e-05 +-7.6714531591108588e-08 +-3.4896102598401772e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447117783696e+00 -1.7319676711596472e+00 +1.2247446925997367e+00 +1.7319581773931207e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.3855741978800803e-01 +-1.4625425326772956e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446925997367e+00 -1.7319581773931210e+00 +1.7319581773931207e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868659677365, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391329027, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127174838516 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892963146e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133301555366, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967969493152, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487988559932 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555340877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247446925997367e+00 -1.7319581773931210e+00 +1.7319581773931207e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = --2.5852714618523724e-04 +-2.5852714618530132e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.0620138377137273e-04 +-3.0620138377135468e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1052,98 +1052,98 @@ Using Ex-MRI-SR method -1.1546620479733610e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310069188568624e-07 --5.7733102398668000e-05 +-1.2248055350854179e-07 +-4.6186481918934407e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446162135764e+00 -1.7319353403933204e+00 +1.2247446468337149e+00 +1.7319468870138002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320509139180953e-01 +-1.6165590008019315e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310069188568624e-07 --8.6602545695904691e-05 +-1.8372083026281267e-07 +-1.0392199434054436e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446162135764e+00 -1.7319064709500234e+00 +1.2247445855934380e+00 +1.7318891515013786e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910889278892e-01 +-1.8472395021199070e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0620138377137249e-07 --1.7317910889278878e-04 +-3.0620138377135443e-07 +-1.6268130450968434e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631128845e+00 -1.7318198943868264e+00 +1.7318303921912095e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932443690046e-01 +-2.3091842251066855e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2965103782852935e-07 --1.1906830484058438e-04 +-3.0620138377135443e-07 +-1.7319065496795329e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445396632306e+00 -1.7318740051908785e+00 +1.2247444631128845e+00 +1.7318198828407512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205197679216230e-01 +-2.3090931443030197e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631128845e+00 -1.7318198828407518e+00 +1.7318198828407512e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152476531, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191863774698, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.2751918637747 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462524817 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406948625086, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390670680083, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390670680086 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437386314593e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247444631128845e+00 -1.7318198828407518e+00 +1.7318198828407512e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247444631128845e+00 -1.7318198828407518e+00 +1.7318198828407512e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463112885e+00 1.731819882840752e+00 3.048206131950337e-11 1.686739636852508e-11 + 2.000000000000000e-03 1.224744463112885e+00 1.731819882840751e+00 3.048206131950337e-11 1.686806250233985e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247444631128845e+00 -1.7318198828407518e+00 +1.7318198828407512e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_0(:) = --4.0824810186075914e-04 +-4.0824810186107968e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824810186075925e-04 +-4.0824810186107979e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1151,92 +1151,92 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631128845e+00 -1.7318198828407518e+00 +1.7318198828407512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931443030263e-01 +-2.3090931443030197e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247443055822763e-07 --6.9272794329090713e-05 +-9.7979544446659036e-08 +-5.5418235463272412e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443406384539e+00 -1.7317506100464228e+00 +1.2247443651333401e+00 +1.7317644646052879e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.6553868341404174e-01 +-2.5861248262118824e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247443055822763e-07 --7.9661605024212434e-05 +-1.4696931666998853e-07 +-9.5593778880807416e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443406384539e+00 -1.7317402212357276e+00 +1.2247443161435678e+00 +1.7317242890618703e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.6552988755427787e-01 +-2.7245452269606524e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4494886111645526e-07 --1.5931793253256654e-04 +-2.4494886111664758e-07 +-1.5554005421864332e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442181640233e+00 -1.7316605649082193e+00 +1.7316643427865326e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0015446876784518e-01 +-3.0015759181124868e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8371164583734144e-07 --1.1559471422789185e-04 +-2.4494886111664758e-07 +-1.5932009251323642e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247442794012386e+00 -1.7317042881265239e+00 +1.2247442181640233e+00 +1.7316605627482380e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8284501460715050e-01 +-3.0015446698226061e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442181640233e+00 -1.7316605627482384e+00 +1.7316605627482380e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458424088719, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008712517, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733478541956 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614179993884e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571622288441, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188757396904, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314595661516 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025737e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247442181640233e+00 -1.7316605627482384e+00 +1.7316605627482380e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = --5.3079589301364548e-04 +-5.3079589301383782e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.9180341401045425e-04 +-4.9180341401068735e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1245,92 +1245,92 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631128845e+00 -1.7318198828407518e+00 +1.7318198828407512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931443030263e-01 +-2.3090931443030210e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5573788534727215e-08 --3.0787908590707007e-05 +-5.2459030827806639e-08 +-2.4630326872565551e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443975390959e+00 -1.7317890949321610e+00 +1.2247444106538536e+00 +1.7317952525138787e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.4629962777140188e-01 +-2.4322149393602580e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5573788534727215e-08 --3.2839950369520238e-05 +-7.8688546241709949e-08 +-3.9407926209993058e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443975390959e+00 -1.7317870428903823e+00 +1.2247443844243382e+00 +1.7317804749145411e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.4629786757555960e-01 +-2.4937568759209927e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3114757706945443e-07 --6.5679431353482534e-05 +-1.3114757706951658e-07 +-6.4933224659511029e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443319653075e+00 -1.7317542034093985e+00 +1.7317549496160916e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6168730335789359e-01 +-2.6168793680435465e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8360682802090809e-08 --4.8490241180630878e-05 +-1.3114757706951658e-07 +-6.5679627043645732e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443647522018e+00 -1.7317713925995712e+00 +1.2247443319653075e+00 +1.7317542032137074e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5399313863414069e-01 +-2.6168730319177369e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443319653075e+00 -1.7317542032137083e+00 +1.7317542032137074e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250121127217, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880116282128, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300436057982 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964755177207e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410310847327, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898413434, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477119050378 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938743709458e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247443319653075e+00 -1.7317542032137083e+00 +1.7317542032137074e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = --4.6265110417457339e-04 +-4.6265110417502214e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.1032529388327997e-04 +-5.1032529388362962e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1339,91 +1339,91 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631128845e+00 -1.7318198828407518e+00 +1.7318198828407512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931443030263e-01 +-2.3090931443030210e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5516264694163978e-07 --1.1545465721515122e-04 +-2.0413011755345169e-07 +-9.2363725772120770e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442079502375e+00 -1.7317044281835368e+00 +1.2247442589827671e+00 +1.7317275191149790e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862702537200613e-01 +-2.7708268582874290e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5516264694163978e-07 --1.4431351268600294e-04 +-3.0619517633017752e-07 +-1.7317561720701173e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442079502375e+00 -1.7316755693280659e+00 +1.2247441569177082e+00 +1.7316467072235442e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297632558507e-01 +-3.0014304366869166e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1032529388327957e-07 --2.8860297632558483e-04 +-5.1032529388362918e-07 +-2.7810814621573299e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439527875907e+00 -1.7315312798644262e+00 +1.7315417746945354e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623680550476e-01 +-3.4631463265062579e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8274397041245968e-07 --2.0563963141195788e-04 +-5.1032529388362918e-07 +-2.8861259243508406e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440803689140e+00 -1.7316142432093400e+00 +1.2247439527875907e+00 +1.7315312702483161e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746260580568852e-01 +-3.4630622911261660e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439527875907e+00 -1.7315312702483132e+00 +1.7315312702483161e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854906908199, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060710631871, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060710631873 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086788760326 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620236539269, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755427077698, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755427077701 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477366838e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247439527875907e+00 -1.7315312702483132e+00 +1.7315312702483161e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247439527875907e+00 -1.7315312702483132e+00 +1.7315312702483161e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952787591e+00 1.731531270248313e+00 4.568923017700399e-11 2.525712972101246e-11 + 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out index dcc0bdc70f..1e4e7caee7 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out @@ -32,10 +32,10 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 -8.5332324353576826e-25 +9.6542504327718640e-25 +6.8265859482861472e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -43,203 +43,203 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.1889694230616173e-06 +-9.5117553744560093e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 --1.2242553240514061e-14 +1.4481375649157797e-24 +-1.4691063873370668e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688650e+00 +1.7320508075688625e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.1889694108828618e-06 +-1.4267632945325369e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.4135626081929657e-24 --2.4485106230224258e-14 +-2.0033268699306856e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688528e+00 +1.7320508075688572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3779388340687632e-06 +-2.3779388384274727e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8101719561447239e-24 --1.3772872301180226e-14 +2.4135626081929657e-24 +-2.4485106355409614e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688634e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.7834541255044815e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3779388338123684e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --2.0160744284751053e-12 +7.9491945601514801e-23 +-1.6128595429539865e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075668364e+00 +1.7320508075672398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0027630277357223e-04 +-8.0696623353025584e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --8.5016690475470017e-11 +1.1923791840227221e-22 +-1.0202002013558598e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508074838359e+00 +1.7320508074668328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0027621977792367e-04 +-1.1985588591683926e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.9872986400378700e-22 --1.7003324021947768e-10 +-1.3985120439909713e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508074290015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817461380875463e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.4904739800284026e-22 --9.6399751925935201e-11 +1.9872986400378700e-22 +-1.7003331056080624e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508074724528e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4922542246468209e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.7603134562689734e-09 +1.3059534380233044e-21 +-2.2082507650180351e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508046385057e+00 +1.7320508051905688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8065329798490591e-03 +-1.4848595168265363e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.5162648015366993e-08 +1.9589301570349567e-21 +-3.0195140349873647e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507822361713e+00 +1.7320507772036791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8065106008801368e-03 +-2.1281804830314676e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582609e-21 --5.0324672611040883e-08 +3.2648835950582613e-21 +-4.2178397238593067e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507570741466e+00 +1.7320507652204222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4148689076686934e-03 +-3.4148770378833108e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.4486626962936955e-21 --2.9342862858857047e-08 +3.2648835950582613e-21 +-5.0324983905675798e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507780559564e+00 +1.7320507570738355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6106953640960742e-03 +-3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -248,10 +248,10 @@ Using fixed-point nonlinear solver 1.7320507570738355e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -263,149 +263,149 @@ Using fixed-point nonlinear solver -3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.5129339229286827e-07 +2.6119068760466087e-20 +-7.6103471383429466e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320498057804432e+00 +1.7320499960391216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.5586084640419201e-02 +-2.9151178844601260e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.9133548298325844e-06 +3.9178603140699122e-20 +-1.1895748900626277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320408437190056e+00 +1.7320388613249349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.5577306688127808e-02 +-4.2010812460658582e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.5297671901165209e-20 --1.9821819042637574e-05 +-1.6563084595280827e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320309352547929e+00 +1.7320341939892403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.7747965740933266e-02 +-6.7751097007922326e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.8973253925873913e-20 --1.1507434916573431e-05 +6.5297671901165209e-20 +-1.9824212659222936e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320392496389190e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1664931509040730e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --6.7747963440942832e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.4979707041077427e-07 +6.2249751613389108e-22 +-3.5983765632861759e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320304830641062e+00 +1.7320305730235199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.8514575742804049e-02 +-6.8361252939970668e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.5488681702461341e-07 +9.3374627420083658e-22 +-5.4586417701899842e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320304779743596e+00 +1.7320303869969993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.8514570854394510e-02 +-6.8667892851103390e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.5562437903347276e-21 --9.0977356913827813e-07 +-9.0792275404196263e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320300230876076e+00 +1.7320300249384222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.9281182547766579e-02 +-6.9281184324548689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1671828427510456e-21 --6.8042154646761999e-07 +1.5562437903347276e-21 +-9.0977360024710662e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320302524396303e+00 +1.7320300230875760e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.8897877999666526e-02 +-6.9281182547736284e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 @@ -413,33 +413,33 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.6052128249628413e-20 --2.0784481300495372e-05 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484795600596831 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484795600868763 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002839677462856478 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002839677462944967 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.8558590180178093e-08 --2.0784481300495372e-05 +-5.8558590180331372e-08 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247448128329987e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --1.2243085131554785e-04 +-1.2243085131586834e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.3475580442381696e-05 +-8.3475580442600217e-05 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -455,60 +455,60 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1084339551122506e-08 -1.1004305373251416e-20 +-8.8674716409212179e-09 +8.8034442986011326e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448603072495e+00 +1.2247448625241173e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5333743563976333e-02 +-1.2266837308897797e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1084339551122506e-08 --2.0360974952461641e-06 +-1.3301207461381827e-08 +-2.4432856153193183e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448603072495e+00 -1.7320487714713819e+00 +1.2247448580903815e+00 +1.7320483642832618e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5331725490751043e-02 +-1.8398309529148789e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2168679102245011e-08 --4.0716590491128344e-06 +-2.2168679102303046e-08 +-3.3312831880321472e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448492229098e+00 -1.7320467359098282e+00 +1.7320474762856892e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0665413578935662e-02 +-3.0666140846495184e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6626509326683759e-08 --2.2904091645331212e-06 +-2.2168679102303046e-08 +-4.0719245643510186e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448547650797e+00 -1.7320485171597126e+00 +1.2247448492229098e+00 +1.7320467356443128e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2999084367886464e-02 +-3.0665413318121174e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -517,10 +517,10 @@ Using fixed-point nonlinear solver 1.7320467356443128e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674215266165, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967246655518, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516414537051 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469364509253e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449541034653, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391559393267, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602349986125397 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360861173277e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -532,60 +532,60 @@ Using fixed-point nonlinear solver -3.0665413318121174e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5737841195053851e-11 --1.6802156955267026e-08 +-3.6590272956138867e-11 +-1.3441725564213621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448491771720e+00 -1.7320467188421558e+00 +1.2247448491863195e+00 +1.7320467222025873e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.0728681111180035e-02 +-3.0716027549994359e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5737841195053851e-11 --1.6836822569526336e-08 +-5.4885409434208290e-11 +-2.0204187081316166e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448491771720e+00 -1.7320467188074902e+00 +1.2247448491680244e+00 +1.7320467154401258e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.0728681077129460e-02 +-3.0741334632792591e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1475682390107701e-11 --3.3673645101738772e-08 +-9.1475682390347170e-11 +-3.3661039425242550e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448491314341e+00 -1.7320467019706676e+00 +1.7320467019832733e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0791948868312789e-02 +-3.0791948880694378e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8606761792580766e-11 --2.5242234235013778e-08 +-9.1475682390347170e-11 +-3.3673645120053312e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448491543032e+00 -1.7320467104020785e+00 +1.2247448491314341e+00 +1.7320467019706676e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0760314981468403e-02 +-3.0791948868312789e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -594,29 +594,29 @@ Using fixed-point nonlinear solver 1.7320467019706676e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634400131705e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014743878339e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.646426838510152e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.722149487020822e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -2.0649437804629074e-08 +2.0649437804741398e-08 -4.1055982096249721e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.676008618859752 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.676008618859751 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0005643456517840985 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.3865115081454182e-09 +-5.3865115080330937e-09 -4.1055982096249721e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -631,7 +631,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.0204267608332523e-04 +-1.0204267608348784e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -647,60 +647,60 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1182220450779500e-09 -9.0815184667034262e-22 +-8.9457763606378553e-10 +7.2652147733627406e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448702733670e+00 +1.2247448704970112e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2653717795065335e-03 +-1.0122963181962380e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1182220450779500e-09 --1.3866420142767502e-08 +-1.3418664540956785e-09 +-1.6639686001089749e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448702733670e+00 -1.7320507937024570e+00 +1.2247448700497225e+00 +1.7320507909291911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2653579232166188e-03 +-1.5184311674504660e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364440901559000e-09 --2.7732536600656476e-08 +-2.2364440901594639e-09 +-2.2690215720979230e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448691551448e+00 -1.7320507798363405e+00 +1.7320507848786615e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5307296602978513e-03 +-2.5307346952514625e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6773330676169250e-09 --1.5599608807840734e-08 +-2.2364440901594639e-09 +-2.7732688288125821e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448697142558e+00 -1.7320507919692685e+00 +1.2247448691551448e+00 +1.7320507798361888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8980472630325087e-03 +-2.5307296601464152e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -709,10 +709,10 @@ Using fixed-point nonlinear solver 1.7320507798361888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404330240967631, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957000873404, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.064449683586706e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290986831944231e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -724,196 +724,196 @@ Using fixed-point nonlinear solver -2.5307296601464152e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364440901558998e-08 --5.5465375953047665e-07 +-1.7891552721275711e-08 +-4.4372300762438135e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448467907038e+00 -1.7320502251824292e+00 +1.2247448512635921e+00 +1.7320503361131812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.7840698767353539e-02 +-2.2778287550491719e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364440901558998e-08 --6.1017770813081446e-06 +-2.6837329081913565e-08 +-7.3219952782870641e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448467907038e+00 -1.7320446780591074e+00 +1.2247448423178158e+00 +1.7320434578409105e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.7835240798979227e-02 +-3.2896780927652747e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4728881803117996e-08 --1.2201161743761062e-05 +-4.4728881803189273e-08 +-1.0184125065008753e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448244262631e+00 -1.7320385786744450e+00 +1.7320405957111238e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.3144939292930266e-02 +-5.3146894438853877e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.3546661352338499e-08 --7.0716009260772523e-06 +-4.4728881803189273e-08 +-1.2202338183392820e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448356084834e+00 -1.7320437082352627e+00 +1.2247448244262631e+00 +1.7320385774980054e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.0491503566897000e-02 +-5.3144938152587806e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448244262631e+00 -1.7320385774980056e+00 +1.7320385774980054e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534113512840757, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472748972327127, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359870407597604 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809670049984e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0028489493154905, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134287088, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499501009595 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176895070787e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448244262631e+00 -1.7320385774980056e+00 +1.7320385774980054e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.3144938152588056e-02 +-5.3144938152587806e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7538675095025643e-08 --1.4342442210495024e-05 +-2.2030940076055626e-08 +-1.1473953768395966e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447968875880e+00 -1.7320242350557951e+00 +1.2247448023953229e+00 +1.7320271035442369e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.4310189378685993e-02 +-7.8076593113471801e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7538675095025643e-08 --2.2753136252559715e-05 +-3.3046410114083435e-08 +-2.7303542468091944e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447968875880e+00 -1.7320158243617529e+00 +1.2247447913798530e+00 +1.7320112739555373e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.4302188075680087e-02 +-9.0534479090857878e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5077350190051287e-08 --4.5501953816267393e-05 +-5.5077350190139061e-08 +-4.2443640158544460e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693489129e+00 -1.7319930755441892e+00 +1.7319961338578469e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620669191915e-01 +-1.1546906111565662e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1308012642538467e-08 --3.0974095395337868e-05 +-5.5077350190139061e-08 +-4.5504002277686120e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447831182505e+00 -1.7320076034026102e+00 +1.2247447693489129e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9886380172391112e-02 +-1.1546620478002166e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447693489129e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682859333259777, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535544959929386, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550359955212135 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844435520364e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351617048572, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577552366629, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153804885057 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952890957e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.4608074683250003e-09 --5.7734073149129372e-05 +-4.4608074680206508e-09 +-5.7734073149573462e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56853116193789 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56853116211918 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007921301090223275 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007921301090276377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0209848128118822e-07 --5.7734073149129372e-05 +-1.0209848128097585e-07 +-5.7734073149573462e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487210934049472e-12 + 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487655023259322e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.0412405964536466e-04 +-2.0412405964555694e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0016 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412405964536471e-04 +-2.0412405964555699e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -921,113 +921,113 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693489129e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620478002208e-01 +-1.1546620478002166e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237217893609344e-08 --3.4639861434006584e-05 +-4.8989774314933624e-08 +-2.7711889147205169e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447081116949e+00 -1.7319584336342941e+00 +1.2247447203591386e+00 +1.7319653616065804e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5010735421534077e-01 +-1.4317857535708783e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237217893609344e-08 --4.5032206264602178e-05 +-7.3484661472400426e-08 +-5.4038400480487511e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447081116949e+00 -1.7319480412894634e+00 +1.2247446958642514e+00 +1.7319390350952470e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5009786254038979e-01 +-1.5702504769827860e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247443578721869e-07 --9.0058717524233765e-05 +-1.2247443578733404e-07 +-8.6279743205389516e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446468744771e+00 -1.7319030147782037e+00 +1.7319067937525223e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8473630414240966e-01 +-1.8473968002288899e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1855826840414010e-08 --6.3649095230440300e-05 +-1.2247443578733404e-07 +-9.0061294243468055e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446774930859e+00 -1.7319294244004977e+00 +1.2247446468744771e+00 +1.7319030122014842e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.6741983373807257e-01 +-1.8473630184054024e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446468744771e+00 -1.7319030122014847e+00 +1.7319030122014842e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794541412499, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522759755999, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871266260003 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654015963828e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638595017693, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051216985, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021752028316 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062644397192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.4794080300771410e-08 +-2.4794080300679454e-08 -9.0061294243382051e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76658769079079 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.7665876907908 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01234458166289366 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01234458166291139 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.8099298336513346e-07 +-1.8099298336516416e-07 -9.0061294243382051e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247445883001244e+00 -1.7319030122014847e+00 +1.7319030122014842e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.2655494573599619e-04 +-3.2655494573625261e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.8759966379806787e-04 +-2.8759966379830385e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1036,113 +1036,113 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620480792463e-01 +-1.1546620480792429e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8346621839742370e-08 --1.5395493974389944e-05 +-3.0677297471819066e-08 +-1.2316395179511920e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447309464858e+00 -1.7319776780017537e+00 +1.2247447386158103e+00 +1.7319807571005481e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3086141135271412e-01 +-1.2778225503216945e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8346621839742370e-08 --1.7448188180361877e-05 +-4.6015946207728599e-08 +-2.0937802814116912e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447309464858e+00 -1.7319756253075478e+00 +1.2247447232771616e+00 +1.7319721356929134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3085951375095900e-01 +-1.3393835070485594e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6693243679484740e-08 --3.4895870333589056e-05 +-7.6693243679547672e-08 +-3.4149442994316693e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446925998640e+00 -1.7319581776253945e+00 +1.7319589240527333e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4625425348032550e-01 +-1.4625493687588878e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7519932759613555e-08 --2.5402336073256357e-05 +-7.6693243679547672e-08 +-3.4896102599805834e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447117731749e+00 -1.7319676711596548e+00 +1.2247446925998640e+00 +1.7319581773931279e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.3855741979061237e-01 +-1.4625425326767241e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446925998640e+00 -1.7319581773931285e+00 +1.7319581773931279e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868673761018, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433926810577, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127225539666 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182826571203e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133316212457, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967983563959, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487993836485 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555415092209e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -6.3840911332632291e-08 --3.4896102599546452e-05 +6.3840911332746733e-08 +-3.4896102599768497e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 14.24595765940638 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 14.24595765949703 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004788932282498826 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004788932282534239 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.9826572008822304e-08 --3.4896102599546452e-05 +-5.9826572008861175e-08 +-3.4896102599768497e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247447094665358e+00 -1.7319581773931285e+00 +1.7319581773931279e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --2.5856087621903956e-04 +-2.5856087621936011e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.0616673029723184e-04 +-3.0616673029755081e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1151,126 +1151,126 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620480792463e-01 +-1.1546620480792429e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5308336514861579e-07 --5.7733102403962267e-05 +-1.2246669211902023e-07 +-4.6186481923169680e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446162097426e+00 -1.7319353403933242e+00 +1.2247446468264156e+00 +1.7319468870138044e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320509139372978e-01 +-1.6165590008384659e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5308336514861579e-07 --8.6602545696864820e-05 +-1.8370003817853034e-07 +-1.0392199434169622e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446162097426e+00 -1.7319064709500311e+00 +1.2247445855930696e+00 +1.7318891515013859e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910889471275e-01 +-1.8472395021218141e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0616673029723158e-07 --1.7317910889471261e-04 +-3.0616673029755054e-07 +-1.6268130451318439e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631263775e+00 -1.7318198943868333e+00 +1.7318303921912144e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932443015999e-01 +-2.3091842250392625e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2962504772292367e-07 --1.1906830484365107e-04 +-3.0616673029755054e-07 +-1.7319065496987563e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445396680601e+00 -1.7318740051908843e+00 +1.2247444631263775e+00 +1.7318198828407578e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205197678975273e-01 +-2.3090931442356127e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631263775e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991518741408, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191857991752, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191857991754 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614628789052 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406942702114, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066499403, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390664994033 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697751e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447692931077e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.1096026748366064e-07 --1.7319065496912422e-04 +-1.1096026748355175e-07 +-1.7319065496979036e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322912588983 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.7032291261618 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376154766714745 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376154766725365 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0624865768420810e-07 --1.7319065496912422e-04 +-3.0624865768437512e-07 +-1.7319065496979036e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463044450e+00 1.731819882840759e+00 9.891665264660787e-11 1.686029094116748e-11 + 2.000000000000000e-03 1.224744463044450e+00 1.731819882840758e+00 9.891665264660787e-11 1.686140116419210e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --4.0824796501086802e-04 +-4.0824796501144498e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824796501086813e-04 +-4.0824796501144508e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1278,113 +1278,113 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631263775e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931442356238e-01 +-2.3090931442356127e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247438950326028e-07 --6.9272794327068636e-05 +-9.7979511602746707e-08 +-5.5418235461654647e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443406519880e+00 -1.7317506100464319e+00 +1.2247443651468659e+00 +1.7317644646052961e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.6553868340728243e-01 +-2.5861248261443226e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247438950326028e-07 --7.9661605022184637e-05 +-1.4696926740412004e-07 +-9.5593778878373870e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443406519880e+00 -1.7317402212357367e+00 +1.2247443161571101e+00 +1.7317242890618794e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.6552988754751855e-01 +-2.7245452268930176e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4494877900652056e-07 --1.5931793252851095e-04 +-2.4494877900686679e-07 +-1.5554005421458962e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442181775985e+00 -1.7316605649082304e+00 +1.7316643427865432e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0015446876106666e-01 +-3.0015759180446988e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8371158425489042e-07 --1.1559471422485231e-04 +-2.4494877900686679e-07 +-1.5932009250918059e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247442794147934e+00 -1.7317042881265341e+00 +1.2247442181775985e+00 +1.7316605627482486e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8284501460038164e-01 +-3.0015446697548182e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442181775985e+00 -1.7316605627482495e+00 +1.7316605627482486e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458426380418, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240089325201, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733482208675 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614193273577e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571627097045, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188762013163, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314603355283 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433642426e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.9617824717749579e-08 --1.5932009250940737e-04 +-4.9617824717473631e-08 +-1.5932009250918533e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04725301387548 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04725301378485 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02184661245053742 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02184661245050203 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0345690188759436e-07 --1.5932009250940737e-04 +-3.0345690188753306e-07 +-1.5932009250918533e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247441595875481e+00 -1.7316605627482495e+00 +1.7316605627482486e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --5.3067876544144615e-04 +-5.3067876544189501e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.9172351075898926e-04 +-4.9172351075947888e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1393,113 +1393,113 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931446452614e-01 +-2.3090931446452517e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5563134767865211e-08 --3.0787908595270143e-05 +-5.2450507814344400e-08 +-2.4630326876216012e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443974813153e+00 -1.7317890949321637e+00 +1.2247444105939422e+00 +1.7317952525138816e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.4629962780029452e-01 +-2.4322149396598394e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5563134767865211e-08 --3.2839950373372591e-05 +-7.8675761721516590e-08 +-3.9407926214615771e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443974813153e+00 -1.7317870428903857e+00 +1.2247443843686883e+00 +1.7317804749145431e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.4629786760445277e-01 +-2.4937568761992587e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3112626953573042e-07 --6.5679431361187376e-05 +-1.3112626953586100e-07 +-6.4933224667474250e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443319181803e+00 -1.7317542034093978e+00 +1.7317549496160904e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6168730338145668e-01 +-2.6168793682791730e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8344702151797822e-08 --4.8490241186675996e-05 +-1.3112626953586100e-07 +-6.5679627051350398e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443646997478e+00 -1.7317713925995724e+00 +1.2247443319181803e+00 +1.7317542032137065e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5399313866036866e-01 +-2.6168730321533656e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443319181803e+00 -1.7317542032137077e+00 +1.7317542032137065e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250112576088, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880108073044, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300405273919 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964799442913e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410311448591, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938989906474, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477121214928 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938674544252e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.0703233192513347e-07 +1.0703233192536450e-07 -6.5679627051284939e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.81568292207747 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.81568292207749 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009012485355207473 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009012485355207489 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.1426659576834601e-07 +-1.1426659576839093e-07 -6.5679627051284939e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247443487778542e+00 -1.7317542032137077e+00 +1.7317542032137065e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --4.6268472291704609e-04 +-4.6268472291762311e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.1029054917535867e-04 +-5.1029054917587063e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1508,112 +1508,112 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931446452614e-01 +-2.3090931446452517e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5514527458767910e-07 --1.1545465723226298e-04 +-2.0411621967034809e-07 +-9.2363725785810002e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442078991753e+00 -1.7317044281835268e+00 +1.2247442589282302e+00 +1.7317275191149719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862702539752894e-01 +-2.7708268585600543e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5514527458767910e-07 --1.4431351269876436e-04 +-3.0617432950552210e-07 +-1.7317561722232514e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442078991753e+00 -1.7316755693280601e+00 +1.2247441568701205e+00 +1.7316467072235355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297635111143e-01 +-3.0014304369247830e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1029054917535819e-07 --2.8860297635111118e-04 +-5.1029054917587022e-07 +-2.7810814624284130e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439527539008e+00 -1.7315312798644078e+00 +1.7315417746945150e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623682233508e-01 +-3.4631463266745444e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8271791188151870e-07 --2.0563963143273254e-04 +-5.1029054917587022e-07 +-2.8861259246060905e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440803265381e+00 -1.7316142432093262e+00 +1.2247439527539008e+00 +1.7315312702482972e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746260582686536e-01 +-3.4630622912944647e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439527539008e+00 -1.7315312702482950e+00 +1.7315312702482972e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854910396215, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060713980366, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060713980368 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876031 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620234305492, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755424933272, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755424933275 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507476813511e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630444499e+00 -1.7318198828407589e+00 +1.7318198828407578e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.1745967117431619e-07 --2.8861259246393267e-04 +-2.1745967117416195e-07 +-2.8861259246060200e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347805661338 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347805647741 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959596958504103 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0395959695845631 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1039864120733202e-07 --2.8861259246393267e-04 +-5.1039864120662581e-07 +-2.8861259246060200e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247439526458088e+00 -1.7315312702482950e+00 +1.7315312702482972e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247439526458088e+00 -1.7315312702482950e+00 +1.7315312702482972e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952645809e+00 1.731531270248295e+00 1.874711497151793e-10 2.527533737861631e-11 + 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out index 461d0d68af..b64bf623fe 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out @@ -33,10 +33,10 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 -8.5332324353576826e-25 +9.6542504327718640e-25 +6.8265859482861472e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -44,203 +44,203 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.1889694230616173e-06 +-9.5117553744560093e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 --1.2242553240514061e-14 +1.4481375649157797e-24 +-1.4691063873370668e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688650e+00 +1.7320508075688625e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.1889694108828618e-06 +-1.4267632945325369e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.4135626081929657e-24 --2.4485106230224258e-14 +-2.0033268699306856e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688528e+00 +1.7320508075688572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3779388340687632e-06 +-2.3779388384274727e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8101719561447239e-24 --1.3772872301180226e-14 +2.4135626081929657e-24 +-2.4485106355409614e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688634e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.7834541255044815e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3779388338123684e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --2.0160744284751053e-12 +7.9491945601514801e-23 +-1.6128595429539865e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075668364e+00 +1.7320508075672398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0027630277357223e-04 +-8.0696623353025584e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --8.5016690475470017e-11 +1.1923791840227221e-22 +-1.0202002013558598e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508074838359e+00 +1.7320508074668328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0027621977792367e-04 +-1.1985588591683926e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.9872986400378700e-22 --1.7003324021947768e-10 +-1.3985120439909713e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508074290015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817461380875463e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.4904739800284026e-22 --9.6399751925935201e-11 +1.9872986400378700e-22 +-1.7003331056080624e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508074724528e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4922542246468209e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.7603134562689734e-09 +1.3059534380233044e-21 +-2.2082507650180351e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508046385057e+00 +1.7320508051905688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8065329798490591e-03 +-1.4848595168265363e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.5162648015366993e-08 +1.9589301570349567e-21 +-3.0195140349873647e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507822361713e+00 +1.7320507772036791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8065106008801368e-03 +-2.1281804830314676e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582609e-21 --5.0324672611040883e-08 +3.2648835950582613e-21 +-4.2178397238593067e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507570741466e+00 +1.7320507652204222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4148689076686934e-03 +-3.4148770378833108e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.4486626962936955e-21 --2.9342862858857047e-08 +3.2648835950582613e-21 +-5.0324983905675798e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507780559564e+00 +1.7320507570738355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6106953640960742e-03 +-3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -249,10 +249,10 @@ Using GMRES iterative linear solver 1.7320507570738355e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -264,149 +264,149 @@ Using GMRES iterative linear solver -3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.5129339229286827e-07 +2.6119068760466087e-20 +-7.6103471383429466e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320498057804432e+00 +1.7320499960391216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.5586084640419201e-02 +-2.9151178844601260e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.9133548298325844e-06 +3.9178603140699122e-20 +-1.1895748900626277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320408437190056e+00 +1.7320388613249349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.5577306688127808e-02 +-4.2010812460658582e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.5297671901165209e-20 --1.9821819042637574e-05 +-1.6563084595280827e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320309352547929e+00 +1.7320341939892403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.7747965740933266e-02 +-6.7751097007922326e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.8973253925873913e-20 --1.1507434916573431e-05 +6.5297671901165209e-20 +-1.9824212659222936e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320392496389190e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1664931509040730e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --6.7747963440942832e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.4979707041077427e-07 +6.2249751613389108e-22 +-3.5983765632861759e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320304830641062e+00 +1.7320305730235199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.8514575742804049e-02 +-6.8361252939970668e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.5488681702461341e-07 +9.3374627420083658e-22 +-5.4586417701899842e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320304779743596e+00 +1.7320303869969993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.8514570854394510e-02 +-6.8667892851103390e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.5562437903347276e-21 --9.0977356913827813e-07 +-9.0792275404196263e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320300230876076e+00 +1.7320300249384222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.9281182547766579e-02 +-6.9281184324548689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1671828427510456e-21 --6.8042154646761999e-07 +1.5562437903347276e-21 +-9.0977360024710662e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320302524396303e+00 +1.7320300230875760e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.8897877999666526e-02 +-6.9281182547736284e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 @@ -414,46 +414,46 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.6052128249628413e-20 --2.0784481300495372e-05 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484795600596831, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484795600868763, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99931301232761, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99931301271218, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004015866839014629 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004015866839143335 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.355316732970741e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.778821860355241e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.355316732970741e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484806428685115 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.778821860355241e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484806428957047 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518415627456097e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518415382958716e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.8553863630954659e-08 --2.0784481300495372e-05 +-5.8553863631112174e-08 +-2.0784481301161509e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247448128377254e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --1.2243086076853187e-04 +-1.2243086076885236e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.3475586887598073e-05 +-8.3475586887816594e-05 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -469,60 +469,60 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1084340406953235e-08 -1.1004305373251416e-20 +-8.8674723255858007e-09 +8.8034442986011326e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448603072486e+00 +1.2247448625241166e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5333743563976786e-02 +-1.2266837308898160e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1084340406953235e-08 --2.0360974952462242e-06 +-1.3301208488378701e-08 +-2.4432856153193903e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448603072486e+00 -1.7320487714713819e+00 +1.2247448580903804e+00 +1.7320483642832618e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5331725490751496e-02 +-1.8398309529149330e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2168680813906470e-08 --4.0716590491129547e-06 +-2.2168680813964502e-08 +-3.3312831880322459e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448492229080e+00 -1.7320467359098282e+00 +1.7320474762856892e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0665413578936568e-02 +-3.0666140846496090e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6626510610429854e-08 --2.2904091645331885e-06 +-2.2168680813964502e-08 +-4.0719245643511380e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448547650783e+00 -1.7320485171597126e+00 +1.2247448492229080e+00 +1.7320467356443128e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2999084367887099e-02 +-3.0665413318122080e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -531,10 +531,10 @@ Using GMRES iterative linear solver 1.7320467356443128e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674238846908, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967269293031, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164153894606 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446933684687e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449541034653, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391559393267, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602349986125397 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360861173277e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -546,60 +546,60 @@ Using GMRES iterative linear solver -3.0665413318122080e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5737844726509176e-11 --1.6802156955267519e-08 +-3.6590275781303131e-11 +-1.3441725564214018e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448491771702e+00 -1.7320467188421558e+00 +1.2247448491863178e+00 +1.7320467222025873e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.0728681111180940e-02 +-3.0716027549995223e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5737844726509176e-11 --1.6836822569526832e-08 +-5.4885413671954683e-11 +-2.0204187081316728e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448491771702e+00 -1.7320467188074902e+00 +1.2247448491680226e+00 +1.7320467154401258e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.0728681077130365e-02 +-3.0741334632793497e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1475689453018351e-11 --3.3673645101739765e-08 +-9.1475689453257820e-11 +-3.3661039425243556e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448491314323e+00 -1.7320467019706676e+00 +1.7320467019832733e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0791948868313650e-02 +-3.0791948880695238e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8606767089763764e-11 --2.5242234235014523e-08 +-9.1475689453257820e-11 +-3.3673645120054285e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448491543014e+00 -1.7320467104020785e+00 +1.2247448491314323e+00 +1.7320467019706676e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0760314981469312e-02 +-3.0791948868313650e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -608,17 +608,17 @@ Using GMRES iterative linear solver 1.7320467019706676e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634391907952e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014743878339e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034588e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.553311302995434e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -2.0649439341356229e-08 +2.0649439341468554e-08 -4.1055982096249721e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -629,13 +629,13 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370234119443755, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007981043352652857 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007981043352652858 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.774836283552402e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.715118584856955e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.774836283552402e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676009569925 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.715118584856955e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676009569924999 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.704998826808452e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 @@ -643,7 +643,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.3855753663217472e-09 +-5.3855753662094235e-09 -4.1055982096249730e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -658,7 +658,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.0204268225280775e-04 +-1.0204268225297037e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -674,60 +674,60 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1182221126854611e-09 -9.0815184667034262e-22 +-8.9457769014979452e-10 +7.2652147733627406e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448702733668e+00 +1.2247448704970112e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2653717795066694e-03 +-1.0122963181962380e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1182221126854611e-09 --1.3866420142768993e-08 +-1.3418665352246920e-09 +-1.6639686001089749e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448702733668e+00 -1.7320507937024570e+00 +1.2247448700497223e+00 +1.7320507909291911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2653579232167547e-03 +-1.5184311674505567e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364442253709221e-09 --2.7732536600659454e-08 +-2.2364442253744865e-09 +-2.2690215720981037e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448691551448e+00 -1.7320507798363405e+00 +1.7320507848786615e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5307296602978513e-03 +-2.5307346952514625e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6773331690281919e-09 --1.5599608807842594e-08 +-2.2364442253744865e-09 +-2.7732688288126510e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448697142558e+00 -1.7320507919692685e+00 +1.2247448691551448e+00 +1.7320507798361888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8980472630325087e-03 +-2.5307296601464152e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -736,10 +736,10 @@ Using GMRES iterative linear solver 1.7320507798361888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404386294498222, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957000873404, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.063963430758315e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -751,209 +751,209 @@ Using GMRES iterative linear solver -2.5307296601464152e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364442253709221e-08 --5.5465375953047665e-07 +-1.7891553802995892e-08 +-4.4372300762438135e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448467907025e+00 -1.7320502251824292e+00 +1.2247448512635910e+00 +1.7320503361131812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.7840698767354219e-02 +-2.2778287550492261e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364442253709221e-08 --6.1017770813082937e-06 +-2.6837330704493833e-08 +-7.3219952782872420e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448467907025e+00 -1.7320446780591074e+00 +1.2247448423178140e+00 +1.7320434578409105e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.7835240798979907e-02 +-3.2896780927653649e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4728884507418441e-08 --1.2201161743761360e-05 +-4.4728884507489724e-08 +-1.0184125065009033e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448244262602e+00 -1.7320385786744450e+00 +1.7320405957111238e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.3144939292931716e-02 +-5.3146894438855327e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.3546663380563834e-08 --7.0716009260774183e-06 +-4.4728884507489724e-08 +-1.2202338183393137e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448356084814e+00 -1.7320437082352627e+00 +1.2247448244262602e+00 +1.7320385774980054e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.0491503566897999e-02 +-5.3144938152589256e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448244262602e+00 -1.7320385774980056e+00 +1.7320385774980054e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534107753002054, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472743442881971, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35985779294331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809665070755e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949316391902, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991343736226, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949950298376 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176886426292e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448244262602e+00 -1.7320385774980056e+00 +1.7320385774980054e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.3144938152589506e-02 +-5.3144938152589256e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7538676760009171e-08 --1.4342442210495416e-05 +-2.2030941408042447e-08 +-1.1473953768396279e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447968875835e+00 -1.7320242350557951e+00 +1.2247448023953187e+00 +1.7320271035442369e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.4310189378688213e-02 +-7.8076593113473883e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7538676760009171e-08 --2.2753136252560315e-05 +-3.3046412112063666e-08 +-2.7303542468092669e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447968875835e+00 -1.7320158243617529e+00 +1.2247447913798482e+00 +1.7320112739555373e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.4302188075682308e-02 +-9.0534479090860320e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5077353520018343e-08 --4.5501953816268593e-05 +-5.5077353520106116e-08 +-4.2443640158545612e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693489066e+00 -1.7319930755441892e+00 +1.7319961338578469e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620669192227e-01 +-1.1546906111565974e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1308015140013755e-08 --3.0974095395338688e-05 +-5.5077353520106116e-08 +-4.5504002277687340e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447831182450e+00 -1.7320076034026102e+00 +1.2247447693489066e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9886380172393888e-02 +-1.1546620478002480e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447693489066e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682865914687657, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353555127810015, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550371660986841 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844451011408e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351616407695, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577551751387, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380374519 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952890957e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.4608053512399927e-09 --5.7734073149129372e-05 +-4.4608053509356432e-09 +-5.7734073149573462e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56853116193524, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56853116211653, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093641442174, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093641467812, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120221282537529 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120221282546144 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.829268876391666e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.799831347143072e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.829268876391666e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.5685496216454 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.799831347143072e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854962182669 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.271877873619188e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.271877795991267e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0208514805502336e-07 --5.7734073149129379e-05 +-1.0208514805482444e-07 +-5.7734073149573462e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487210934049472e-12 + 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487655023259322e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.0412408630927689e-04 +-2.0412408630946920e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0016 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412408630927694e-04 +-2.0412408630946926e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -961,126 +961,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693489066e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620478002521e-01 +-1.1546620478002480e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237225892783013e-08 --3.4639861434007526e-05 +-4.8989780714272570e-08 +-2.7711889147205922e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447081116807e+00 -1.7319584336342941e+00 +1.2247447203591260e+00 +1.7319653616065804e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5010735421534790e-01 +-1.4317857535709416e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237225892783013e-08 --4.5032206264604319e-05 +-7.3484671071408832e-08 +-5.4038400480490079e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447081116807e+00 -1.7319480412894634e+00 +1.2247446958642356e+00 +1.7319390350952470e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5009786254039689e-01 +-1.5702504769828649e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247445178556603e-07 --9.0058717524238034e-05 +-1.2247445178568141e-07 +-8.6279743205393337e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446468744549e+00 -1.7319030147782037e+00 +1.7319067937525223e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8473630414242076e-01 +-1.8473968002290009e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1855838839174513e-08 --6.3649095230443052e-05 +-1.2247445178568141e-07 +-9.0061294243472324e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446774930677e+00 -1.7319294244004977e+00 +1.2247446468744549e+00 +1.7319030122014842e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.6741983373808167e-01 +-1.8473630184055137e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446468744549e+00 -1.7319030122014847e+00 +1.7319030122014842e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794542140617, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522760454992, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871267424992 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654020389957e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594619633, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613050834847, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175139142 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780357e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.4807422865317994e-08 +-2.4807422865226011e-08 -9.0061294243382051e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76658771011432, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76658771011433, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99580698182362, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99580698182364, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01745737857060591 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01745737857152503 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.044483986313881e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.74083550528487e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.044483986313881e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76662068822849 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.74083550528487e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.7666206882285 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144290571601441e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144284255622165e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.8098535057400427e-07 --9.0061294243382078e-05 +-1.8098535057512897e-07 +-9.0061294243382064e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247445883210903e+00 -1.7319030122014847e+00 +1.7319030122014842e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.2655498766225776e-04 +-3.2655498766251417e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.8759970086812735e-04 +-2.8759970086836338e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1089,126 +1089,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620480125809e-01 +-1.1546620480125774e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8346626782416965e-08 --1.5395493973501074e-05 +-3.0677301425958752e-08 +-1.2316395178800823e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447309598141e+00 -1.7319776780017546e+00 +1.2247447386291395e+00 +1.7319807571005488e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3086141134605081e-01 +-1.2778225502550553e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8346626782416965e-08 --1.7448188179473434e-05 +-4.6015952138938124e-08 +-2.0937802813050785e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447309598141e+00 -1.7319756253075487e+00 +1.2247447232904887e+00 +1.7319721356929145e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3085951374429572e-01 +-1.3393835069819349e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6693253564833930e-08 --3.4895870331812178e-05 +-7.6693253564896875e-08 +-3.4149442992539706e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446926131873e+00 -1.7319581776253963e+00 +1.7319589240527351e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4625425347366544e-01 +-1.4625493686922872e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7519940173625451e-08 --2.5402336071923537e-05 +-7.6693253564896875e-08 +-3.4896102598028976e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447117865007e+00 -1.7319676711596561e+00 +1.2247446926131873e+00 +1.7319581773931296e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.3855741978395061e-01 +-1.4625425326101238e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446926131873e+00 -1.7319581773931298e+00 +1.7319581773931296e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868685585981, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433938162542, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127268109535 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182771244593e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133326746994, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967993677114, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487997628918 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555311354814e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -6.3840919664127187e-08 --3.4896102598214185e-05 +6.3840919664241642e-08 +-3.4896102597992140e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24595765886783, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24595765877719, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14682653016375, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14682653003556, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006772498770722619 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006772498771035941 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.42491424547357e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.596828472046789e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.42491424547357e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24596845308144 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.596828472046789e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.2459684529908 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511949813658031e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511925909452149e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.9818572079162638e-08 --3.4896102598214185e-05 +-5.9818572079523553e-08 +-3.4896102597992147e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247447094878687e+00 -1.7319581773931298e+00 +1.7319581773931296e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --2.5856091887957537e-04 +-2.5856091887970357e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.0616677643623049e-04 +-3.0616677643640830e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1217,139 +1217,139 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620480125809e-01 +-1.1546620480125774e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5308338821811511e-07 --5.7733102400628996e-05 +-1.2246671057456321e-07 +-4.6186481920503064e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446162230526e+00 -1.7319353403933275e+00 +1.2247446468397303e+00 +1.7319468870138071e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320509138707774e-01 +-1.6165590007719166e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5308338821811511e-07 --8.6602545693538799e-05 +-1.8370006586184484e-07 +-1.0392199433770500e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446162230526e+00 -1.7319064709500345e+00 +1.2247445856063750e+00 +1.7318891515013899e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910888806073e-01 +-1.8472395020553228e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0616677643623023e-07 --1.7317910888806060e-04 +-3.0616677643640805e-07 +-1.6268130450652972e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631396645e+00 -1.7318198943868399e+00 +1.7318303921912210e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932442352230e-01 +-2.3091842249728858e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2962508232717267e-07 --1.1906830483865933e-04 +-3.0616677643640805e-07 +-1.7319065496322359e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445396813585e+00 -1.7318740051908894e+00 +1.2247444631396645e+00 +1.7318198828407645e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205197678310793e-01 +-2.3090931441692358e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631396645e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991513950708, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519185339268, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191853392681 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614629674277 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406938933564, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390661376221, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390661376224 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387144485e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693064408e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.1096029191301892e-07 --1.7319065496268493e-04 +-1.1096029191284412e-07 +-1.7319065496312902e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322912330754, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322912348885, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.9894655297539, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946553001032, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360218033634896 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360218033643214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.152035138603228e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.130462187373386e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.152035138603228e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328448815538 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.130462187373386e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328448833669 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178327890492011e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178327902961379e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0620732984122282e-07 --1.7319065496268490e-04 +-3.0620732984124103e-07 +-1.7319065496312899e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463099111e+00 1.731819882840765e+00 4.425571020760799e-11 1.685385164762465e-11 + 2.000000000000000e-03 1.224744463099111e+00 1.731819882840764e+00 4.425571020760799e-11 1.685473982604435e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --4.0824807431130206e-04 +-4.0824807431175082e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824807431130217e-04 +-4.0824807431175092e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1357,126 +1357,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631396645e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931441692447e-01 +-2.3090931441692358e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247442229339052e-07 --6.9272794325077254e-05 +-9.7979537834820118e-08 +-5.5418235460061602e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443406652421e+00 -1.7317506100464404e+00 +1.2247443651601266e+00 +1.7317644646053045e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.6553868340066261e-01 +-2.5861248260780911e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247442229339052e-07 --7.9661605020198690e-05 +-1.4696930675223013e-07 +-9.5593778875990848e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443406652421e+00 -1.7317402212357451e+00 +1.2247443161703577e+00 +1.7317242890618885e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.6552988754089857e-01 +-2.7245452268268561e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4494884458678104e-07 --1.5931793252453894e-04 +-2.4494884458705029e-07 +-1.5554005421061578e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442181908199e+00 -1.7316605649082408e+00 +1.7316643427865539e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0015446875446472e-01 +-3.0015759179786800e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8371163344008575e-07 --1.1559471422187132e-04 +-2.4494884458705029e-07 +-1.5932009250520877e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247442794280310e+00 -1.7317042881265434e+00 +1.2247442181908199e+00 +1.7316605627482593e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8284501459377059e-01 +-3.0015446696887987e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442181908199e+00 -1.7316605627482600e+00 +1.7316605627482593e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458432453699, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240095155551, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733491925924 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614171140701e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571629655574, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188764469351, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460744893 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433642419e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.9659211962112279e-08 --1.5932009250541057e-04 +-4.9659211961897662e-08 +-1.5932009250518853e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04725306864341, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04725306855279, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99070748479045, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99070748466229, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03089427150794729 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0308942715079056 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.181096200144441e-18 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.425501543806094e-18 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.181096200144441e-18 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04730818679262 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.425501543806094e-18 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.047308186702 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960152942248941e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960152883263926e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0346042339533319e-07 --1.5932009250541054e-04 +-3.0346042339528210e-07 +-1.5932009250518850e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247441596386874e+00 -1.7316605627482600e+00 +1.7316605627482593e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --5.3067886769270559e-04 +-5.3067886769302618e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.9172361525316797e-04 +-4.9172361525352923e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1485,126 +1485,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931443720125e-01 +-2.3090931443720047e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5563148700422367e-08 --3.0787908591626824e-05 +-5.2450518960376440e-08 +-2.4630326873301378e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443975359622e+00 -1.7317890949321737e+00 +1.2247444106485919e+00 +1.7317952525138911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.4629962777297962e-01 +-2.4322149393866727e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5563148700422367e-08 --3.2839950369730607e-05 +-7.8675778440564638e-08 +-3.9407926210245419e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443975359622e+00 -1.7317870428903956e+00 +1.2247443844233326e+00 +1.7317804749145542e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.4629786757713787e-01 +-2.4937568759261328e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3112629740084473e-07 --6.5679431353903408e-05 +-1.3112629740094108e-07 +-6.4933224660189862e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443319728135e+00 -1.7317542034094116e+00 +1.7317549496161042e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6168730335415169e-01 +-2.6168793680061236e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8344723050633564e-08 --4.8490241181212519e-05 +-1.3112629740094108e-07 +-6.5679627044066470e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443647543879e+00 -1.7317713925995841e+00 +1.2247443319728135e+00 +1.7317542032137205e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5399313863305861e-01 +-2.6168730318803185e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443319728135e+00 -1.7317542032137214e+00 +1.7317542032137205e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250125232029, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880120222747, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300450835306 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964733044334e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103083027819, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938959706707, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477109890015 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330939020370118e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.0703235397308217e-07 +1.0703235397325188e-07 -6.5679627043957467e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81568291912277, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81568291912279, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92310246851997, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92310246852, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01274532455113983 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01274532455113927 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.285389427812277e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.274290566911092e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.285389427812277e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81570355371161 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.274290566911092e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81570355371163 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655086190669431e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655086194489704e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.1425142403157897e-07 +-1.1425142403162322e-07 -6.5679627043957481e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247443488476868e+00 -1.7317542032137214e+00 +1.7317542032137205e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --4.6268486254891954e-04 +-4.6268486254936829e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.1029067714204474e-04 +-5.1029067714242855e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1613,125 +1613,125 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931443720125e-01 +-2.3090931443720047e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5514533857102216e-07 --1.1545465721860053e-04 +-2.0411627085697126e-07 +-9.2363725774880119e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442079537723e+00 -1.7317044281835468e+00 +1.2247442589828401e+00 +1.7317275191149897e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862702537024709e-01 +-2.7708268582871542e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5514533857102216e-07 --1.4431351268512341e-04 +-3.0617440628545687e-07 +-1.7317561720595634e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442079537723e+00 -1.7316755693280803e+00 +1.2247441569247046e+00 +1.7316467072235586e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297632382964e-01 +-3.0014304366520528e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1029067714204432e-07 --2.8860297632382940e-04 +-5.1029067714242813e-07 +-2.7810814621555177e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439528084338e+00 -1.7315312798644416e+00 +1.7315417746945490e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623679509553e-01 +-3.4631463264021506e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8271800785653321e-07 --2.0563963141226313e-04 +-5.1029067714242813e-07 +-2.8861259243332738e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440803811029e+00 -1.7316142432093531e+00 +1.2247439528084338e+00 +1.7315312702483312e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746260579960478e-01 +-3.4630622910220715e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439528084338e+00 -1.7315312702483288e+00 +1.7315312702483312e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854905095393, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060708891577, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060708891579 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086789645609 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620246982501, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755437103201, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755437103204 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477643487e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630991109e+00 -1.7318198828407654e+00 +1.7318198828407645e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.1745976390179006e-07 --2.8861259243662118e-04 +-2.1745976390169715e-07 +-2.8861259243329052e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347805551639, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347805538041, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435447803702, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435447784472, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599240898342154 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599240898277301 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.717421103006767e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.724618265009032e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.717421103006767e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348728123731 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.724618265009032e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348728110133 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291179996932946e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291179994976966e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1032756388729088e-07 --2.8861259243662124e-04 +-5.1032756388661876e-07 +-2.8861259243329052e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247439527715469e+00 -1.7315312702483288e+00 +1.7315312702483312e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247439527715469e+00 -1.7315312702483288e+00 +1.7315312702483312e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952771547e+00 1.731531270248329e+00 6.173306310586213e-11 2.524158659866771e-11 + 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out index 15ea8a977a..7262e692ad 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out @@ -33,10 +33,10 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 -8.5332324353576826e-25 +9.6542504327718640e-25 +6.8265859482861472e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -44,203 +44,203 @@ Using dense direct linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.1889694230616173e-06 +-9.5117553744560093e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 --1.2242553240514061e-14 +1.4481375649157797e-24 +-1.4691063873370668e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688650e+00 +1.7320508075688625e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.1889694108828618e-06 +-1.4267632945325369e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.4135626081929657e-24 --2.4485106230224258e-14 +-2.0033268699306856e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688528e+00 +1.7320508075688572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3779388340687632e-06 +-2.3779388384274727e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8101719561447239e-24 --1.3772872301180226e-14 +2.4135626081929657e-24 +-2.4485106355409614e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688634e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.7834541255044815e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3779388338123684e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --2.0160744284751053e-12 +7.9491945601514801e-23 +-1.6128595429539865e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075668364e+00 +1.7320508075672398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0027630277357223e-04 +-8.0696623353025584e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --8.5016690475470017e-11 +1.1923791840227221e-22 +-1.0202002013558598e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508074838359e+00 +1.7320508074668328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0027621977792367e-04 +-1.1985588591683926e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.9872986400378700e-22 --1.7003324021947768e-10 +-1.3985120439909713e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508074290015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817461380875463e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.4904739800284026e-22 --9.6399751925935201e-11 +1.9872986400378700e-22 +-1.7003331056080624e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508074724528e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4922542246468209e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.7603134562689734e-09 +1.3059534380233044e-21 +-2.2082507650180351e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508046385057e+00 +1.7320508051905688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8065329798490591e-03 +-1.4848595168265363e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.5162648015366993e-08 +1.9589301570349567e-21 +-3.0195140349873647e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507822361713e+00 +1.7320507772036791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8065106008801368e-03 +-2.1281804830314676e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582609e-21 --5.0324672611040883e-08 +3.2648835950582613e-21 +-4.2178397238593067e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507570741466e+00 +1.7320507652204222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4148689076686934e-03 +-3.4148770378833108e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.4486626962936955e-21 --2.9342862858857047e-08 +3.2648835950582613e-21 +-5.0324983905675798e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507780559564e+00 +1.7320507570738355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6106953640960742e-03 +-3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -249,10 +249,10 @@ Using dense direct linear solver 1.7320507570738355e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -264,149 +264,149 @@ Using dense direct linear solver -3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.5129339229286827e-07 +2.6119068760466087e-20 +-7.6103471383429466e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320498057804432e+00 +1.7320499960391216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.5586084640419201e-02 +-2.9151178844601260e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.9133548298325844e-06 +3.9178603140699122e-20 +-1.1895748900626277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320408437190056e+00 +1.7320388613249349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.5577306688127808e-02 +-4.2010812460658582e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.5297671901165209e-20 --1.9821819042637574e-05 +-1.6563084595280827e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320309352547929e+00 +1.7320341939892403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.7747965740933266e-02 +-6.7751097007922326e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.8973253925873913e-20 --1.1507434916573431e-05 +6.5297671901165209e-20 +-1.9824212659222936e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320392496389190e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1664931509040730e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --6.7747963440942832e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.4979707041077427e-07 +6.2249751613389108e-22 +-3.5983765632861759e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320304830641062e+00 +1.7320305730235199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.8514575742804049e-02 +-6.8361252939970668e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.5488681702461341e-07 +9.3374627420083658e-22 +-5.4586417701899842e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320304779743596e+00 +1.7320303869969993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.8514570854394510e-02 +-6.8667892851103390e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.5562437903347276e-21 --9.0977356913827813e-07 +-9.0792275404196263e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320300230876076e+00 +1.7320300249384222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.9281182547766579e-02 +-6.9281184324548689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1671828427510456e-21 --6.8042154646761999e-07 +1.5562437903347276e-21 +-9.0977360024710662e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320302524396303e+00 +1.7320300230875760e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.8897877999666526e-02 +-6.9281182547736284e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 @@ -414,37 +414,37 @@ Using dense direct linear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.6052128249628413e-20 --2.0784481300495372e-05 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480918398010767 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480918398282574 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003886272468077529 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00388627246820195 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.8553888836324380e-08 --2.0784476930205360e-05 +-5.8553888836477732e-08 +-2.0784476930871494e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247448128377001e+00 -1.7320300230919470e+00 +1.7320300230919463e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --1.2243085853261794e-04 +-1.2243085853293843e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.3475585363111305e-05 +-8.3475585363329826e-05 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -460,60 +460,60 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1084340204523627e-08 -1.1004305373251416e-20 +-8.8674721636421142e-09 +8.8034442986011326e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448603072488e+00 +1.2247448625241169e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5333743563976650e-02 +-1.2266837308898023e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1084340204523627e-08 --2.0360974952462060e-06 +-1.3301208245463171e-08 +-2.4432856153193632e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448603072488e+00 -1.7320487714713819e+00 +1.2247448580903808e+00 +1.7320483642832618e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5331725490751359e-02 +-1.8398309529149150e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2168680409047254e-08 --4.0716590491129183e-06 +-2.2168680409105285e-08 +-3.3312831880322137e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448492229085e+00 -1.7320467359098282e+00 +1.7320474762856892e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0665413578936342e-02 +-3.0666140846495861e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6626510306785440e-08 --2.2904091645331682e-06 +-2.2168680409105285e-08 +-4.0719245643510999e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448547650785e+00 -1.7320485171597126e+00 +1.2247448492229085e+00 +1.7320467356443128e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2999084367887005e-02 +-3.0665413318121854e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -522,10 +522,10 @@ Using dense direct linear solver 1.7320467356443128e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674194043493, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967226281753, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164137698822 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469389405397e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954060517, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391558980963, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602349984572878 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360869817772e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -537,60 +537,60 @@ Using dense direct linear solver -3.0665413318121854e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5737843891214193e-11 --1.6802156955267397e-08 +-3.6590275113067140e-11 +-1.3441725564213919e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448491771706e+00 -1.7320467188421558e+00 +1.2247448491863182e+00 +1.7320467222025873e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.0728681111180715e-02 +-3.0716027549994994e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5737843891214193e-11 --1.6836822569526709e-08 +-5.4885412669600701e-11 +-2.0204187081316576e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448491771706e+00 -1.7320467188074902e+00 +1.2247448491680231e+00 +1.7320467154401258e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.0728681077130140e-02 +-3.0741334632793268e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1475687782428386e-11 --3.3673645101739513e-08 +-9.1475687782667841e-11 +-3.3661039425243304e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448491314328e+00 -1.7320467019706676e+00 +1.7320467019832733e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0791948868313424e-02 +-3.0791948880695013e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8606765836821283e-11 --2.5242234235014337e-08 +-9.1475687782667841e-11 +-3.3673645120054040e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448491543018e+00 -1.7320467104020785e+00 +1.2247448491314328e+00 +1.7320467019706676e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0760314981469083e-02 +-3.0791948868313424e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -599,17 +599,17 @@ Using dense direct linear solver 1.7320467019706676e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634407533082e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014744438728e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.970596152824813e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.587078939791771e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -2.0649439001801817e-08 +2.0649439001914142e-08 -4.1055982096249721e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -625,7 +625,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007682656087209085 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.3855759618329732e-09 +-5.3855759617206495e-09 -4.1055973456764745e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -640,7 +640,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.0204268080058528e-04 +-1.0204268080074791e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -656,60 +656,60 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1182220967714609e-09 -9.0815184667034262e-22 +-8.9457767741859433e-10 +7.2652147733627406e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448702733668e+00 +1.2247448704970112e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2653717795066694e-03 +-1.0122963181962380e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1182220967714609e-09 --1.3866420142768993e-08 +-1.3418665161278917e-09 +-1.6639686001089749e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448702733668e+00 -1.7320507937024570e+00 +1.2247448700497223e+00 +1.7320507909291911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2653579232167547e-03 +-1.5184311674505567e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364441935429217e-09 --2.7732536600659454e-08 +-2.2364441935464860e-09 +-2.2690215720981037e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448691551448e+00 -1.7320507798363405e+00 +1.7320507848786615e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5307296602978513e-03 +-2.5307346952514625e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6773331451571915e-09 --1.5599608807842594e-08 +-2.2364441935464860e-09 +-2.7732688288126510e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448697142558e+00 -1.7320507919692685e+00 +1.2247448691551448e+00 +1.7320507798361888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8980472630325087e-03 +-2.5307296601464152e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -718,10 +718,10 @@ Using dense direct linear solver 1.7320507798361888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404386289653829, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957000613731, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.063963430758315e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -733,200 +733,200 @@ Using dense direct linear solver -2.5307296601464152e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364441935429216e-08 --5.5465375953047665e-07 +-1.7891553548371888e-08 +-4.4372300762438135e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448467907029e+00 -1.7320502251824292e+00 +1.2247448512635912e+00 +1.7320503361131812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.7840698767353993e-02 +-2.2778287550492170e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2364441935429216e-08 --6.1017770813082445e-06 +-2.6837330322557829e-08 +-7.3219952782872123e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448467907029e+00 -1.7320446780591074e+00 +1.2247448423178144e+00 +1.7320434578409105e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.7835240798979678e-02 +-3.2896780927653427e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4728883870858431e-08 --1.2201161743761258e-05 +-4.4728883870929714e-08 +-1.0184125065008957e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448244262609e+00 -1.7320385786744450e+00 +1.7320405957111238e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.3144939292931404e-02 +-5.3146894438855008e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.3546662903143825e-08 --7.0716009260773599e-06 +-4.4728883870929714e-08 +-1.2202338183393069e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448356084818e+00 -1.7320437082352627e+00 +1.2247448244262609e+00 +1.7320385774980054e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.0491503566897770e-02 +-5.3144938152588937e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448244262609e+00 -1.7320385774980056e+00 +1.7320385774980054e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153410775187103, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472743441796188, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359857790466248 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809670603232e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894931567078, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991343043949, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499501404429 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176893341888e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448244262609e+00 -1.7320385774980056e+00 +1.7320385774980054e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.3144938152589187e-02 +-5.3144938152588937e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7538676368091943e-08 --1.4342442210495329e-05 +-2.2030941094508669e-08 +-1.1473953768396211e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447968875844e+00 -1.7320242350557951e+00 +1.2247448023953198e+00 +1.7320271035442369e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.4310189378687811e-02 +-7.8076593113473342e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7538676368091943e-08 --2.2753136252560206e-05 +-3.3046411641763002e-08 +-2.7303542468092476e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447968875844e+00 -1.7320158243617529e+00 +1.2247447913798493e+00 +1.7320112739555373e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.4302188075681905e-02 +-9.0534479090859737e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5077352736183887e-08 --4.5501953816268376e-05 +-5.5077352736271667e-08 +-4.2443640158545354e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693489082e+00 -1.7319930755441892e+00 +1.7319961338578469e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620669192147e-01 +-1.1546906111565892e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1308014552137917e-08 --3.0974095395338532e-05 +-5.5077352736271667e-08 +-4.5504002277687035e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447831182463e+00 -1.7320076034026102e+00 +1.2247447693489082e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9886380172393208e-02 +-1.1546620478002398e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447693489082e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682865918977238, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535551282218148, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550371668616321 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844435520364e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351617533803, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755283245, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153805748092 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952199393e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.4608057715444910e-09 --5.7734073149129372e-05 +-4.4608057712401414e-09 +-5.7734073149573462e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55774369269417 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55774369287537 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01080099623073331 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01080099623081625 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0208536560049759e-07 --5.7734061002883788e-05 +-1.0208536560028525e-07 +-5.7734061003327877e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.659073044559591e-12 + 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.658628955349741e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.0412407980138390e-04 +-2.0412407980164031e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0016 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412407980138395e-04 +-2.0412407980164037e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -934,86 +934,86 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693489082e+00 -1.7319930734957281e+00 +1.7319930734957276e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620478002440e-01 +-1.1546620478002398e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237223940415110e-08 --3.4639861434007275e-05 +-4.8989779152393631e-08 +-2.7711889147205725e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447081116842e+00 -1.7319584336342941e+00 +1.2247447203591291e+00 +1.7319653616065804e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5010735421534613e-01 +-1.4317857535709258e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237223940415110e-08 --4.5032206264603784e-05 +-7.3484668728590437e-08 +-5.4038400480489428e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447081116842e+00 -1.7319480412894634e+00 +1.2247446958642394e+00 +1.7319390350952470e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5009786254039512e-01 +-1.5702504769828460e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247444788083022e-07 --9.0058717524236964e-05 +-1.2247444788098409e-07 +-8.6279743205392416e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446468744603e+00 -1.7319030147782037e+00 +1.7319067937525223e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8473630414241810e-01 +-1.8473968002289742e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1855835910622671e-08 --6.3649095230442374e-05 +-1.2247444788098409e-07 +-9.0061294243471267e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446774930724e+00 -1.7319294244004977e+00 +1.2247446468744603e+00 +1.7319030122014842e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.6741983373807931e-01 +-1.8473630184054868e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446468744603e+00 -1.7319030122014847e+00 +1.7319030122014842e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794542729744, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522761020554, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871268367595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654002685442e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594888119, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051092595, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751820999 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062644397192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.4807203267049808e-08 +-2.4807203266927174e-08 -9.0061306389666029e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1021,7 +1021,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74977069074764 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74977069074765 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 @@ -1035,16 +1035,16 @@ Using dense direct linear solver [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247445883205530e+00 -1.7319030122204297e+00 +1.7319030122204293e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.2655497711517312e-04 +-3.2655497711536546e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.8759969160624009e-04 +-2.8759969160645281e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1053,117 +1053,117 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620481270339e-01 +-1.1546620481270291e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8346625547498667e-08 --1.5395493975027113e-05 +-3.0677300438021622e-08 +-1.2316395180021641e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447309595978e+00 -1.7319776780138993e+00 +1.2247447386289230e+00 +1.7319807571126939e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3086141135738602e-01 +-1.2778225503686283e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8346625547498667e-08 --1.7448188180984795e-05 +-4.6015950657032430e-08 +-2.0937802814864442e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447309595978e+00 -1.7319756253196934e+00 +1.2247447232902728e+00 +1.7319721357050590e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3085951375563096e-01 +-1.3393835070950666e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6693251094997334e-08 --3.4895870334834906e-05 +-7.6693251095054058e-08 +-3.4149442995567741e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446926129724e+00 -1.7319581776375395e+00 +1.7319589240648783e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4625425348489060e-01 +-1.4625493688045391e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7519938321247994e-08 --2.5402336074196082e-05 +-7.6693251095054058e-08 +-3.4896102601051698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447117862851e+00 -1.7319676711718002e+00 +1.2247446926129724e+00 +1.7319581774052728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.3855741979523101e-01 +-1.4625425327223757e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446926129724e+00 -1.7319581774052735e+00 +1.7319581774052728e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868658914024, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433912557463, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127172090488 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892949201e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133319735241, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967986945831, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487995104687 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555380462016e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -6.3840917578490494e-08 --3.4896102600878720e-05 +6.3840917578590669e-08 +-3.4896102601100765e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.23943664292217 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.23943664301278 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006528828278646521 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006528828278687991 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.9818647334992893e-08 --3.4896095259151938e-05 +-5.9818647335046057e-08 +-3.4896095259373983e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247447094875761e+00 -1.7319581774126152e+00 +1.7319581774126145e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --2.5856090855177040e-04 +-2.5856090855209095e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.0616676507755293e-04 +-3.0616676507782387e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1172,130 +1172,130 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620481270339e-01 +-1.1546620481270291e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5308338253877633e-07 --5.7733102406351646e-05 +-1.2246670603112947e-07 +-4.6186481925081128e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446162228408e+00 -1.7319353404054680e+00 +1.2247446468395173e+00 +1.7319468870259489e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320509139811002e-01 +-1.6165590008830666e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5308338253877633e-07 --8.6602545699054936e-05 +-1.8370005904669419e-07 +-1.0392199434432447e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446162228408e+00 -1.7319064709621752e+00 +1.2247445856061645e+00 +1.7318891515135295e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910889909346e-01 +-1.8472395021648236e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0616676507755265e-07 --1.7317910889909331e-04 +-3.0616676507782360e-07 +-1.6268130451763737e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631394584e+00 -1.7318198943989753e+00 +1.7318303922033562e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932443414264e-01 +-2.3091842250790870e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2962507380816450e-07 --1.1906830484701114e-04 +-3.0616676507782360e-07 +-1.7319065497425613e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445396811496e+00 -1.7318740052030273e+00 +1.2247444631394584e+00 +1.7318198828528997e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205197679393413e-01 +-2.3090931442754373e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631394584e+00 -1.7318198828529008e+00 +1.7318198828528997e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152469835, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191863710416, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191863710418 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614626991023 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406941531037, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390663869795, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390663869798 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387410975e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693062234e+00 -1.7319930735078743e+00 +1.7319930735078739e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.1096028622597713e-07 --1.7319065497356512e-04 +-1.1096028622593732e-07 +-1.7319065497423125e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.6708677907402 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67086779101204 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03240190722051899 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03240190722064065 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0620935125911909e-07 --1.7319061853693479e-04 +-3.0620935125932471e-07 +-1.7319061853760093e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463096872e+00 1.731819882889337e+00 4.649436391446216e-11 3.171818363512102e-11 + 2.000000000000000e-03 1.224744463096872e+00 1.731819882889336e+00 4.649436391446216e-11 3.171707341209640e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --4.0824804554866900e-04 +-4.0824804554924596e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824804554866911e-04 +-4.0824804554924607e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1303,86 +1303,86 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631394584e+00 -1.7318198828529008e+00 +1.7318198828528997e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931442754484e-01 +-2.3090931442754373e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247441366460058e-07 --6.9272794328263372e-05 +-9.7979530931818944e-08 +-5.5418235462610432e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443406650447e+00 -1.7317506100585724e+00 +1.2247443651599275e+00 +1.7317644646174370e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.6553868341103315e-01 +-2.5861248261822950e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247441366460058e-07 --7.9661605023309849e-05 +-1.4696929639772838e-07 +-9.5593778879724217e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443406650447e+00 -1.7317402212478774e+00 +1.2247443161701621e+00 +1.7317242890740199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.6552988755126933e-01 +-2.7245452269300624e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4494882732920117e-07 --1.5931793253076140e-04 +-2.4494882732954734e-07 +-1.5554005421686536e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442181906312e+00 -1.7316605649203700e+00 +1.7316643427986829e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0015446876458585e-01 +-3.0015759180798890e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8371162049690086e-07 --1.1559471422656621e-04 +-2.4494882732954734e-07 +-1.5932009251143106e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247442794278378e+00 -1.7317042881386742e+00 +1.2247442181906312e+00 +1.7316605627603883e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8284501460401668e-01 +-3.0015446697900089e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442181906312e+00 -1.7316605627603894e+00 +1.7316605627603883e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458421340622, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240084486997, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733474145002 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614202090989e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571627119462, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188762034683, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460339115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435012534e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.9657175802361520e-08 +-4.9657175802085573e-08 -1.5932012894803727e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1390,25 +1390,25 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01750170982633 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01750170982636 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0344390384820746e-07 +-3.0344390384820735e-07 -1.5924708716715297e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247441596529685e+00 -1.7316606358021702e+00 +1.7316606358021691e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --5.3064236929429177e-04 +-5.3064236929486878e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.9169872082977526e-04 +-4.9169872083035227e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1417,112 +1417,112 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931448041638e-01 +-2.3090931448041535e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5559829443970004e-08 --3.0787908597388837e-05 +-5.2447863555237562e-08 +-2.4630326877910966e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443975370429e+00 -1.7317890949807400e+00 +1.2247444106490086e+00 +1.7317952525624585e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.4629962781409834e-01 +-2.4322149398020532e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5559829443970004e-08 --3.2839950375213099e-05 +-7.8671795332856329e-08 +-3.9407926216824440e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443975370429e+00 -1.7317870429389621e+00 +1.2247443844250769e+00 +1.7317804749631194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.4629786761825689e-01 +-2.4937568763331283e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3111965888794001e-07 --6.5679431364868486e-05 +-1.3111965888809390e-07 +-6.4933224671256490e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443319772133e+00 -1.7317542034579725e+00 +1.7317549496646651e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6168730339317464e-01 +-2.6168793683963526e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8339744165955013e-08 --4.8490241189541109e-05 +-1.3111965888809390e-07 +-6.5679627055031494e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443647571281e+00 -1.7317713926481479e+00 +1.2247443319772133e+00 +1.7317542032622812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5399313867312961e-01 +-2.6168730322705452e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443319772133e+00 -1.7317542032622826e+00 +1.7317542032622812e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250108435563, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688010409814, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300390368028 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796482152001e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103108403036, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938984066914, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477119025093 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938743503804e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.0702619679834452e-07 --6.5679627054837653e-05 +1.0702619679862048e-07 +-6.5679627055059697e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80340866628079 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80340866637142 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.1425074787646166e-07 --6.5649513032830920e-05 +-1.1425074787651466e-07 +-6.5649513033052870e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247443488461243e+00 -1.7317542333763045e+00 +1.7317542333763032e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --4.6266977813303936e-04 +-4.6266977813368045e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.1026110260369000e-04 +-5.1026110260431396e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1531,111 +1531,111 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931448041638e-01 +-2.3090931448041535e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5513055130184477e-07 --1.1545465724020809e-04 +-2.0410444104172542e-07 +-9.2363725792166069e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442079663209e+00 -1.7317044282320972e+00 +1.2247442589924311e+00 +1.7317275191635442e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862702540443119e-01 +-2.7708268586470547e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5513055130184477e-07 --1.4431351270221548e-04 +-3.0615666156258811e-07 +-1.7317561722646665e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442079663209e+00 -1.7316755693766352e+00 +1.2247441569402107e+00 +1.7316467072721098e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297635801807e-01 +-3.0014304369758810e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1026110260368953e-07 --2.8860297635801782e-04 +-5.1026110260431348e-07 +-2.7810814625138237e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439528357695e+00 -1.7315312799129794e+00 +1.7315417747430850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623682025791e-01 +-3.4631463266537588e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8269582695276718e-07 --2.0563963143959601e-04 +-5.1026110260431348e-07 +-2.8861259246751422e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440804010452e+00 -1.7316142432578978e+00 +1.2247439528357695e+00 +1.7315312702968688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746260582927854e-01 +-3.4630622912736936e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439528357695e+00 -1.7315312702968666e+00 +1.7315312702968688e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854911908458, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071543212, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060715432122 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086790420591 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620236699889, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755427231894, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755427231897 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477049346e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444630968722e+00 -1.7318198828893374e+00 +1.7318198828893363e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.1745966904967574e-07 --2.8861259247081605e-04 +-2.1745966904942186e-07 +-2.8861259246748538e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7808468031958 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7808468018366 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1030635856856885e-07 --2.8848026595381710e-04 +-5.1030635856779561e-07 +-2.8848026595048795e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247439527905137e+00 -1.7315314026233837e+00 +1.7315314026233859e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247439527905137e+00 -1.7315314026233837e+00 +1.7315314026233859e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952790514e+00 1.731531402623384e+00 4.276623499777088e-11 1.323498133309897e-07 + 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out index c30aa63410..96eea4c969 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out @@ -36,10 +36,10 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 -8.5332324353576826e-25 +9.6542504327718640e-25 +6.8265859482861472e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -47,203 +47,203 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.1889694230616173e-06 +-9.5117553744560093e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 --1.2242553240514061e-14 +1.4481375649157797e-24 +-1.4691063873370668e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688650e+00 +1.7320508075688625e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.1889694108828618e-06 +-1.4267632945325369e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.4135626081929657e-24 --2.4485106230224258e-14 +-2.0033268699306856e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688528e+00 +1.7320508075688572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3779388340687632e-06 +-2.3779388384274727e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8101719561447239e-24 --1.3772872301180226e-14 +2.4135626081929657e-24 +-2.4485106355409614e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688634e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.7834541255044815e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3779388338123684e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --2.0160744284751053e-12 +7.9491945601514801e-23 +-1.6128595429539865e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075668364e+00 +1.7320508075672398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0027630277357223e-04 +-8.0696623353025584e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --8.5016690475470017e-11 +1.1923791840227221e-22 +-1.0202002013558598e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508074838359e+00 +1.7320508074668328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0027621977792367e-04 +-1.1985588591683926e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.9872986400378700e-22 --1.7003324021947768e-10 +-1.3985120439909713e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508074290015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817461380875463e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.4904739800284026e-22 --9.6399751925935201e-11 +1.9872986400378700e-22 +-1.7003331056080624e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508074724528e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4922542246468209e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.7603134562689734e-09 +1.3059534380233044e-21 +-2.2082507650180351e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508046385057e+00 +1.7320508051905688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8065329798490591e-03 +-1.4848595168265363e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.5162648015366993e-08 +1.9589301570349567e-21 +-3.0195140349873647e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507822361713e+00 +1.7320507772036791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8065106008801368e-03 +-2.1281804830314676e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582609e-21 --5.0324672611040883e-08 +3.2648835950582613e-21 +-4.2178397238593067e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507570741466e+00 +1.7320507652204222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4148689076686934e-03 +-3.4148770378833108e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.4486626962936955e-21 --2.9342862858857047e-08 +3.2648835950582613e-21 +-5.0324983905675798e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507780559564e+00 +1.7320507570738355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6106953640960742e-03 +-3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -252,10 +252,10 @@ Using fixed-point nonlinear solver 1.7320507570738355e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -267,149 +267,149 @@ Using fixed-point nonlinear solver -3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.5129339229286827e-07 +2.6119068760466087e-20 +-7.6103471383429466e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320498057804432e+00 +1.7320499960391216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.5586084640419201e-02 +-2.9151178844601260e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.9133548298325844e-06 +3.9178603140699122e-20 +-1.1895748900626277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320408437190056e+00 +1.7320388613249349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.5577306688127808e-02 +-4.2010812460658582e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.5297671901165209e-20 --1.9821819042637574e-05 +-1.6563084595280827e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320309352547929e+00 +1.7320341939892403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.7747965740933266e-02 +-6.7751097007922326e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.8973253925873913e-20 --1.1507434916573431e-05 +6.5297671901165209e-20 +-1.9824212659222936e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320392496389190e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1664931509040730e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --6.7747963440942832e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.4979707041077427e-07 +6.2249751613389108e-22 +-3.5983765632861759e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320304830641062e+00 +1.7320305730235199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.8514575742804049e-02 +-6.8361252939970668e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.5488681702461341e-07 +9.3374627420083658e-22 +-5.4586417701899842e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320304779743596e+00 +1.7320303869969993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.8514570854394510e-02 +-6.8667892851103390e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.5562437903347276e-21 --9.0977356913827813e-07 +-9.0792275404196263e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320300230876076e+00 +1.7320300249384222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.9281182547766579e-02 +-6.9281184324548689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1671828427510456e-21 --6.8042154646761999e-07 +1.5562437903347276e-21 +-9.0977360024710662e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320302524396303e+00 +1.7320300230875760e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.8897877999666526e-02 +-6.9281182547736284e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 @@ -417,37 +417,37 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.6052128249628413e-20 --2.0784481300495372e-05 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484739570785543 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484739571057476 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002872021134577523 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002872021134666013 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.9864432745239724e-11 --2.0784481300495372e-05 +-3.9864432898521197e-11 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247448713517246e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -1.2247447979467626e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3403120151440330e-08 +-7.3403120471937957e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.3555374714617959e-05 +-8.3555374714836480e-05 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -463,60 +463,60 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094935066637513e-08 -1.1004305373251416e-20 +-8.8759480533332239e-09 +8.8034442986011326e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448602966540e+00 +1.2247448625156410e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5333743569274107e-02 +-1.2266837313135969e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094935066637513e-08 --2.0360974959496313e-06 +-1.3313922079999836e-08 +-2.4432856161634692e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448602966540e+00 -1.7320487714713813e+00 +1.2247448580776668e+00 +1.7320483642832609e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5331725496048181e-02 +-1.8398309535505274e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2189870133275026e-08 --4.0716590505196003e-06 +-2.2189870133333058e-08 +-3.3312831891830761e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448492017188e+00 -1.7320467359098266e+00 +1.7320474762856881e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0665413589529698e-02 +-3.0666140857089724e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6642402599956269e-08 --2.2904091653244655e-06 +-2.2189870133333058e-08 +-4.0719245657578294e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448547491864e+00 -1.7320485171597120e+00 +1.2247448492017188e+00 +1.7320467356443114e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2999084375832465e-02 +-3.0665413328715335e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -525,10 +525,10 @@ Using fixed-point nonlinear solver 1.7320467356443114e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674146882004, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967181006723, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164120650628 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469444730164e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449552201203, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391570113155, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602350026490855 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360636416414e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -540,60 +540,60 @@ Using fixed-point nonlinear solver -3.0665413328715335e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781561978215532e-11 --1.6802156961071766e-08 +-3.6625249582668219e-11 +-1.3441725568857413e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448491559372e+00 -1.7320467188421544e+00 +1.2247448491650936e+00 +1.7320467222025859e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.0728681121796171e-02 +-3.0716027560606051e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781561978215532e-11 --1.6836822575343116e-08 +-5.4937874374002315e-11 +-2.0204187088296263e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448491559372e+00 -1.7320467188074888e+00 +1.2247448491467809e+00 +1.7320467154401245e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.0728681087745596e-02 +-3.0741334643412950e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1563123956431065e-11 --3.3673645113372333e-08 +-9.1563123956670533e-11 +-3.3661039436871571e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448491101556e+00 -1.7320467019706662e+00 +1.7320467019832719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0791948878950766e-02 +-3.0791948891332362e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8672342967323299e-11 --2.5242234243734439e-08 +-9.1563123956670533e-11 +-3.3673645131686773e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448491330464e+00 -1.7320467104020771e+00 +1.2247448491101556e+00 +1.7320467019706662e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0760314992095555e-02 +-3.0791948878950766e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -602,17 +602,17 @@ Using fixed-point nonlinear solver 1.7320467019706662e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634423980587e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014729308275e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.483386286293241e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.992290581650285e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.2255707022780660e-08 +-2.2255707022668332e-08 -4.1055982109572398e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -624,7 +624,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0005550288725063259 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.2242293871998756e-08 +-2.2242293871886428e-08 -4.1055982109572398e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -643,7 +643,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.0207733751935617e-04 +-1.0207733751951878e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -659,60 +659,60 @@ Using fixed-point nonlinear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186018781377200e-09 -9.0815184667034262e-22 +-8.9488150251160156e-10 +7.2652147733627406e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448702729871e+00 +1.2247448704967074e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2653717796964892e-03 +-1.0122963183481211e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186018781377200e-09 --1.3866420144849109e-08 +-1.3423222537674026e-09 +-1.6639686003586335e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448702729871e+00 -1.7320507937024570e+00 +1.2247448700492667e+00 +1.7320507909291911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2653579234065745e-03 +-1.5184311676783584e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372037562754401e-09 --2.7732536604819686e-08 +-2.2372037562790040e-09 +-2.2690215724385017e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448691543852e+00 -1.7320507798363405e+00 +1.7320507848786615e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5307296606776721e-03 +-2.5307346956312832e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6779028172065802e-09 --1.5599608810182602e-08 +-2.2372037562790040e-09 +-2.7732688292287695e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448697136860e+00 -1.7320507919692685e+00 +1.2247448691543852e+00 +1.7320507798361888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8980472633174197e-03 +-2.5307296605262359e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -721,10 +721,10 @@ Using fixed-point nonlinear solver 1.7320507798361888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404323881355509, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957007624892, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290959817898209e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -736,60 +736,60 @@ Using fixed-point nonlinear solver -2.5307296605262359e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372037562754398e-08 --5.5465375961372104e-07 +-1.7897630050232032e-08 +-4.4372300769097682e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448467823476e+00 -1.7320502251824292e+00 +1.2247448512567551e+00 +1.7320503361131812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.7840698771531659e-02 +-2.2778287553910197e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372037562754398e-08 --6.1017770822238533e-06 +-2.6846445075348045e-08 +-7.3219952793859182e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448467823476e+00 -1.7320446780591066e+00 +1.2247448423079401e+00 +1.7320434578409094e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.7835240803156462e-02 +-3.2896780932589464e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4744075125508797e-08 --1.2201161745592089e-05 +-4.4744075125580080e-08 +-1.0184125066537031e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448244103101e+00 -1.7320385786744432e+00 +1.7320405957111222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.3144939300905032e-02 +-5.3146894446828755e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.3558056344131599e-08 --7.0716009271385050e-06 +-4.4744075125580080e-08 +-1.2202338185223972e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448355963289e+00 -1.7320437082352618e+00 +1.2247448244103101e+00 +1.7320385774980036e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.0491503572973347e-02 +-5.3144938160562566e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -798,10 +798,10 @@ Using fixed-point nonlinear solver 1.7320385774980036e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534114165041092, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472749598439449, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359871835985131 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967336947e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949309721532, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991337332671, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499488374947 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176950395554e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -813,60 +813,60 @@ Using fixed-point nonlinear solver -5.3144938160562566e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548029318785941e-08 --1.4342442212647139e-05 +-2.2038423455063863e-08 +-1.1473953770117711e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447968622807e+00 -1.7320242350557911e+00 +1.2247448023718865e+00 +1.7320271035442334e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.4310189391335916e-02 +-7.8076593125186555e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548029318785941e-08 --2.2753136255973603e-05 +-3.3057635182595789e-08 +-2.7303542472188554e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447968622807e+00 -1.7320158243617476e+00 +1.2247447913526750e+00 +1.7320112739555313e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.4302188088328789e-02 +-9.0534479104441179e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5096058637571881e-08 --4.5501953823094513e-05 +-5.5096058637659655e-08 +-4.2443640164912643e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693142515e+00 -1.7319930755441806e+00 +1.7319961338578387e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620670924172e-01 +-1.1546906113297954e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1322043978178914e-08 --3.0974095399985307e-05 +-5.5096058637659655e-08 +-4.5504002284513375e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447830882661e+00 -1.7320076034026035e+00 +1.2247447693142515e+00 +1.7319930734957192e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9886380187377041e-02 +-1.1546620479734447e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -875,17 +875,17 @@ Using fixed-point nonlinear solver 1.7319930734957192e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682858593170752, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535544249443922, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550358638884499 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844408964292e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351610108846, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577545704493, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153792542011 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382965339118e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.0199734610235782e-07 +-1.0199734610205346e-07 -5.7734073158011157e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -897,7 +897,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00792134563849221 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0201052215427040e-07 +-1.0201052215396604e-07 -5.7734073158011157e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -941,75 +941,75 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620479734454e-01 +-1.1546620479734447e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237270665912006e-08 --3.4639861439203321e-05 +-4.8989816532729611e-08 +-2.7711889151362641e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447080769809e+00 -1.7319584336342799e+00 +1.2247447203244350e+00 +1.7319653616065678e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5010735423268484e-01 +-1.4317857537442796e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237270665912006e-08 --4.5032206269805400e-05 +-7.3484724799094394e-08 +-5.4038400486731519e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447080769809e+00 -1.7319480412894495e+00 +1.2247446958295267e+00 +1.7319390350952324e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5009786255773402e-01 +-1.5702504771562753e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2247454133182401e-07 --9.0058717534640304e-05 +-8.6279743215793899e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446468397101e+00 -1.7319030147781846e+00 +1.7319067937525034e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8473630415977613e-01 +-1.8473968004025565e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1855905998868009e-08 --6.3649095238242734e-05 +-1.2247454133182401e-07 +-9.0061294253874797e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446774583455e+00 -1.7319294244004810e+00 +1.2247446468397101e+00 +1.7319030122014654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.6741983375542785e-01 +-1.8473630185790693e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446468397101e+00 -1.7319030122014651e+00 +1.7319030122014654e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794539263066, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522757692544, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871262820911 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654020389983e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859601897, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613052178211, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175363036 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780367e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693810667e+00 @@ -1017,37 +1017,37 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.2254130528094580e-07 --9.0061294254040192e-05 +-9.0061294253818147e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76651861107677 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76651861098613 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01237684727413916 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01237684727410377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.2259689042719381e-07 --9.0061294254040192e-05 +-1.2259689042713250e-07 +-9.0061294253818147e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247446467841763e+00 -1.7319030122014651e+00 +1.7319030122014654e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -3.2659855291765393e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3345335419762910e-08 +-7.3345335291554468e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.8767946012124476e-04 +-2.8767946012115732e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1063,60 +1063,60 @@ Using fixed-point nonlinear solver -1.1546620476393690e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357261349499285e-08 --1.5395493968524915e-05 +-3.0685809079590104e-08 +-1.2316395174819934e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447310238053e+00 -1.7319776780017506e+00 +1.2247447386952577e+00 +1.7319807571005443e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3086141131405149e-01 +-1.2778225499244233e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357261349499285e-08 --1.7448188175206858e-05 +-4.6028713619385152e-08 +-2.0937802807930983e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447310238053e+00 -1.7319756253075440e+00 +1.2247447233523530e+00 +1.7319721356929112e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3085951371229571e-01 +-1.3393835066725826e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6714522698998570e-08 --3.4895870323278842e-05 +-7.6714522698975263e-08 +-3.4149442983748446e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446926665440e+00 -1.7319581776253958e+00 +1.7319589240527353e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4625425344698667e-01 +-1.4625493684255053e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7535892024248931e-08 --2.5402336065257510e-05 +-7.6714522698975263e-08 +-3.4896102589495831e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447118451746e+00 -1.7319676711596539e+00 +1.2247446926665440e+00 +1.7319581773931296e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.3855741975461167e-01 +-1.4625425323433405e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1125,17 +1125,17 @@ Using fixed-point nonlinear solver 1.7319581773931296e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868660048197, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433913646269, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127176173512 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892963146e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133308235899, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967975906463, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487990964924 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555484250507e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693810667e+00 1.7319930734957192e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --7.6688802928446289e-08 +-7.6688802928491221e-08 -3.4896102589554445e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1147,7 +1147,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004779612504313948 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --7.6682434002464837e-08 +-7.6682434002509769e-08 -3.4896102589554445e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -1166,7 +1166,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.0620144019338736e-04 +-3.0620144019332231e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1182,123 +1182,123 @@ Using fixed-point nonlinear solver -1.1546620476393690e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310072009669355e-07 --5.7733102381968400e-05 +-1.2248057607732883e-07 +-4.6186481905574725e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446162803466e+00 -1.7319353403933373e+00 +1.2247446469004906e+00 +1.7319468870138135e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320509135843956e-01 +-1.6165590004681735e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310072009669355e-07 --8.6602545679219701e-05 +-1.8372086411599324e-07 +-1.0392199432052239e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446162803466e+00 -1.7319064709500400e+00 +1.2247445856602026e+00 +1.7318891515013985e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910885941884e-01 +-1.8472395017862631e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0620144019338711e-07 --1.7317910885941869e-04 +-3.0620144019332205e-07 +-1.6268130447630883e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631796265e+00 -1.7318198943868597e+00 +1.7318303921912428e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932440355838e-01 +-2.3091842247732647e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2965108014504033e-07 --1.1906830481555141e-04 +-3.0620144019332205e-07 +-1.7319065493458303e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445397299865e+00 -1.7318740051909036e+00 +1.2247444631796265e+00 +1.7318198828407847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205197675880648e-01 +-2.3090931439696014e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631796265e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991524318626, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186334588, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191863345882 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614627903846 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406945247113, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390667437229, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390667437232 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697758e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693810667e+00 1.7319930734957192e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --3.0612154947108023e-07 --1.7319065493404118e-04 +-3.0612154947120199e-07 +-1.7319065493448527e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322900199585 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322900217715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376157169292097 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376157169297406 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0616099692236107e-07 --1.7319065493404118e-04 +-3.0616099692257478e-07 +-1.7319065493448527e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683408967778632e-11 + 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683453376699617e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_0(:) = -4.0824815435551822e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --1.6182317202176099e-10 +-1.6182336434367084e-10 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824831617869032e-04 +-4.0824831617888266e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1306,117 +1306,117 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631796265e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931439696055e-01 +-2.3090931439696014e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247449485360696e-07 --6.9272794319088081e-05 +-9.7979595882931733e-08 +-5.5418235455270370e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443407051317e+00 -1.7317506100464661e+00 +1.2247443652000305e+00 +1.7317644646053294e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.6553868338073955e-01 +-2.5861248258787833e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247449485360696e-07 --7.9661605014221768e-05 +-1.4696939382439757e-07 +-9.5593778868818715e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443407051317e+00 -1.7317402212357709e+00 +1.2247443162102327e+00 +1.7317242890619158e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.6552988752097550e-01 +-2.7245452266277115e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4494898970721393e-07 --1.5931793251258513e-04 +-2.4494898970732933e-07 +-1.5554005419865773e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442182306367e+00 -1.7316605649082726e+00 +1.7316643427865861e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0015446873458246e-01 +-3.0015759177798618e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8371174228041043e-07 --1.1559471421290134e-04 +-2.4494898970732933e-07 +-1.5932009249325520e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247442794678842e+00 -1.7317042881265723e+00 +1.2247442182306367e+00 +1.7316605627482915e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8284501457386813e-01 +-3.0015446694899811e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442182306367e+00 -1.7316605627482917e+00 +1.7316605627482915e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458421962382, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240085083887, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733475139817 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614197700071e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571624478249, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188759499119, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314599165209 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025701e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.4498935556889249e-07 --1.5932009249342016e-04 +-2.4498935556880053e-07 +-1.5932009249319812e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04718221193126 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04718221184059 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02187885806556827 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02187885806555057 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.4506072053909620e-07 --1.5932009249342016e-04 +-2.4506072053906555e-07 +-1.5932009249319812e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247442181593491e+00 -1.7316605627482917e+00 +1.7316605627482915e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -5.3072246272269725e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3420917813768941e-08 +-7.3420917941995342e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.9180347581174967e-04 +-4.9180347581189820e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1425,86 +1425,86 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931437673895e-01 +-2.3090931437673864e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5573796774899929e-08 --3.0787908583565184e-05 +-5.2459037419935796e-08 +-2.4630326866852117e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443976462729e+00 -1.7317890949322017e+00 +1.2247444107610324e+00 +1.7317952525139177e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.4629962771784825e-01 +-2.4322149388246994e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5573796774899929e-08 --3.2839950362379757e-05 +-7.8688556129903674e-08 +-3.9407926201424432e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443976462729e+00 -1.7317870428904227e+00 +1.2247443845315136e+00 +1.7317804749145833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.4629786752200572e-01 +-2.4937568753854766e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3114759354979986e-07 --6.5679431339201504e-05 +-1.3114759354983948e-07 +-6.4933224645229620e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443320724762e+00 -1.7317542034094460e+00 +1.7317549496161395e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6168730330434964e-01 +-2.6168793675081103e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8360695162349900e-08 --4.8490241169919625e-05 +-1.3114759354983948e-07 +-6.5679627029364756e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443648593745e+00 -1.7317713925996152e+00 +1.2247443320724762e+00 +1.7317542032137554e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5399313858059180e-01 +-2.6168730313823008e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443320724762e+00 -1.7317542032137558e+00 +1.7317542032137554e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250126014113, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880120973548, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300453650809 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964733044311e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103127264459, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593900217388, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477125815205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938536213781e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.3112184019393055e-07 +-1.3112184019386104e-07 -6.5679627029302523e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1513,29 +1513,29 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.8157053695451 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009003158261554924 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009003158261572643 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.3112248854313671e-07 +-1.3112248854318987e-07 -6.5679627029302523e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247443320975810e+00 -1.7317542032137558e+00 +1.7317542032137554e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -4.6268120339998809e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = -2.9834752213812049e-08 +2.9834751957373116e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.1032543147923868e-04 +-5.1032543147944555e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1544,112 +1544,112 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931437673895e-01 +-2.3090931437673864e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5516271573961913e-07 --1.1545465718836938e-04 +-2.0413017259177806e-07 +-9.2363725750695390e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442080573538e+00 -1.7317044281835967e+00 +1.2247442590898971e+00 +1.7317275191150341e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862702531849788e-01 +-2.7708268577522421e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5516271573961913e-07 --1.4431351265924882e-04 +-3.0619525888766706e-07 +-1.7317561717490720e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442080573538e+00 -1.7316755693281258e+00 +1.2247441570248108e+00 +1.7316467072236097e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297627207682e-01 +-3.0014304361519439e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1032543147923826e-07 --2.8860297627207658e-04 +-5.1032543147944515e-07 +-2.7810814616221444e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439528946382e+00 -1.7315312798645131e+00 +1.7315417746946224e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623675205047e-01 +-3.4631463259717171e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8274407360942867e-07 --2.0563963137181632e-04 +-5.1032543147944515e-07 +-2.8861259238157586e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440804759961e+00 -1.7316142432094133e+00 +1.2247439528946382e+00 +1.7315312702484031e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746260575220731e-01 +-3.4630622905916247e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439528946382e+00 -1.7315312702484000e+00 +1.7315312702484031e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854904993055, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060708793333, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060708793335 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086786989621 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162022823251, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755419103209, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755419103213 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478196792e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632200697e+00 -1.7318198828407851e+00 +1.7318198828407847e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --5.1024548984602376e-07 --2.8861259238510684e-04 +-5.1024548984601466e-07 +-2.8861259238155412e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347804246883 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347804232378 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959595686370691 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959595686321129 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1031117389954834e-07 --2.8861259238510684e-04 +-5.1031117389877267e-07 +-2.8861259238155412e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247439529088957e+00 -1.7315312702484000e+00 +1.7315312702484031e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247439529088957e+00 -1.7315312702484000e+00 +1.7315312702484031e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952908896e+00 1.731531270248400e+00 7.561573589498494e-11 2.517031028048677e-11 + 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out index cc5d6d7a63..8f41873530 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out @@ -37,10 +37,10 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 -8.5332324353576826e-25 +9.6542504327718640e-25 +6.8265859482861472e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -48,203 +48,203 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.1889694230616173e-06 +-9.5117553744560093e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 --1.2242553240514061e-14 +1.4481375649157797e-24 +-1.4691063873370668e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688650e+00 +1.7320508075688625e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.1889694108828618e-06 +-1.4267632945325369e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.4135626081929657e-24 --2.4485106230224258e-14 +-2.0033268699306856e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688528e+00 +1.7320508075688572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3779388340687632e-06 +-2.3779388384274727e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8101719561447239e-24 --1.3772872301180226e-14 +2.4135626081929657e-24 +-2.4485106355409614e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688634e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.7834541255044815e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3779388338123684e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --2.0160744284751053e-12 +7.9491945601514801e-23 +-1.6128595429539865e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075668364e+00 +1.7320508075672398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0027630277357223e-04 +-8.0696623353025584e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --8.5016690475470017e-11 +1.1923791840227221e-22 +-1.0202002013558598e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508074838359e+00 +1.7320508074668328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0027621977792367e-04 +-1.1985588591683926e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.9872986400378700e-22 --1.7003324021947768e-10 +-1.3985120439909713e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508074290015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817461380875463e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.4904739800284026e-22 --9.6399751925935201e-11 +1.9872986400378700e-22 +-1.7003331056080624e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508074724528e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4922542246468209e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.7603134562689734e-09 +1.3059534380233044e-21 +-2.2082507650180351e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508046385057e+00 +1.7320508051905688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8065329798490591e-03 +-1.4848595168265363e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.5162648015366993e-08 +1.9589301570349567e-21 +-3.0195140349873647e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507822361713e+00 +1.7320507772036791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8065106008801368e-03 +-2.1281804830314676e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582609e-21 --5.0324672611040883e-08 +3.2648835950582613e-21 +-4.2178397238593067e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507570741466e+00 +1.7320507652204222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4148689076686934e-03 +-3.4148770378833108e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.4486626962936955e-21 --2.9342862858857047e-08 +3.2648835950582613e-21 +-5.0324983905675798e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507780559564e+00 +1.7320507570738355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6106953640960742e-03 +-3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -253,10 +253,10 @@ Using GMRES iterative linear solver 1.7320507570738355e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -268,149 +268,149 @@ Using GMRES iterative linear solver -3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.5129339229286827e-07 +2.6119068760466087e-20 +-7.6103471383429466e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320498057804432e+00 +1.7320499960391216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.5586084640419201e-02 +-2.9151178844601260e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.9133548298325844e-06 +3.9178603140699122e-20 +-1.1895748900626277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320408437190056e+00 +1.7320388613249349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.5577306688127808e-02 +-4.2010812460658582e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.5297671901165209e-20 --1.9821819042637574e-05 +-1.6563084595280827e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320309352547929e+00 +1.7320341939892403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.7747965740933266e-02 +-6.7751097007922326e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.8973253925873913e-20 --1.1507434916573431e-05 +6.5297671901165209e-20 +-1.9824212659222936e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320392496389190e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1664931509040730e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --6.7747963440942832e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.4979707041077427e-07 +6.2249751613389108e-22 +-3.5983765632861759e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320304830641062e+00 +1.7320305730235199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.8514575742804049e-02 +-6.8361252939970668e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.5488681702461341e-07 +9.3374627420083658e-22 +-5.4586417701899842e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320304779743596e+00 +1.7320303869969993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.8514570854394510e-02 +-6.8667892851103390e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.5562437903347276e-21 --9.0977356913827813e-07 +-9.0792275404196263e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320300230876076e+00 +1.7320300249384222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.9281182547766579e-02 +-6.9281184324548689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1671828427510456e-21 --6.8042154646761999e-07 +1.5562437903347276e-21 +-9.0977360024710662e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320302524396303e+00 +1.7320300230875760e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.8897877999666526e-02 +-6.9281182547736284e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 @@ -418,50 +418,50 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.6052128249628413e-20 --2.0784481300495372e-05 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484739570785543, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484739571057476, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99923377420859, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99923377459316, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004061628839918641 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004061628840048816 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.261188224676155e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.083520046626938e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.261188224676155e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484739092489631 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.083520046626938e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484739092761568 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518443352071625e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518443005346105e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.5084110059761341e-11 --2.0784481300495362e-05 +-3.5084110219048765e-11 +-2.0784481301161509e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247448713565048e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -1.2247447979419823e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3412680392131972e-08 +-7.3412680712629598e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.3555381232637956e-05 +-8.3555381232856490e-05 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -477,60 +477,60 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094935932135499e-08 -1.1004305373251416e-20 +-8.8759487457316146e-09 +8.8034442986011326e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448602966531e+00 +1.2247448625156403e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5333743569274560e-02 +-1.2266837313136332e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094935932135499e-08 --2.0360974959496914e-06 +-1.3313923118597422e-08 +-2.4432856161635416e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448602966531e+00 -1.7320487714713813e+00 +1.2247448580776659e+00 +1.7320483642832609e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5331725496048634e-02 +-1.8398309535505728e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2189871864270998e-08 --4.0716590505197206e-06 +-2.2189871864329037e-08 +-3.3312831891831528e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448492017170e+00 -1.7320467359098266e+00 +1.7320474762856881e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0665413589530559e-02 +-3.0666140857090584e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6642403898203250e-08 --2.2904091653245337e-06 +-2.2189871864329037e-08 +-4.0719245657579395e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448547491850e+00 -1.7320485171597120e+00 +1.2247448492017170e+00 +1.7320467356443114e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2999084375833145e-02 +-3.0665413328716196e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -539,10 +539,10 @@ Using GMRES iterative linear solver 1.7320467356443114e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674137449705, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967171951717, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164117240989 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469455795117e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449549194824, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391567227031, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602350015623231 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360696927877e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -554,60 +554,60 @@ Using GMRES iterative linear solver -3.0665413328716196e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781565549561332e-11 --1.6802156961072236e-08 +-3.6625252439744859e-11 +-1.3441725568857791e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448491559354e+00 -1.7320467188421544e+00 +1.2247448491650919e+00 +1.7320467222025859e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.0728681121797077e-02 +-3.0716027560606912e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781565549561332e-11 --1.6836822575343612e-08 +-5.4937878659617281e-11 +-2.0204187088296829e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448491559354e+00 -1.7320467188074888e+00 +1.2247448491467792e+00 +1.7320467154401245e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.0728681087746502e-02 +-3.0741334643413810e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1563131099122665e-11 --3.3673645113373325e-08 +-9.1563131099362146e-11 +-3.3661039436872518e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448491101538e+00 -1.7320467019706662e+00 +1.7320467019832719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0791948878951675e-02 +-3.0791948891333267e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8672348324341995e-11 --2.5242234243735177e-08 +-9.1563131099362146e-11 +-3.3673645131687720e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448491330446e+00 -1.7320467104020771e+00 +1.2247448491101538e+00 +1.7320467019706662e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0760314992096416e-02 +-3.0791948878951675e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -616,17 +616,17 @@ Using GMRES iterative linear solver 1.7320467019706662e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634427270088e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014733230986e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034592e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.059825855331695e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.2255705448462166e-08 +-2.2255705448349838e-08 -4.1055982109572398e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -635,24 +635,24 @@ Using GMRES iterative linear solver [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.676051713894338, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370295065028044, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370295065028043, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.000784909752142059 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007849097521420567 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.830518996709413e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.760577365668639e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.830518996709413e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676055870103954 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.760577365668639e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676055870103953 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.705857208966444e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.705857285371877e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.2241373093805551e-08 --4.1055982109572406e-06 +-2.2241373093693210e-08 +-4.1055982109572389e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -670,7 +670,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.0207734372028466e-04 +-1.0207734372044729e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -686,60 +686,60 @@ Using GMRES iterative linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186019460898280e-09 -9.0815184667034262e-22 +-8.9488155687328813e-10 +7.2652147733627406e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448702729871e+00 +1.2247448704967074e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2653717796964892e-03 +-1.0122963183481211e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186019460898280e-09 --1.3866420144849109e-08 +-1.3423223353099323e-09 +-1.6639686003586335e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448702729871e+00 -1.7320507937024570e+00 +1.2247448700492667e+00 +1.7320507909291911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2653579234065745e-03 +-1.5184311676783584e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372038921796559e-09 --2.7732536604819686e-08 +-2.2372038921832202e-09 +-2.2690215724385017e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448691543850e+00 -1.7320507798363405e+00 +1.7320507848786615e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5307296606777627e-03 +-2.5307346956313739e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6779029191347421e-09 --1.5599608810182542e-08 +-2.2372038921832202e-09 +-2.7732688292287996e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448697136860e+00 -1.7320507919692685e+00 +1.2247448691543850e+00 +1.7320507798361888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8980472633174197e-03 +-2.5307296605263266e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -748,10 +748,10 @@ Using GMRES iterative linear solver 1.7320507798361888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404342563461688, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957005807184, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06434270796446e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290969948165467e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -763,60 +763,60 @@ Using GMRES iterative linear solver -2.5307296605263266e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372038921796557e-08 --5.5465375961374084e-07 +-1.7897631137465762e-08 +-4.4372300769099270e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448467823461e+00 -1.7320502251824292e+00 +1.2247448512567538e+00 +1.7320503361131812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.7840698771532429e-02 +-2.2778287553910873e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372038921796557e-08 --6.1017770822240218e-06 +-2.6846446706198639e-08 +-7.3219952793861351e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448467823461e+00 -1.7320446780591066e+00 +1.2247448423079383e+00 +1.7320434578409094e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.7835240803157232e-02 +-3.2896780932590325e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4744077843593115e-08 --1.2201161745592426e-05 +-4.4744077843664405e-08 +-1.0184125066537289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448244103072e+00 -1.7320385786744432e+00 +1.7320405957111222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.3144939300906482e-02 +-5.3146894446830205e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.3558058382694840e-08 --7.0716009271387023e-06 +-4.4744077843664405e-08 +-1.2202338185224310e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448355963266e+00 -1.7320437082352618e+00 +1.2247448244103072e+00 +1.7320385774980036e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.0491503572974478e-02 +-5.3144938160564016e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -825,10 +825,10 @@ Using GMRES iterative linear solver 1.7320385774980036e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534112244459035, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472747754680673, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359867629707846 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809675029214e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949308639851, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991336294257, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499486005951 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176960768948e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -840,60 +840,60 @@ Using GMRES iterative linear solver -5.3144938160564016e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548030992255921e-08 --1.4342442212647530e-05 +-2.2038424793839852e-08 +-1.1473953770118024e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447968622762e+00 -1.7320242350557911e+00 +1.2247448023718823e+00 +1.7320271035442334e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.4310189391338136e-02 +-7.8076593125188637e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548030992255921e-08 --2.2753136255974203e-05 +-3.3057637190759771e-08 +-2.7303542472189279e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447968622762e+00 -1.7320158243617476e+00 +1.2247447913526699e+00 +1.7320112739555313e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.4302188088331009e-02 +-9.0534479104443705e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5096061984511843e-08 --4.5501953823095712e-05 +-5.5096061984599623e-08 +-4.2443640164913843e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693142453e+00 -1.7319930755441806e+00 +1.7319961338578387e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620670924480e-01 +-1.1546906113298262e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1322046488383884e-08 --3.0974095399986134e-05 +-5.5096061984599623e-08 +-4.5504002284514608e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447830882607e+00 -1.7320076034026035e+00 +1.2247447693142453e+00 +1.7319930734957192e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9886380187379720e-02 +-1.1546620479734755e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -902,17 +902,17 @@ Using GMRES iterative linear solver 1.7319930734957192e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682860787673002, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535546356166082, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.5503625420419 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844413390305e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351612718122, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577548209397, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153797182887 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.0199734387279251e-07 +-1.0199734387248815e-07 -5.7734073158011157e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -926,9 +926,9 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120227586871812 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.102299192199702e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.018784119370388e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.102299192199702e-15 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.018784119370388e-15 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854949834894 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -937,7 +937,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0199718764843075e-07 +-1.0199718764812638e-07 -5.7734073158011136e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -981,75 +981,75 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620479734762e-01 +-1.1546620479734755e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237278666010224e-08 --3.4639861439204249e-05 +-4.8989822932808189e-08 +-2.7711889151363383e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447080769667e+00 -1.7319584336342799e+00 +1.2247447203244224e+00 +1.7319653616065678e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5010735423269192e-01 +-1.4317857537443432e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237278666010224e-08 --4.5032206269807521e-05 +-7.3484734399212267e-08 +-5.4038400486734094e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447080769667e+00 -1.7319480412894495e+00 +1.2247446958295110e+00 +1.7319390350952324e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5009786255774110e-01 +-1.5702504771563541e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2247455733202045e-07 --9.0058717534644559e-05 +-8.6279743215797707e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446468396879e+00 -1.7319030147781846e+00 +1.7319067937525034e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8473630415978723e-01 +-1.8473968004026675e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1855917999015343e-08 --6.3649095238245472e-05 +-1.2247455733202045e-07 +-9.0061294253879079e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446774583273e+00 -1.7319294244004810e+00 +1.2247446468396879e+00 +1.7319030122014654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.6741983375543698e-01 +-1.8473630185791803e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446468396879e+00 -1.7319030122014651e+00 +1.7319030122014654e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794538508985, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522756968625, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871261614381 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654029242241e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594544749, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613050762959, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751271607 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062647163532e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693944014e+00 @@ -1057,50 +1057,50 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.2255464939726777e-07 --9.0061294254040192e-05 +-9.0061294253818147e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76651862332542, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76651862323477, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99570927834978, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99570927822159, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01750303644230911 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01750303644226596 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.148830835061795e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.533910544486994e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.148830835061795e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76654034473584 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.533910544486994e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76654034464521 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144297537687311e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144297488406733e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.2258920305646812e-07 --9.0061294254040165e-05 +-1.2258920305641534e-07 +-9.0061294253818147e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247446468051983e+00 -1.7319030122014651e+00 +1.7319030122014654e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -3.2659855291204801e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3387379492131508e-08 +-7.3387379363923066e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.8767949726878821e-04 +-2.8767949726870077e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1116,123 +1116,123 @@ Using GMRES iterative linear solver -1.1546620475726960e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357266302505081e-08 --1.5395493967635941e-05 +-3.0685813041994740e-08 +-1.2316395174108753e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447310371351e+00 -1.7319776780017515e+00 +1.2247447387085884e+00 +1.7319807571005450e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3086141130738743e-01 +-1.2778225498577764e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357266302505081e-08 --1.7448188174318317e-05 +-4.6028719562992103e-08 +-2.0937802806864738e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447310371351e+00 -1.7319756253075449e+00 +1.2247447233656819e+00 +1.7319721356929123e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3085951370563162e-01 +-1.3393835066059476e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6714532605010162e-08 --3.4895870321501754e-05 +-7.6714532604986843e-08 +-3.4149442981971188e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446926798689e+00 -1.7319581776253976e+00 +1.7319589240527371e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4625425344032583e-01 +-1.4625493683588969e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7535899453757619e-08 --2.5402336063924537e-05 +-7.6714532604986843e-08 +-3.4896102587718742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447118585020e+00 -1.7319676711596552e+00 +1.2247446926798689e+00 +1.7319581773931314e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.3855741974794916e-01 +-1.4625425322767324e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446926798689e+00 -1.7319581773931316e+00 +1.7319581773931314e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586866744231, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433920744618, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912720279232 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718285976718e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133298303013, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967966370892, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487987389085 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555587987901e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693944014e+00 1.7319930734957192e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --7.6688794554983240e-08 --3.4896102587556044e-05 +-7.6688794555028172e-08 +-3.4896102587778088e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.2459813244254, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24598132451604, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14685999831622, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14685999844442, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006759308947646806 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006759308947689816 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.729049992208015e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.622139432217848e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.729049992208015e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24599536081284 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.622139432217848e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24599536090348 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511848546542516e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511849046876151e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --7.6674448626352435e-08 --3.4896102587556044e-05 +-7.6674448626450016e-08 +-3.4896102587778088e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247446927199528e+00 -1.7319581773931316e+00 +1.7319581773931314e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -2.5855721920655782e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = -2.9832619926399214e-08 +2.9832619798194848e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.0620148636959920e-04 +-3.0620148636962820e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1248,136 +1248,136 @@ Using GMRES iterative linear solver -1.1546620475726960e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310074318479946e-07 --5.7733102378634749e-05 +-1.2248059454785118e-07 +-4.6186481902907805e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446162936582e+00 -1.7319353403933406e+00 +1.2247446469138068e+00 +1.7319468870138164e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320509135178677e-01 +-1.6165590004016192e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310074318479946e-07 --8.6602545675893314e-05 +-1.8372089182177676e-07 +-1.0392199431653091e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446162936582e+00 -1.7319064709500434e+00 +1.2247445856735095e+00 +1.7318891515014025e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910885276594e-01 +-1.8472395017197635e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0620148636959893e-07 --1.7317910885276578e-04 +-3.0620148636962794e-07 +-1.6268130446965321e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631929150e+00 -1.7318198943868663e+00 +1.7318303921912495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932439691991e-01 +-2.3091842247068800e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2965111477719920e-07 --1.1906830481055904e-04 +-3.0620148636962794e-07 +-1.7319065492793026e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445397432866e+00 -1.7318740051909087e+00 +1.2247444631929150e+00 +1.7318198828407914e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205197675216102e-01 +-2.3090931439032153e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631929150e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991520997443, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191860157545, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191860157547 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261463144475 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406949113624, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390671149078, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390671149082 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697758e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693944014e+00 1.7319930734957192e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --3.0612157378190393e-07 --1.7319065492737984e-04 +-3.0612157378206968e-07 +-1.7319065492782393e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322899932275, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322899950403, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946535441294, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946535466932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360221435305671 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360221435314287 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.396025428056713e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.84604680634702e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.396025428056713e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328434722259 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.84604680634702e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328434740387 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178331477975891e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178331487927094e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0611966236997286e-07 --1.7319065492737987e-04 +-3.0611966237024401e-07 +-1.7319065492782393e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463274739e+00 1.731819882840792e+00 1.313724684592898e-10 1.682742833963857e-11 + 2.000000000000000e-03 1.224744463274739e+00 1.731819882840791e+00 1.313724684592898e-10 1.682787242884842e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_0(:) = -4.0824815433729511e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.7115855897751726e-10 +-2.7115881540673041e-10 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824842549585421e-04 +-4.0824842549611062e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1385,130 +1385,130 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631929150e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931439032211e-01 +-2.3090931439032153e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247452764875611e-07 --6.9272794317096551e-05 +-9.7979622119066442e-08 +-5.5418235453677108e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443407183873e+00 -1.7317506100464748e+00 +1.2247443652132928e+00 +1.7317644646053376e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.6553868337411918e-01 +-2.5861248258125419e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247452764875611e-07 --7.9661605012235659e-05 +-1.4696943317859963e-07 +-9.5593778866435327e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443407183873e+00 -1.7317402212357795e+00 +1.2247443162234819e+00 +1.7317242890619249e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.6552988751435513e-01 +-2.7245452265615422e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4494905529751222e-07 --1.5931793250861288e-04 +-2.4494905529766611e-07 +-1.5554005419468343e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442182438597e+00 -1.7316605649082832e+00 +1.7316643427865968e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0015446872797991e-01 +-3.0015759177138351e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8371179147313416e-07 --1.1559471420992015e-04 +-2.4494905529766611e-07 +-1.5932009248928287e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247442794811234e+00 -1.7317042881265818e+00 +1.2247442182438597e+00 +1.7316605627483022e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8284501456725658e-01 +-3.0015446694239545e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442182438597e+00 -1.7316605627483024e+00 +1.7316605627483022e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458425788795, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240088757243, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733481262078 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614184420337e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571621766854, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875689618, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314594826978 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025693e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.4503074967992138e-07 --1.5932009248942336e-04 +-2.4503074967979871e-07 +-1.5932009248920131e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04718225429593, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.0471822542053, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99060733817983, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99060733805163, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03093990190491139 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03093990190324049 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.983157730959663e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.691739216530515e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.983157730959663e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04722612054304 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.691739216530515e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04722612045241 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.96013596045361e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960147406422026e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.4506418771914065e-07 --1.5932009248942333e-04 +-2.4506418771709666e-07 +-1.5932009248920131e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247442182105515e+00 -1.7316605627483024e+00 +1.7316605627483022e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -5.3072246270050960e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3523317279447949e-08 +-7.3523317407674351e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.9180358039717321e-04 +-4.9180358039734224e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1517,130 +1517,130 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931434941006e-01 +-2.3090931434940962e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5573810719623073e-08 --3.0787908579921330e-05 +-5.2459048575716491e-08 +-2.4630326863937019e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443977009282e+00 -1.7317890949322119e+00 +1.2247444108156904e+00 +1.7317952525139275e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.4629962769052940e-01 +-2.4322149385514927e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5573810719623073e-08 --3.2839950358737244e-05 +-7.8688572863574726e-08 +-3.9407926197053457e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443977009282e+00 -1.7317870428904332e+00 +1.2247443845861663e+00 +1.7317804749145944e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.4629786749468710e-01 +-2.4937568751123076e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3114762143924615e-07 --6.5679431331916533e-05 +-1.3114762143929122e-07 +-6.4933224637944066e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443321271176e+00 -1.7317542034094600e+00 +1.7317549496161535e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6168730327704082e-01 +-2.6168793672350221e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8360716079434609e-08 --4.8490241164455381e-05 +-1.3114762143929122e-07 +-6.5679627022079731e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443649140231e+00 -1.7317713925996274e+00 +1.2247443321271176e+00 +1.7317542032137694e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5399313855327793e-01 +-2.6168730311092120e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443321271176e+00 -1.7317542032137698e+00 +1.7317542032137694e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250143306553, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688013757429, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300515903591 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964644512875e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103120964033, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938996125472, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477123547052 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938605378931e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.3112181831161681e-07 +-1.3112181831153909e-07 -6.5679627021975051e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.815705366597, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81570536659701, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92313421404247, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92313421404248, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01273212495283929 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01273212495283927 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.431424283260585e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.001484200761597e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.431424283260585e-15 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.001484200761597e-15 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81572924528313 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655080176519261e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655080175202964e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.3110732961450352e-07 --6.5679627021975065e-05 +-1.3110732961454867e-07 +-6.5679627021975051e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247443321674094e+00 -1.7317542032137698e+00 +1.7317542032137694e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -4.6268120337360848e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = -2.9695102423337695e-08 +2.9695102166898758e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.1032555949963418e-04 +-5.1032555949982565e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1649,125 +1649,125 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931434941006e-01 +-2.3090931434940962e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5516277974981690e-07 --1.1545465717470494e-04 +-2.0413022379993011e-07 +-9.2363725739763773e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442081119593e+00 -1.7317044281836171e+00 +1.2247442591445152e+00 +1.7317275191150516e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862702529121226e-01 +-2.7708268574792988e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5516277974981690e-07 --1.4431351264560600e-04 +-3.0619533569989517e-07 +-1.7317561715853583e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442081119593e+00 -1.7316755693281463e+00 +1.2247441570794033e+00 +1.7316467072236328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297624479120e-01 +-3.0014304358791732e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1032555949963379e-07 --2.8860297624479095e-04 +-5.1032555949982522e-07 +-2.7810814613492084e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439529491795e+00 -1.7315312798645470e+00 +1.7315417746946564e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623672480704e-01 +-3.4631463256992823e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8274416962472532e-07 --2.0563963135134404e-04 +-5.1032555949982522e-07 +-2.8861259235429002e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440805305694e+00 -1.7316142432094404e+00 +1.2247439529491795e+00 +1.7315312702484371e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746260572494289e-01 +-3.4630622903191910e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439529491795e+00 -1.7315312702484342e+00 +1.7315312702484371e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854897811197, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060701898749, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060701898751 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086786989607 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620230709533, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755421481151, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755421481155 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478473447e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632747391e+00 -1.7318198828407918e+00 +1.7318198828407914e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --5.1024558266542958e-07 --2.8861259235757331e-04 +-5.1024558266542863e-07 +-2.8861259235424264e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347804136278, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.834780412268, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.643544580208, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435445782849, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599239103918983 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599239103559429 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.062550360780627e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.417568230519699e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.062550360780627e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348726538357 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.417568230519699e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348726524759 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291178169077933e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.29118023041469e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1024008034800520e-07 --2.8861259235757325e-04 +-5.1024008034372832e-07 +-2.8861259235424253e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247439530346587e+00 -1.7315312702484342e+00 +1.7315312702484371e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247439530346587e+00 -1.7315312702484342e+00 +1.7315312702484371e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743953034659e+00 1.731531270248434e+00 2.013786915000537e-10 2.513611541132832e-11 + 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out index da579019c2..77cae30be4 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out @@ -37,10 +37,10 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 -8.5332324353576826e-25 +9.6542504327718640e-25 +6.8265859482861472e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -48,203 +48,203 @@ Using dense direct linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.1889694230616173e-06 +-9.5117553744560093e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2067813040964829e-24 --1.2242553240514061e-14 +1.4481375649157797e-24 +-1.4691063873370668e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688650e+00 +1.7320508075688625e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.1889694108828618e-06 +-1.4267632945325369e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.4135626081929657e-24 --2.4485106230224258e-14 +-2.0033268699306856e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688528e+00 +1.7320508075688572e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3779388340687632e-06 +-2.3779388384274727e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.8101719561447239e-24 --1.3772872301180226e-14 +2.4135626081929657e-24 +-2.4485106355409614e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688634e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.7834541255044815e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688525e+00 +1.7320508075688528e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3779388338123684e-06 +-2.3779388340687632e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --2.0160744284751053e-12 +7.9491945601514801e-23 +-1.6128595429539865e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075668364e+00 +1.7320508075672398e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.0027630277357223e-04 +-8.0696623353025584e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.9364932001893499e-23 --8.5016690475470017e-11 +1.1923791840227221e-22 +-1.0202002013558598e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508074838359e+00 +1.7320508074668328e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.0027621977792367e-04 +-1.1985588591683926e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.9872986400378700e-22 --1.7003324021947768e-10 +-1.3985120439909713e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508074290015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817461380875463e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.4904739800284026e-22 --9.6399751925935201e-11 +1.9872986400378700e-22 +-1.7003331056080624e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508074724528e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4922542246468209e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508073988192e+00 +1.7320508073988194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9817458362989841e-04 +-1.9817458363015477e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.7603134562689734e-09 +1.3059534380233044e-21 +-2.2082507650180351e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508046385057e+00 +1.7320508051905688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.8065329798490591e-03 +-1.4848595168265363e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.6324417975291304e-21 --2.5162648015366993e-08 +1.9589301570349567e-21 +-3.0195140349873647e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507822361713e+00 +1.7320507772036791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.8065106008801368e-03 +-2.1281804830314676e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582609e-21 --5.0324672611040883e-08 +3.2648835950582613e-21 +-4.2178397238593067e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507570741466e+00 +1.7320507652204222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4148689076686934e-03 +-3.4148770378833108e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.4486626962936955e-21 --2.9342862858857047e-08 +3.2648835950582613e-21 +-5.0324983905675798e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507780559564e+00 +1.7320507570738355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.6106953640960742e-03 +-3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -253,10 +253,10 @@ Using dense direct linear solver 1.7320507570738355e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -268,149 +268,149 @@ Using dense direct linear solver -3.4148689073582993e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.5129339229286827e-07 +2.6119068760466087e-20 +-7.6103471383429466e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320498057804432e+00 +1.7320499960391216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.5586084640419201e-02 +-2.9151178844601260e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -3.2648835950582604e-20 --9.9133548298325844e-06 +3.9178603140699122e-20 +-1.1895748900626277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320408437190056e+00 +1.7320388613249349e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.5577306688127808e-02 +-4.2010812460658582e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.5297671901165209e-20 --1.9821819042637574e-05 +-1.6563084595280827e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320309352547929e+00 +1.7320341939892403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.7747965740933266e-02 +-6.7751097007922326e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.8973253925873913e-20 --1.1507434916573431e-05 +6.5297671901165209e-20 +-1.9824212659222936e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320392496389190e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.1664931509040730e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320309328611767e+00 +1.7320309328611763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --6.7747963440942832e-02 +-6.7747963440942485e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.4979707041077427e-07 +6.2249751613389108e-22 +-3.5983765632861759e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320304830641062e+00 +1.7320305730235199e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --6.8514575742804049e-02 +-6.8361252939970668e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -7.7812189516736378e-22 --4.5488681702461341e-07 +9.3374627420083658e-22 +-5.4586417701899842e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320304779743596e+00 +1.7320303869969993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --6.8514570854394510e-02 +-6.8667892851103390e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.5562437903347276e-21 --9.0977356913827813e-07 +-9.0792275404196263e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320300230876076e+00 +1.7320300249384222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --6.9281182547766579e-02 +-6.9281184324548689e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.1671828427510456e-21 --6.8042154646761999e-07 +1.5562437903347276e-21 +-9.0977360024710662e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320302524396303e+00 +1.7320300230875760e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --6.8897877999666526e-02 +-6.9281182547736284e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320300230875767e+00 +1.7320300230875760e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 @@ -418,41 +418,41 @@ Using dense direct linear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.6052128249628413e-20 --2.0784481300495372e-05 +-2.0784481301161506e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480683165445265 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480683165717068 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004053988672151497 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004053988672281447 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.5109224364062977e-11 --2.0784476551625048e-05 +-3.5109224517426024e-11 +-2.0784476552291182e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247448713564797e+00 -1.7320300230923256e+00 +1.7320300230923249e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -1.2247447979420075e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3410255733684976e-08 +-7.3410256054182616e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.3555379579463464e-05 +-8.3555379579681985e-05 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -468,60 +468,60 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094935712618040e-08 -1.1004305373251416e-20 +-8.8759485701176451e-09 +8.8034442986011326e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448602966533e+00 +1.2247448625156403e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5333743569274423e-02 +-1.2266837313136332e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1094935712618040e-08 --2.0360974959496732e-06 +-1.3313922855176467e-08 +-2.4432856161635416e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448602966533e+00 -1.7320487714713813e+00 +1.2247448580776661e+00 +1.7320483642832609e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5331725496048497e-02 +-1.8398309535505593e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2189871425236080e-08 --4.0716590505196842e-06 +-2.2189871425294112e-08 +-3.3312831891831206e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448492017174e+00 -1.7320467359098266e+00 +1.7320474762856881e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0665413589530333e-02 +-3.0666140857090355e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6642403568927060e-08 --2.2904091653245125e-06 +-2.2189871425294112e-08 +-4.0719245657579174e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448547491853e+00 -1.7320485171597120e+00 +1.2247448492017174e+00 +1.7320467356443114e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.2999084375833010e-02 +-3.0665413328715970e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -530,10 +530,10 @@ Using dense direct linear solver 1.7320467356443114e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674111510887, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967147050451, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164107864483 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469486223738e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449545758962, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391563928603, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602350003203088 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360766083835e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -545,60 +545,60 @@ Using dense direct linear solver -3.0665413328715970e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781564643755923e-11 --1.6802156961072114e-08 +-3.6625251715100527e-11 +-1.3441725568857691e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448491559358e+00 -1.7320467188421544e+00 +1.2247448491650923e+00 +1.7320467222025859e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --3.0728681121796851e-02 +-3.0716027560606731e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.5781564643755923e-11 --1.6836822575343490e-08 +-5.4937877572650781e-11 +-2.0204187088296720e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448491559358e+00 -1.7320467188074888e+00 +1.2247448491467796e+00 +1.7320467154401245e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --3.0728681087746276e-02 +-3.0741334643413585e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1563129287511846e-11 --3.3673645113373074e-08 +-9.1563129287751315e-11 +-3.3661039436872259e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448491101542e+00 -1.7320467019706662e+00 +1.7320467019832719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0791948878951446e-02 +-3.0791948891333042e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.8672346965633888e-11 --2.5242234243734988e-08 +-9.1563129287751315e-11 +-3.3673645131687495e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448491330450e+00 -1.7320467104020771e+00 +1.2247448491101542e+00 +1.7320467019706662e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.0760314992096190e-02 +-3.0791948878951446e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -607,17 +607,17 @@ Using dense direct linear solver 1.7320467019706662e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634436316217e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014737714082e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034592e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.093593492175645e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.2255705854167800e-08 +-2.2255705854055472e-08 -4.1055982109572398e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -633,7 +633,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007986236836926118 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.2241373738339830e-08 +-2.2241373738227502e-08 -4.1055972754450757e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -652,7 +652,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.0207734214632975e-04 +-1.0207734214649236e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -668,60 +668,60 @@ Using dense direct linear solver 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186019288418377e-09 -9.0815184667034262e-22 +-8.9488154307489571e-10 +7.2652147733627406e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448702729871e+00 +1.2247448704967074e+00 1.7320508075688772e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2653717796964892e-03 +-1.0122963183481211e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.1186019288418377e-09 --1.3866420144849109e-08 +-1.3423223146123439e-09 +-1.6639686003586335e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448702729871e+00 -1.7320507937024570e+00 +1.2247448700492667e+00 +1.7320507909291911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2653579234065745e-03 +-1.5184311676783584e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372038576836754e-09 --2.7732536604819686e-08 +-2.2372038576872393e-09 +-2.2690215724385017e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448691543852e+00 -1.7320507798363405e+00 +1.7320507848786615e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5307296606776721e-03 +-2.5307346956312832e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.6779028932627567e-09 --1.5599608810182602e-08 +-2.2372038576872393e-09 +-2.7732688292287695e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448697136860e+00 -1.7320507919692685e+00 +1.2247448691543852e+00 +1.7320507798361888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.8980472633174197e-03 +-2.5307296605262359e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -730,10 +730,10 @@ Using dense direct linear solver 1.7320507798361888e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404323877531033, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957003729802, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290959817898209e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -745,60 +745,60 @@ Using dense direct linear solver -2.5307296605262359e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372038576836752e-08 --5.5465375961372104e-07 +-1.7897630861497915e-08 +-4.4372300769097682e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448467823465e+00 -1.7320502251824292e+00 +1.2247448512567543e+00 +1.7320503361131812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.7840698771532203e-02 +-2.2778287553910648e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2372038576836752e-08 --6.1017770822239727e-06 +-2.6846446292246872e-08 +-7.3219952793860673e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448467823465e+00 -1.7320446780591066e+00 +1.2247448423079388e+00 +1.7320434578409094e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.7835240803157003e-02 +-3.2896780932590144e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.4744077153673503e-08 --1.2201161745592327e-05 +-4.4744077153744786e-08 +-1.0184125066537235e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448244103081e+00 -1.7320385786744432e+00 +1.7320405957111222e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.3144939300906031e-02 +-5.3146894446829754e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.3558057865255131e-08 --7.0716009271386405e-06 +-4.4744077153744786e-08 +-1.2202338185224212e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448355963273e+00 -1.7320437082352618e+00 +1.2247448244103081e+00 +1.7320385774980036e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.0491503572974118e-02 +-5.3144938160563565e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -807,10 +807,10 @@ Using dense direct linear solver 1.7320385774980036e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534114165267298, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472749598656606, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359871836480545 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809672262975e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949310082093, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991337678809, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499489164614 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176946937756e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -822,60 +822,60 @@ Using dense direct linear solver -5.3144938160563565e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548030567486259e-08 --1.4342442212647408e-05 +-2.2038424454024117e-08 +-1.1473953770117928e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447968622776e+00 -1.7320242350557911e+00 +1.2247448023718837e+00 +1.7320271035442334e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.4310189391337456e-02 +-7.8076593125187957e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.7548030567486259e-08 --2.2753136255974020e-05 +-3.3057636681036175e-08 +-2.7303542472189039e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447968622776e+00 -1.7320158243617476e+00 +1.2247447913526714e+00 +1.7320112739555313e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.4302188088330329e-02 +-9.0534479104442941e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.5096061134972518e-08 --4.5501953823095339e-05 +-5.5096061135060292e-08 +-4.2443640164913490e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247447693142470e+00 -1.7319930755441806e+00 +1.7319961338578387e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546620670924394e-01 +-1.1546906113298176e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.1322045851229389e-08 --3.0974095399985876e-05 +-5.5096061135060292e-08 +-4.5504002284514236e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447830882623e+00 -1.7320076034026035e+00 +1.2247447693142470e+00 +1.7319930734957192e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.9886380187378956e-02 +-1.1546620479734669e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -884,17 +884,17 @@ Using dense direct linear solver 1.7319930734957192e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682858591084714, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535544247441325, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550358635174256 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844417816317e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351611692719, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754722501, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153795359098 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247448713915889e+00 1.7320508075688772e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.0199734423813991e-07 +-1.0199734423783556e-07 -5.7734073158011157e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -910,7 +910,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01125102526633561 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.0199740489106686e-07 +-1.0199740489076251e-07 -5.7734059978447271e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -954,75 +954,75 @@ Using dense direct linear solver [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620479734676e-01 +-1.1546620479734669e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237276558684830e-08 --3.4639861439203985e-05 +-4.8989821246947866e-08 +-2.7711889151363176e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447080769704e+00 -1.7319584336342799e+00 +1.2247447203244257e+00 +1.7319653616065678e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5010735423269006e-01 +-1.4317857537443263e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1237276558684830e-08 --4.5032206269806965e-05 +-7.3484731870421793e-08 +-5.4038400486733416e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447080769704e+00 -1.7319480412894495e+00 +1.2247446958295152e+00 +1.7319390350952324e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5009786255773924e-01 +-1.5702504771563330e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2247455311736966e-07 --9.0058717534643434e-05 +-8.6279743215796677e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446468396939e+00 -1.7319030147781846e+00 +1.7319067937525034e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.8473630415978423e-01 +-1.8473968004026375e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.1855914838027244e-08 --6.3649095238244740e-05 +-1.2247455311736966e-07 +-9.0061294253877927e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446774583322e+00 -1.7319294244004810e+00 +1.2247446468396939e+00 +1.7319030122014654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.6741983375543451e-01 +-1.8473630185791506e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446468396939e+00 -1.7319030122014651e+00 +1.7319030122014654e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453937895, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522757803792, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871263006324 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654024816112e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594937574, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051140071, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751900128 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062647163532e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693941840e+00 @@ -1030,41 +1030,41 @@ Using dense direct linear solver [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.2255442937991680e-07 --9.0061307433497717e-05 +-9.0061307433275672e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74898235634708 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74898235625648 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01755499643145954 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0175549964314153 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.2258952213813686e-07 --9.0061286870036112e-05 +-1.2258952213807550e-07 +-9.0061286869814067e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247446468046619e+00 -1.7319030122220287e+00 +1.7319030122220289e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -3.2659855291219107e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.3376024761442997e-08 +-7.3376024633234555e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.8767948729198177e-04 +-2.8767948729189433e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1080,60 +1080,60 @@ Using dense direct linear solver -1.1546620476967906e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357264972264223e-08 --1.5395493969290535e-05 +-3.0685811977802053e-08 +-1.2316395175432430e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447310369191e+00 -1.7319776780149294e+00 +1.2247447387083721e+00 +1.7319807571137231e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.3086141131967766e-01 +-1.2778225499809157e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8357264972264223e-08 --1.7448188175957014e-05 +-4.6028717966703073e-08 +-2.0937802808831145e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447310369191e+00 -1.7319756253207226e+00 +1.2247447233654660e+00 +1.7319721357060898e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.3085951371792176e-01 +-1.3393835067286114e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6714529944528446e-08 --3.4895870324779121e-05 +-7.6714529944505126e-08 +-3.4149442985254376e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446926796541e+00 -1.7319581776385740e+00 +1.7319589240659135e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.4625425345249687e-01 +-1.4625493684806071e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.7535897458396334e-08 --2.5402336066388532e-05 +-7.6714529944505126e-08 +-3.4896102590996122e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247447118582866e+00 -1.7319676711728322e+00 +1.2247446926796541e+00 +1.7319581774063078e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.3855741976017971e-01 +-1.4625425323984428e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -1142,17 +1142,17 @@ Using dense direct linear solver 1.7319581774063078e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868674431794, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433927454522, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127227954459 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182826556093e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133301755258, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967969685047, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487988631893 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555553353365e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693941840e+00 1.7319930735088986e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --7.6688796767645837e-08 +-7.6688796767690769e-08 -3.4896102590886713e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1168,7 +1168,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006799198459570063 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --7.6674523609921790e-08 +-7.6674523609966723e-08 -3.4896094626516041e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 @@ -1187,7 +1187,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.0620147411892639e-04 +-3.0620147411886134e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -1203,127 +1203,127 @@ Using dense direct linear solver -1.1546620476967906e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310073705946308e-07 --5.7733102384839482e-05 +-1.2248058964754445e-07 +-4.6186481907871587e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446162934470e+00 -1.7319353404065139e+00 +1.2247446469135943e+00 +1.7319468870269907e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320509136374826e-01 +-1.6165590005221286e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5310073705946308e-07 --8.6602545681874058e-05 +-1.8372088447131664e-07 +-1.0392199432370769e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446162934470e+00 -1.7319064709632168e+00 +1.2247445856732995e+00 +1.7318891515145749e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910886472782e-01 +-1.8472395018384877e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0620147411892615e-07 --1.7317910886472767e-04 +-3.0620147411886109e-07 +-1.6268130448169666e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247444631927098e+00 -1.7318198944000338e+00 +1.7318303922044169e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932440843431e-01 +-2.3091842248220226e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.2965110558919459e-07 --1.1906830481961428e-04 +-3.0620147411886109e-07 +-1.7319065493989202e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445397430783e+00 -1.7318740052040791e+00 +1.2247444631927098e+00 +1.7318198828539588e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205197676389894e-01 +-2.3090931440183596e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444631927098e+00 -1.7318198828539597e+00 +1.7318198828539588e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991518503224, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191857763095, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191857763097 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614629644375 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406947942839, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390670025125, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390670025128 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387410119e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247447693941840e+00 1.7319930735088986e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --3.0612156762352759e-07 --1.7319065493892616e-04 +-3.0612156762364935e-07 +-1.7319065493981434e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.66951636300151 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.66951636336393 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0337519319761958 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03375193197636171 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.0612168232798021e-07 --1.7319061540256212e-04 +-3.0612168232831670e-07 +-1.7319061540345030e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463272502e+00 1.731819882893496e+00 1.291351470200652e-10 3.587685704076193e-11 + 2.000000000000000e-03 1.224744463272502e+00 1.731819882893495e+00 1.291351470200652e-10 3.587596886234223e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_0(:) = -4.0824815433804088e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.4033178483205057e-10 +-2.4033223358317353e-10 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824839466982584e-04 +-4.0824839467027460e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1331,116 +1331,116 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444631927098e+00 -1.7318198828539597e+00 +1.7318198828539588e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931440183687e-01 +-2.3090931440183596e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247451840094761e-07 --6.9272794320550981e-05 +-9.7979614720865799e-08 +-5.5418235456440570e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443407181915e+00 -1.7317506100596392e+00 +1.2247443652130952e+00 +1.7317644646185024e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.6553868338536279e-01 +-2.5861248259255187e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.2247451840094761e-07 --7.9661605015608747e-05 +-1.4696942208129867e-07 +-9.5593778870482993e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443407181915e+00 -1.7317402212489441e+00 +1.2247443162232876e+00 +1.7317242890750884e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.6552988752559903e-01 +-2.7245452266734382e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.4494903680189523e-07 --1.5931793251535922e-04 +-2.4494903680216448e-07 +-1.5554005420145926e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442182436730e+00 -1.7316605649214443e+00 +1.7316643427997573e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.0015446873895307e-01 +-3.0015759178235629e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.8371177760142141e-07 --1.1559471421501033e-04 +-2.4494903680216448e-07 +-1.5932009249602902e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247442794809322e+00 -1.7317042881397446e+00 +1.2247442182436730e+00 +1.7316605627614627e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.8284501457836503e-01 +-3.0015446695336828e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442182436730e+00 -1.7316605627614634e+00 +1.7316605627614627e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458427581809, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240090478537, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733484130901 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614184381587e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571623412231, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188758475741, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459745958 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433628079e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.4502871384123470e-07 --1.5932013203268092e-04 +-2.4502871384102008e-07 +-1.5932013203245887e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01617199533266 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01617199524209 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.4504698580765387e-07 --1.5924403135587339e-04 +-2.4504698580760087e-07 +-1.5924403135565146e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.2247442182255159e+00 -1.7316606388621403e+00 +1.7316606388621396e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -5.3072246269402499e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.5496328150800420e-08 +-3.5496328471366398e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.9177764309188236e-04 +-4.9177764309224373e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1449,86 +1449,86 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931439620577e-01 +-2.3090931439620499e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5570352412250953e-08 --3.0787908586160758e-05 +-5.2456281929839315e-08 +-2.4630326868928527e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443977021493e+00 -1.7317890949849100e+00 +1.2247444108162198e+00 +1.7317952525666263e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.4629962773512204e-01 +-2.4322149390018211e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.5570352412250953e-08 --3.2839950364682928e-05 +-7.8684422894758966e-08 +-3.9407926204188205e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443977021493e+00 -1.7317870429431315e+00 +1.2247443845880788e+00 +1.7317804749672909e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.4629786753927996e-01 +-2.4937568755538272e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.3114070482450191e-07 --6.5679431343807968e-05 +-1.3114070482459828e-07 +-6.4933224649942227e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247443321317970e+00 -1.7317542034621523e+00 +1.7317549496688454e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.6168730331943102e-01 +-2.6168793676589192e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.8355528618376435e-08 --4.8490241173484082e-05 +-1.3114070482459828e-07 +-6.5679627033971043e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443649169731e+00 -1.7317713926523226e+00 +1.2247443321317970e+00 +1.7317542032664612e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.5399313859676953e-01 +-2.6168730315331112e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247443321317970e+00 -1.7317542032664621e+00 +1.7317542032664612e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250125619163, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880120594397, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300452228991 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964732983807e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103095626018, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938971800977, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477114425367 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938881816559e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.3112823326904340e-07 +-1.3112823326887370e-07 -6.5679627033965460e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 @@ -1536,29 +1536,29 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80292351487524 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80292351487525 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.3110662625196716e-07 +-1.3110662625201203e-07 -6.5648261767550079e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.2247443321658755e+00 -1.7317542346317285e+00 +1.7317542346317276e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -4.6268120337418798e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = -4.5407149350998570e-08 +4.5407148902230443e-08 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.1029474957413746e-04 +-5.1029474957452127e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -1567,111 +1567,111 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931439620577e-01 +-2.3090931439620499e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5514737478706853e-07 --1.1545465719810279e-04 +-2.0411789982980835e-07 +-9.2363725758481927e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442081251270e+00 -1.7317044282362979e+00 +1.2247442591546018e+00 +1.7317275191677368e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862702532852874e-01 +-2.7708268578714196e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5514737478706853e-07 --1.4431351266426426e-04 +-3.0617684974471249e-07 +-1.7317561718092558e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442081251270e+00 -1.7316755693808319e+00 +1.2247441570956521e+00 +1.7316467072763142e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297628211229e-01 +-3.0014304362334310e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1029474957413706e-07 --2.8860297628211206e-04 +-5.1029474957452087e-07 +-2.7810814617396540e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247439529777522e+00 -1.7315312799172140e+00 +1.7315417747473212e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623675265437e-01 +-3.4631463259777356e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.8272106218060279e-07 --2.0563963138111032e-04 +-5.1029474957452087e-07 +-2.8861259239160934e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440805514396e+00 -1.7316142432621149e+00 +1.2247439529777522e+00 +1.7315312703011037e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746260575752533e-01 +-3.4630622905976594e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247439529777522e+00 -1.7315312703011012e+00 +1.7315312703011037e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854905105276, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060708901065, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060708901067 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086787755202 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620241460578, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755431802154, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755431802158 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478152494e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.2247444632725017e+00 -1.7318198828934961e+00 +1.7318198828934952e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --5.1024548807047213e-07 --2.8861259239487680e-04 +-5.1024548807037938e-07 +-2.8861259239154613e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7785945816081 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7785945802489 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.1021765406485327e-07 --2.8847474987429448e-04 +-5.1021765406417967e-07 +-2.8847474987096539e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.2247439530548476e+00 -1.7315314081436217e+00 +1.7315314081436242e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.2247439530548476e+00 -1.7315314081436217e+00 +1.7315314081436242e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743953054848e+00 1.731531408143622e+00 2.215676531136523e-10 1.378700513754438e-07 + 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out index 3067bfa29d..8c09b8db06 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out @@ -36,10 +36,10 @@ Using MERK method 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.864518129765004e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0056510867470693e-24 -7.1110270294647367e-25 +8.0452086939765545e-25 +5.6888216235717899e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -47,376 +47,376 @@ Using MERK method [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --9.9080785169891240e-07 +-7.9264628065670020e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.029677719464751e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.0056510867470693e-24 --8.5017730763758747e-15 +1.2067813040964832e-24 +-1.0202127682823427e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075688688e+00 +1.7320508075688670e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --9.9080784323788145e-07 +-1.1889694129340209e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716129532441251e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.0113021734941386e-24 --1.7003546007549496e-14 +-1.3911992168248638e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508075688601e+00 +1.7320508075688632e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.9816156949121734e-06 +-1.9816156979889096e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.287097149330938e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716129532441251e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.5084766301206039e-24 --9.5644946562629979e-15 +2.0113021734941386e-24 +-1.7003546079914619e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075688676e+00 +1.7320508075688601e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.4862117712487205e-06 +-1.9816156949121734e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508075688599e+00 +1.7320508075688601e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.47191726142557e-06, h_cfl = 1.716129532441251e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.413040570968547e-06, h_cfl = 8.580647662206255e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.681308618402001e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.190755053532049e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.716129532441251e-08, h = 1.413040570968547e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716129532441251e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508075688599e+00 +1.7320508075688601e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.9816156946557782e-06 +-1.9816156949121734e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.236815808086858e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.823775237118312e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.2804110001577919e-23 --1.4000516863083169e-12 +6.6243288001262340e-23 +-1.1200413491915724e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508075674599e+00 +1.7320508075677401e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --8.3563579887305288e-05 +-6.7247182442654004e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.236815808086858e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.649856379055404e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -8.2804110001577919e-23 --5.9039364318066809e-11 +9.9364932001893499e-23 +-7.0847232300148532e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320508075098204e+00 +1.7320508074980128e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --8.3563522250561589e-05 +-9.9879910471810070e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.430201866292959e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.6560822000315584e-22 --1.1807864719307641e-10 +-9.7118900836810101e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320508074507812e+00 +1.7320508074717411e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.6514548638396702e-04 +-1.6514550734187726e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.076941723550822e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.430201866292959e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2420616500236688e-22 --6.6944273701660396e-11 +1.6560822000315584e-22 +-1.1807868790092753e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320508075019156e+00 +1.7320508074507814e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.2435451873439189e-04 +-1.6514548638422340e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320508074507810e+00 +1.7320508074507814e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.418176324027398e-05, h_cfl = 1.413040570968547e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.321449271066302e-05, h_cfl = 7.065202854842734e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.649460766305993e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.148169834022209e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.430201866292959e-06, h = 2.321449271066302e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.430201866292959e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320508074507810e+00 +1.7320508074507814e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.6514548638371066e-04 +-1.6514548638422340e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.303744822162447e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.071599895055817e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3603681646076087e-21 --1.9168843449267750e-09 +1.0882945316860870e-21 +-1.5335074759461813e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320508055338966e+00 +1.7320508059172739e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.5054426026294332e-03 +-1.2373819398570061e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.303744822162447e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.535889749269077e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.3603681646076087e-21 --1.7474043162531271e-08 +1.6324417975291306e-21 +-2.0968830213857584e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320507899767379e+00 +1.7320507864819512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.5054270589925608e-03 +-1.7734852345552812e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.464469457695598e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.7207363292152174e-21 --3.4947725487417670e-08 +-2.9290593108244964e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320507725030556e+00 +1.7320507781601884e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.8457241211930439e-03 +-2.8457297690312332e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.884107139929023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.464469457695598e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.0405522469114132e-21 --2.0376994912285665e-08 +2.7207363292152174e-21 +-3.4947905697143753e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320507870737860e+00 +1.7320507725028758e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.1755794850147948e-03 +-2.8457241210134787e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320507725028751e+00 +1.7320507725028758e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007714727828648842, h_cfl = 2.321449271066302e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008559055932490469, h_cfl = 2.321449271066302e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004642898542132603, h_cfl = 1.160724635533151e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140805973034775e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.142628945702048e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.464469457695598e-05, h = 0.0004642898542132603 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.464469457695598e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320507725028751e+00 +1.7320507725028758e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.8457241210128386e-03 +-2.8457241210134787e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002567896216835862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002103606362622601 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7207363292152170e-20 --6.6062041863810468e-07 +2.1765890633721739e-20 +-5.2849633491060260e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320501118824565e+00 +1.7320502440065408e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.9654501042546091e-02 +-2.4292279282507732e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002567896216835862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003032186071049122 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.7207363292152170e-20 --6.8841419829053511e-06 +3.2648835950582604e-20 +-8.2608079793460138e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320438883608922e+00 +1.7320425116948963e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.9648384063363804e-02 +-3.5009629646699188e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004889345487902163 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 5.4414726584304341e-20 --1.3765443914437932e-05 +-1.1502461990876181e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320370070589606e+00 +1.7320392700408849e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.6456837939373124e-02 +-5.6459027156577364e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003728620852369013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004889345487902163 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -4.0811044938228262e-20 --7.9913320555792460e-06 +5.4414726584304341e-20 +-1.3766838942442050e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320427811708194e+00 +1.7320370056639334e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --4.3054198693064413e-02 +-5.6456836589817705e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320370056639329e+00 +1.7320370056639334e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001579461103257322, h_cfl = 4.642898542132604e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001516282659127029, h_cfl = 2.321449271066302e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.265810453033421 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.826224996633818e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002886228299148086, h_cfl = 4.642898542132604e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002770779167182163, h_cfl = 2.321449271066302e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.967778839098802 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.650159831488266e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004889345487902163, h = 1.106545120978371e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004889345487902163 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247448713915889e+00 -1.7320370056639329e+00 +1.7320370056639334e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --5.6456836589817337e-02 +-5.6456836589817705e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004944672743951082 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004933607292741298 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.4843491263947510e-22 --3.1236018537167770e-07 +5.1874793011158012e-22 +-2.4988814829734380e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 -1.7320366933037477e+00 +1.7320367557757850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --5.7095686698695018e-02 +-5.6967916431647871e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004944672743951082 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004955738195160865 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -6.4843491263947510e-22 --3.1589476772675320e-07 +7.7812189516737027e-22 +-3.7907371923657245e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.2247448713915889e+00 -1.7320366897691652e+00 +1.7320366265902141e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --5.7095683280628418e-02 +-5.7223452986888357e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.2968698252789502e-21 --6.3178949763105717e-07 +-6.3050419614620235e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247448713915889e+00 -1.7320363738744353e+00 +1.7320363751597372e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --5.7734533036852109e-02 +-5.7734534279310634e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004972336371975541 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -9.7265236895921284e-22 --4.7251666914550415e-07 +1.2968698252789502e-21 +-6.3178951589190590e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.2247448713915889e+00 -1.7320365331472638e+00 +1.7320363738744176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --5.7415109057583139e-02 +-5.7734533036835005e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247448713915889e+00 -1.7320363738744173e+00 +1.7320363738744176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009627071870500957, h_cfl = 1.106545120978371e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007772494586761386, h_cfl = 1.106545120978371e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002213090241956742, h_cfl = 5.532725604891855e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.889886968307349e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.147633771228545e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_1(:) = 1.2247448713915889e+00 -1.7320363738744173e+00 +1.7320363738744176e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_1(:) = --1.0211309833389652e-04 +-1.0211309833376831e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success @@ -427,7 +427,7 @@ Using MERK method 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = --2.0422619666802744e-04 +-2.0422619666777102e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 2, stage type = 0, tcur = 0.001 @@ -444,10 +444,10 @@ Using MERK method 8.2872847241886988e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001106545120978371 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.852360967826967e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.2968698252789502e-20 -9.1702544777095879e-21 +1.0374958602231602e-20 +7.3362035821676712e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.2247448713915889e+00 @@ -455,49 +455,49 @@ Using MERK method [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.2777978346165390e-02 +-1.0222272671750602e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001106545120978371 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174045 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5006315409424421e-09 --1.4139409594916583e-06 +-3.0007578491271624e-09 +-1.6967108925354272e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448688909575e+00 -1.7320493936279178e+00 +1.2247448683908311e+00 +1.7320491108579847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.2776576086118234e-02 +-1.5332057831353729e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002213090241956742 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.0012630818848843e-09 --2.8275715861806119e-06 +-4.0919425215323247e-09 +-2.3134248284552883e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = -1.2247448663903258e+00 -1.7320479799972910e+00 +1.2247448672996464e+00 +1.7320484941440488e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.5554523371556875e-02 +-2.5555029477892493e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001659817681467556 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002213090241956742 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.8132104835553837e-09 --1.5905674194401964e-06 +-5.0012630818786052e-09 +-2.8277256069149844e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448685783784e+00 -1.7320492170014579e+00 +1.2247448663903258e+00 +1.7320479798432702e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.9165906132528884e-02 +-2.5554523219808438e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 @@ -506,10 +506,10 @@ Using MERK method 1.7320479798432702e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008472366368884156, h_cfl = 2.213090241956742e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000813347171412879, h_cfl = 1.106545120978371e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.675164961613785 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.425094080723045e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001795768252456559, h_cfl = 2.213090241956742e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001723937522358296, h_cfl = 1.106545120978371e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.789729897476062 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.426606245722151e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002213090241956742, h = 0.0007786909758043252 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002213090241956742 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -521,99 +521,99 @@ Using MERK method -2.5554523219808438e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006106545120978368 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005327854145174043 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.7597287067941030e-08 --9.9495383111234592e-06 +-1.4077829654335151e-08 +-7.9596306488987691e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247448487930388e+00 -1.7320380303049592e+00 +1.2247448523124962e+00 +1.7320400202126214e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --7.0519820807514802e-02 +-6.1525575729397583e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006106545120978368 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006885236096782693 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.8555917626005746e-08 --2.7456574039074930e-05 +-5.8267101151133757e-08 +-3.2947196457898596e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247448178344080e+00 -1.7320205232692312e+00 +1.2247448081232246e+00 +1.7320150326468122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --7.0503041967777930e-02 +-7.9494590169330942e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999994 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.7111835252011492e-08 --5.4900082547062291e-05 +-8.5854151412607431e-08 +-4.8534320372791542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = -1.2247447692784905e+00 -1.7319930797607230e+00 +1.2247447805361744e+00 +1.7319994455228973e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.1546621066256180e-01 +-1.1547214640159122e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008053272560489181 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999994 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.1224389979734344e-08 --3.4614874891151101e-05 +-9.7111835251889573e-08 +-5.4906339022157772e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247448051659358e+00 -1.7320133649683791e+00 +1.2247447692784905e+00 +1.7319930735042481e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --9.2989172395070388e-02 +-1.1546620482318531e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247447692784905e+00 -1.7319930735042490e+00 +1.7319930735042481e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003338723049155477, h_cfl = 7.786909758043252e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003205174127189258, h_cfl = 3.893454879021626e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.11610539582608 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0001445442462304924 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005019848235636976, h_cfl = 7.786909758043252e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004819054306211497, h_cfl = 3.893454879021626e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.188660785793493 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.281335509330192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_2(:) = 1.2247447692784905e+00 -1.7319930735042490e+00 +1.7319930735042481e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][updated solution] ycur(:) = 1.2247447692784905e+00 -1.7319930735042490e+00 +1.7319930735042481e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769278491e+00 1.731993073504249e+00 5.103006905926577e-11 3.375077994860476e-14 + 1.000000000000000e-03 1.224744769278491e+00 1.731993073504248e+00 5.103006905926577e-11 3.286260152890463e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_0(:) = 1.2247447692784905e+00 -1.7319930735042490e+00 +1.7319930735042481e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_0(:) = --2.0412402615292352e-04 +-2.0412402615330812e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 0 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412402615292352e-04 +-2.0412402615330812e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = @@ -626,97 +626,97 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447692784905e+00 -1.7319930735042490e+00 +1.7319930735042481e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620482318611e-01 +-1.1546620482318531e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1031006538230838e-08 --2.8866551205796502e-05 +-4.0824805230661594e-08 +-2.3093240964637045e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247447182474840e+00 -1.7319642069530432e+00 +1.2247447284536852e+00 +1.7319699802632835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.4433335377782813e-01 +-1.3855953582440292e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1031006538230838e-08 --3.6083338444457003e-05 +-6.1237207845992385e-08 +-4.3299860572412159e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247447182474840e+00 -1.7319569901658045e+00 +1.2247447080412828e+00 +1.7319497736436757e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.4432673838952331e-01 +-1.5009944479602438e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0015 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206201307646168e-07 --7.2163369194761588e-05 +-1.0206201307665397e-07 +-6.9539120978584626e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247446672164775e+00 -1.7319209101350543e+00 +1.7319235343832695e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --1.7319207870601550e-01 +-1.7319444052781788e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0015 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.6546509807346260e-08 --5.1417500326851759e-05 +-1.0206201307665397e-07 +-7.2164872322025766e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247446927319807e+00 -1.7319416560039222e+00 +1.2247446672164775e+00 +1.7319209086319260e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --1.5876131104107960e-01 +-1.7319207735320000e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247446672164775e+00 -1.7319209086319269e+00 +1.7319209086319260e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003123484376240414, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002998545001190797, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.9970900023816 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.456665619756245e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005242503537399051, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005032803395903089, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.06560679180619 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.012873279361316e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_1(:) = 1.2247446672164775e+00 -1.7319209086319269e+00 +1.7319209086319260e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_1(:) = --3.0623708205624944e-04 +-3.0623708205669814e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 1 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.0412402615292352e-04 +-2.0412402615330812e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = --2.0422611180665183e-04 +-2.0422611180678004e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 2, stage type = 0, tcur = 0.002 @@ -726,106 +726,106 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247447692784905e+00 -1.7319930735042490e+00 +1.7319930735042481e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --1.1546620482318611e-01 +-1.1546620482318538e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206201307646168e-07 --5.7733102411593004e-05 +-8.1649610461323188e-08 +-4.6186481929274117e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247446672164775e+00 -1.7319353404018374e+00 +1.2247446876288801e+00 +1.7319468870223189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --1.7320506589802412e-01 +-1.6165587969033415e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5311854102812455e-07 --8.6602532949011984e-05 +-1.8374224923401867e-07 +-1.0392197904427272e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247446161599496e+00 -1.7319064709712999e+00 +1.2247445855362413e+00 +1.7318891515252040e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --1.7317910893875138e-01 +-1.8472395026187324e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.0623708205624910e-07 --1.7317910893875123e-04 +-2.8767107189244503e-07 +-1.6268131151728259e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = -1.2247444630414084e+00 -1.7318198943953103e+00 +1.2247444816074187e+00 +1.7318303921927309e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.3090932447999130e-01 +-2.3091841326472018e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.1053161356031324e-07 --1.1906829928518353e-04 +-3.0623708205669776e-07 +-1.7319064649683522e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247445587468770e+00 -1.7318740052049639e+00 +1.2247444630414084e+00 +1.7318198828577513e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.0205196726278116e-01 +-2.3090931448077356e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247444630414084e+00 -1.7318198828577531e+00 +1.7318198828577513e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002729592859383356, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002620409145008021, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.620409145008024 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932628225837462 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004579668276439635, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00439648154538205, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.396481545382054 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446484263437875e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_2(:) = 1.2247444630414084e+00 -1.7318198828577531e+00 +1.7318198828577513e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][updated solution] ycur(:) = 1.2247444630414084e+00 -1.7318198828577531e+00 +1.7318198828577513e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463041408e+00 1.731819882857753e+00 1.019582196448710e-10 1.338928967697939e-13 + 2.000000000000000e-03 1.224744463041408e+00 1.731819882857751e+00 1.019582196448710e-10 1.321165399303936e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_0(:) = 1.2247444630414084e+00 -1.7318198828577531e+00 +1.7318198828577513e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_0(:) = --4.0824795043172744e-04 +-4.0824795043256082e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 0 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824795043172744e-04 +-4.0824795043256082e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = @@ -838,97 +838,97 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630414084e+00 -1.7318198828577531e+00 +1.7318198828577513e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931448077512e-01 +-2.3090931448077356e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206198760793177e-07 --5.7727328620193731e-05 +-8.1649590086512095e-08 +-4.6181862896154680e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247443609794209e+00 -1.7317621555291329e+00 +1.2247443813918184e+00 +1.7317737009948553e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.5976683907934150e-01 +-2.5399510014389454e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.0206198760793177e-07 --6.4941709769835327e-05 +-1.2247438512976816e-07 +-7.7929963967902373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247443609794209e+00 -1.7317549411479833e+00 +1.2247443405670233e+00 +1.7317419528937834e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.5976070685533881e-01 +-2.6553135373015518e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0025 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0412397521586354e-07 --1.2988035342766929e-04 +-2.0412397521628023e-07 +-1.2725687070661907e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.2247442589174331e+00 -1.7316900025043254e+00 +1.7316926259870447e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --2.8861497852904600e-01 +-2.8861716476333438e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0025 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.5309298141189766e-07 --9.4706072758587808e-05 +-2.0412397521628023e-07 +-1.2988161540650290e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247443099484270e+00 -1.7317251767849946e+00 +1.2247442589174331e+00 +1.7316900012423448e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --2.7418980493674971e-01 +-2.8861497747739545e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.2247442589174331e+00 -1.7316900012423466e+00 +1.7316900012423448e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003004917511165991, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002884720810719351, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.769441621438706 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.457617220747888e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005038269914362371, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004836739117787876, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.673478235575761 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.072526561087752e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_1(:) = 1.2247442589174331e+00 -1.7316900012423466e+00 +1.7316900012423448e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_1(:) = --5.1036091284798770e-04 +-5.1036091284888531e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 1 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.0824795043172744e-04 +-4.0824795043256082e-04 0.0000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = --2.0422592483252051e-04 +-2.0422592483264898e-04 0.0000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 2, stage type = 0, tcur = 0.003 @@ -938,92 +938,92 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.2247444630414084e+00 -1.7318198828577531e+00 +1.7318198828577513e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.0000000000000000e+00 --2.3090931448077512e-01 +-2.3090931448077368e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.0412397521586354e-07 --1.1545465724038746e-04 +-1.6329918017302419e-07 +-9.2363725792309401e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = -1.2247442589174331e+00 -1.7317044282005127e+00 +1.2247442997422282e+00 +1.7317275191319590e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.0000000000000000e+00 --2.8862699990255491e-01 +-2.7708266546327542e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.5518045642399356e-07 --1.4431349995127734e-04 +-3.0621654770933093e-07 +-1.7317560192534038e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = -1.2247442078609521e+00 -1.7316755693578019e+00 +1.2247441568248607e+00 +1.7316467072558259e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.0000000000000000e+00 --2.8860297639500793e-01 +-3.0014304374180162e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.1036091284798713e-07 --2.8860297639500771e-04 +-4.9179491968228037e-07 +-2.7810815324676413e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = -1.2247439526804955e+00 -1.7315312798813580e+00 +1.2247439712464887e+00 +1.7315417747045045e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.0000000000000000e+00 --3.4630623687259776e-01 +-3.4631462342915215e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.6362450418294160e-07 --2.0563962587450812e-04 +-5.1036091284888477e-07 +-2.8861258398800129e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = -1.2247440994169041e+00 -1.7316142432318786e+00 +1.2247439526804955e+00 +1.7315312702737633e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.0000000000000000e+00 --3.1746259630010004e-01 +-3.4630622918652193e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = -1.2247439526804957e+00 -1.7315312702737617e+00 +1.2247439526804955e+00 +1.7315312702737633e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002639908311389489, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00253431197893391, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.534311978933912 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934099230043387 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004425112060590719, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004248107578167091, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.248107578167095 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455550664643448e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_2(:) = -1.2247439526804957e+00 -1.7315312702737617e+00 +1.2247439526804955e+00 +1.7315312702737633e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][updated solution] ycur(:) = -1.2247439526804957e+00 -1.7315312702737617e+00 +1.2247439526804955e+00 +1.7315312702737633e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952680496e+00 1.731531270273762e+00 1.527842297122106e-10 1.914024494453770e-13 + 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out index 3d0f54fecf..e08ebfcb9f 100644 --- a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out +++ b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out @@ -15,24 +15,24 @@ Start SplittingStep Logging test -2.0000000000000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9990000000000001e+00 +-1.9992000000000001e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9990005000000000e+00 +-1.9988006000000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9980009995000001e+00 +-1.9980008176363637e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9985005623281094e+00 +-1.9980009996667500e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -50,24 +50,24 @@ Start SplittingStep Logging test -1.9980009996667500e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9970019991669166e+00 +-1.9972017992668833e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9970024986671666e+00 +-1.9968027984672498e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9960039971680830e+00 +-1.9960038154862192e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9965030606830623e+00 +-1.9960039973346662e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -90,24 +90,24 @@ Start SplittingStep Logging test 9.9600798934399148e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9625650933550369e-01 +9.9620680285712149e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9625657134910184e-01 +9.9630629147117200e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9650518440163471e-01 +9.9650516185334592e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9638085073643801e-01 +9.9650518439389990e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -125,24 +125,24 @@ Start SplittingStep Logging test 9.9650518439389990e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9675389049973095e-01 +9.9670414679600838e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9675395257526056e-01 +9.9680370993629686e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9700275183505982e-01 +9.9700272926425315e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0004375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9687832503912499e-01 +9.9700275182731535e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -160,24 +160,24 @@ Start SplittingStep Logging test 9.9700275182731535e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9725164423335100e-01 +9.9720186326710758e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9725170637088900e-01 +9.9730150100808868e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9750069202395630e-01 +9.9750066943060389e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0006875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9737617200424888e-01 +9.9750069201620228e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -195,24 +195,24 @@ Start SplittingStep Logging test 9.9750069201620228e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9774977090855976e-01 +9.9769995264256928e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9774983310818388e-01 +9.9779966505879081e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9799900534075303e-01 +9.9799898272482646e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0009375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9787439200412209e-01 +9.9799900533298946e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -251,24 +251,24 @@ Start SplittingStep Logging test -1.9979980033353282e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9969990043336605e+00 +-1.9971988041339941e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9969995038331614e+00 +-1.9967998039327279e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9960010038314950e+00 +-1.9960008221499039e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9965000665980466e+00 +-1.9960010039980780e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -286,24 +286,24 @@ Start SplittingStep Logging test -1.9960010039980780e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9950030034960791e+00 +-1.9952026035964787e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9950035024963300e+00 +-1.9948040021959803e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9940060004955817e+00 +-1.9940058189955814e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9945045644488149e+00 +-1.9940060006619982e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -326,24 +326,24 @@ Start SplittingStep Logging test 9.9401498266901422e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9426275708756573e-01 +9.9421319973369104e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9426281885322310e-01 +9.9431238979623537e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9451068596068082e-01 +9.9451066350254180e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0011875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9438672537653572e-01 +9.9451068595298475e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -361,24 +361,24 @@ Start SplittingStep Logging test 9.9451068595298475e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9475864574166484e-01 +9.9470905131130016e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9475870756894391e-01 +9.9480831560200400e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9500676013901368e-01 +9.9500673765846925e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0014375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9488270679659307e-01 +9.9500676013130784e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -396,24 +396,24 @@ Start SplittingStep Logging test 9.9500676013130784e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9525490547507356e-01 +9.9520527393122427e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9525496736405117e-01 +9.9530461252417013e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9550320558180461e-01 +9.9550318307882701e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0016875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9537905938853899e-01 +9.9550320557408911e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -431,24 +431,24 @@ Start SplittingStep Logging test 9.9550320557408911e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9575153665812743e-01 +9.9570186796375326e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9575159860888096e-01 +9.9580128093311637e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9600002265962106e-01 +9.9600000013418222e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0019375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9587578352282535e-01 +9.9600002265189613e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -487,24 +487,24 @@ Start SplittingStep Logging test -1.9959960146772799e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9949980166699413e+00 +-1.9951976162714091e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9949985156689449e+00 +-1.9947990158672779e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9940010161616111e+00 +-1.9940008346620643e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9944995788686046e+00 +-1.9940010163280271e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -522,24 +522,24 @@ Start SplittingStep Logging test -1.9940010163280271e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.9930040158198630e+00 +-1.9932034159214957e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.9930045143201172e+00 +-1.9928052139185350e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.9920080118137069e+00 +-1.9920078304955691e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.9925060762071918e+00 +-1.9920080119799568e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -562,24 +562,24 @@ Start SplittingStep Logging test 9.9202397994808489e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9227101028934483e-01 +9.9222160176081386e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9227107180780627e-01 +9.9232049387108823e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9251819446697664e-01 +9.9251817209871662e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0021875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9239460621516318e-01 +9.9251819445931899e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -597,24 +597,24 @@ Start SplittingStep Logging test 9.9251819445931899e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9276540942875435e-01 +9.9271596397213635e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9276547100852941e-01 +9.9281493001338827e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9301277838789581e-01 +9.9301275599734251e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0024375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9288909774914980e-01 +9.9301277838022872e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -632,24 +632,24 @@ Start SplittingStep Logging test 9.9301277838022872e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9326017816187129e-01 +9.9321069574035670e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9326023980303635e-01 +9.9330973578629822e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002750000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9350773208674503e-01 +9.9350770967387081e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002687500000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002750000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9338395896895992e-01 +9.9350773207906840e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] @@ -667,24 +667,24 @@ Start SplittingStep Logging test 9.9350773207906840e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = -9.9375531685717911e-01 +9.9370579743391285e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = -9.9375537855981089e-01 +9.9380491155834794e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = -9.9400305593223792e-01 +9.9400303349701458e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0029375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = -9.9387919024319205e-01 +9.9400305592455152e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] From 5b4a0d433317389fae66d25ef3ebcca735e1ef2e Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 14:37:39 -0800 Subject: [PATCH 41/67] Final logging out files --- .../test_logging_arkode_arkstep_lvl4_0.out | 64 +-- .../test_logging_arkode_arkstep_lvl4_1_0.out | 164 ++++---- ...test_logging_arkode_arkstep_lvl4_1_1_0.out | 280 ++++++------- ...test_logging_arkode_arkstep_lvl4_1_1_1.out | 140 +++---- .../test_logging_arkode_arkstep_lvl4_2_0.out | 184 +++++---- ...test_logging_arkode_arkstep_lvl4_2_1_0.out | 374 ++++++++++-------- ...test_logging_arkode_arkstep_lvl4_2_1_1.out | 172 ++++---- .../test_logging_arkode_erkstep_lvl4.out | 82 ++-- .../test_logging_arkode_forcingstep_lvl4.out | 108 ++--- .../test_logging_arkode_mristep_lvl4_0.out | 180 ++++----- .../test_logging_arkode_mristep_lvl4_1_0.out | 204 +++++----- ...test_logging_arkode_mristep_lvl4_1_1_0.out | 292 +++++++------- ...test_logging_arkode_mristep_lvl4_1_1_1.out | 206 +++++----- .../test_logging_arkode_mristep_lvl4_2_0.out | 206 +++++----- ...test_logging_arkode_mristep_lvl4_2_1_0.out | 244 ++++++------ ...test_logging_arkode_mristep_lvl4_2_1_1.out | 186 ++++----- .../test_logging_arkode_mristep_lvl4_3.out | 200 +++++----- .../test_logging_arkode_mristep_lvl4_4_0.out | 236 +++++------ ...test_logging_arkode_mristep_lvl4_4_1_0.out | 322 +++++++-------- ...test_logging_arkode_mristep_lvl4_4_1_1.out | 226 +++++------ .../test_logging_arkode_mristep_lvl4_5_0.out | 222 +++++------ ...test_logging_arkode_mristep_lvl4_5_1_0.out | 312 +++++++-------- ...test_logging_arkode_mristep_lvl4_5_1_1.out | 218 +++++----- .../test_logging_arkode_mristep_lvl4_6.out | 140 +++---- ...test_logging_arkode_splittingstep_lvl4.out | 108 ++--- 25 files changed, 2614 insertions(+), 2456 deletions(-) diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out index 1b43d2b34a..db3f6c7547 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out @@ -6,59 +6,59 @@ Using ERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.119441024380336e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.179161536570504e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002515551905531338, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002414929829310085, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 23.44910209921841 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.419249037637078e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004781447441790506, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004590189544118885, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 44.57099414170505 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.594510015625189e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.002414929829310085 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004590189544118885 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001310450940264551 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001939061843257063 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001310450940264551 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002857099752080839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002517915854919593 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.004693175569728394 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001914183397592072 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.004693175569728394 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00161623505955609, h_cfl = 2.414929829310085e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001551585657173846, h_cfl = 1.207464914655042e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.6424972015096253 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0133919487764742 - 2.517915854919593e-03 1.224744224325435e+00 1.731684811946959e+00 2.964961609563943e-12 1.116839953851922e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002517915854919593, h = 0.001551585657173846 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002517915854919593 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002803386297141826, h_cfl = 4.590189544118885e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002691250845256152, h_cfl = 2.295094772059443e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5863049487148694 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.006457592697574643 + 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.004693175569728394, h = 0.002691250845256152 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.004693175569728394 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.003293708683506516 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.005769675907830855 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.003293708683506516 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.006307926076882085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.004069501512093439 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.007384426414984546 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003681605097799978 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.007384426414984546 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.006136925427511731, h_cfl = 1.551585657173847e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005891448410411261, h_cfl = 7.757928285869233e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.797050058546112 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002281919499449541 - 4.069501512093439e-03 1.224743181155563e+00 1.731094930827531e+00 3.276268145668837e-12 1.207456357121828e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01394047270363173, h_cfl = 2.691250845256153e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01338285379548646, h_cfl = 1.345625422628076e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.97272627673348 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007698613381948886 + 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.004069501512093439 +Current time = 0.007384426414984546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -67,9 +67,9 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001551585657173846 -Current step size = 0.005891448410411261 -Explicit RHS fn evals = 17 +Last step size = 0.002691250845256152 +Current step size = 0.01338285379548646 +Explicit RHS fn evals = 15 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out index fb7138783d..2ee1858e28 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out @@ -5,187 +5,205 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.03124727847178982 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.06249535103583782 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1562371643297375 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 4.895203386441746e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.005361255358247282 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09624183453536866 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09764898308268008 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.08528677931681904 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.270379821731715 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801208512e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813593647933 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813597902462 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414317944671e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414356077108e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003796520021120941, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003644659220276104, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.38984244421219 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.257351772282993e-09 - 1.029860256095084e-04 1.224744870309104e+00 1.732050195224279e+00 2.442490654175344e-15 1.998401444325282e-15 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003644659220276104 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001014150830678534 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005181397899005634, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004974141983045409, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.29919354210092 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.052384307479459e-09 + 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004974141983045409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002590057017132213 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 43.57700668684354 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878045794722 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.04633595994229208 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2132943179163734 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002836480440816586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008314322537341579 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 209.0149703261905 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745956564198 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2042649292783136 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682984423547 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002107548596761365 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003211824765012889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 130.3177912362241 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628485946814 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1317639651299175 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005044937403 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00192531563574756 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005276093687976734 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 115.7066352240969 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028113429431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991732185001 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1179815315332422 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087293412658 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.003747645245885612 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005077128008654917 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 330.9200194658451 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286068246216 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994911904798 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3098605220101286 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537235589097 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232929919553471, h_cfl = 3.644659220276104e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002236127227713321, h_cfl = 1.822329610138052e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.6135353383035691 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.007864906415392474 - 3.747645245885612e-03 1.224743437035635e+00 1.731240118427390e+00 9.108140908153928e-10 5.271953984475886e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.003747645245885612, h = 0.002236127227713321 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004306677052813943 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003014949461089349, h_cfl = 4.974141983045409e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002894351482645775, h_cfl = 2.487070991522704e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5818795467663176 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005777685801326963 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005077128008654917, h = 0.002894351482645774 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005077128008654917 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006524303749977804 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 113.5127839162196 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422796849768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.06347372373964355 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841554791242 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005424740666670603 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005500995969719722 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 369.9413329159526 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191489779 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1961628166373034 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307475559162 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.004977515221127939 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006886097685308526 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 262.6686572611258 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655472878314 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1422666879689584 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988497214 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004865708859742272 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008087253550606523 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 237.752750401516 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341499829686 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1294572005123361 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855435739141 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950527502381 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005983772473598933 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007971479491300691 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 512.8615902035506 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724335587325 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2648770776226016 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528495900837 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559093605087 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01050274477458537, h_cfl = 2.236127227713321e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01008263498360195, h_cfl = 1.118063613856661e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.50897196664097 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.001116850591343922 - 5.983772473598933e-03 1.224741215598295e+00 1.729984808853534e+00 1.411835537368233e-09 7.625806652811207e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0155053464300513, h_cfl = 2.894351482645775e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01488513257284924, h_cfl = 1.447175741322887e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.142821340842302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006675414612441149 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.005983772473598933 +Current time = 0.007971479491300691 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -194,12 +212,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002236127227713321 -Current step size = 0.01008263498360196 +Last step size = 0.002894351482645774 +Current step size = 0.01488513257284924 Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 +Implicit RHS fn evals = 49 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out index f1328a7ed4..f027d1ef6c 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out @@ -6,91 +6,93 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.03124727847178982, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.06249535103583782, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.044190325002054, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.08838177302014931, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 8.016227206018892e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.603276888666014e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 8.016227206018892e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647747457602 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.603276888666014e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375176740569 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1562371643708069, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.005361255349771264, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.2209527167999096, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.007581960026991833, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 4.008105378087632e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.375406356692272e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 4.008105378087632e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1562331731583946 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.834156785593834e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.375406356692272e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361117819127116 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09624183456739453, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09764898307759746, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1361065077128771, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1380965162202792, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.468991359913261e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.505112439889124e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.468991359913261e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623937258978928 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.505112439889124e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648637841014 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.08528677935133332, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2703798218034756, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1206137200497772, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3823748109864959, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.187949946472201e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.936323710727879e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.187949946472201e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459686493964 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.936323710727879e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729285399011 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824623e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599405794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599404871, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295684377, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295683072, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919782981e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919779191e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919782981e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849628705 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919779191e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849627783 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165771e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165041e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -98,127 +100,129 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003832000015190934, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003678720014583297, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.72057463924165 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.010389402682452e-09 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005173702315757101, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004966754223126817, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.22745798502055 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060506166026043e-09 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003678720014583297 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001022666029255333 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004966754223126817 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586363137172917 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 44.35369875822553, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366823253987, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 62.72560232529324, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905127158407, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.04062175054285926 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351659917327 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.005089991166117e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.539312788374185e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.005089991166117e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31583324937814 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.539312788374185e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754497113704 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.393376666599104e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448156610062e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002862026036546981 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303503413429693 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 212.8147091519881, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497452804125, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 300.9654479552272, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273631423932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948470890329139 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553135597982 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.023368215406643e-17 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.071535650853336e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.023368215406643e-17 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 212.6569919499078 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.071535650853336e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624678638776 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.748984444407891e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395866022775986e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002126282033630322 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207207415063769 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 132.6733466500091, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636799879348, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 187.6284461978699, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540032655901, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1214861228197153 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964986383052 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.410337134365055e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.948588646235637e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.410337134365055e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 132.5690472826842 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.948588646235637e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280762384555 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.141721415834757e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896834065384e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.001942346032901157 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268410417661398 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.7961695173268, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935820216669, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.5889405270037, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280147562397, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1078639628765014 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.80823181193877 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.818288520560997e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.635179301029465e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.818288520560997e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7022409131975 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.635179301029465e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692023218828 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.14887367151013e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00028701536186056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.003781706040192805 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069740248736325 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 336.9671105380513, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615178930309, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 476.5434577965859, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761541680366, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3085169077524141 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726379422214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.17116109814417e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.08971449261438e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.17116109814417e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 336.736319034684 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.08971449261438e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.265941067359 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.346288867431381e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.000249564687271857, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -226,127 +230,129 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002326364550388339, h_cfl = 3.678720014583297e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002233309968372805, h_cfl = 1.839360007291648e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.607088867736454 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.008163105466437349 - 3.781706040192805e-03 1.224743411877806e+00 1.731225318313145e+00 1.057254284120290e-10 1.072486544018147e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.003781706040192805, h = 0.002233309968372805 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004340033532286006 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003015564088276306, h_cfl = 4.966754223126817e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002894941524745254, h_cfl = 2.483377111563408e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5828638572984884 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743360545342547 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069740248736325, h = 0.002894941524745254 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069740248736325 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517211011108952 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 114.2475703576066, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291832667672, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 161.5704634679017, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.079892577741, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.06347262680418689 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2844296690428963 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.746714923333988e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.689625129912962e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.746714923333988e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.2024221826183 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.689625129912962e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681714724712 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.199113684336701e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724634024090804e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005456688516472409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005493694619466006 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 372.0708229808176, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918432218, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 526.1876040227913, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372636959103, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.206598731109143 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702546356424 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.060023072317438e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.743428383750915e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.060023072317438e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 371.939257112824 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.743428383750915e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491707937726 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.123782867339571e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265621792903265e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005010026522797847 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879078701702109 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 264.2522611564104, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555520155276, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 373.7091316151527, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203724428682, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1467632212595206 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.366534529643799 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.453408637887063e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.506305455047092e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.453408637887063e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 264.1544278478215 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.506305455047092e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569019654059 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.142262491733078e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.41936993456799e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004898361024379207 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080479434471389 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 239.1950412070286, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.820797410297, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 338.2728713273712, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207822961327, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1328534050683189 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810696378324 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.003480721324008e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.043442040705694e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.003480721324008e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 239.1054906887548 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.043442040705694e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110606696143 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.769091705246994e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313402503713, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00601501600856561 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964681773481579 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 515.6509104293493, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870949936611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 729.2405109792198, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.359027870932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2862495506617406 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969989650043 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.660035032647116e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.97124359201826e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.660035032647116e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 515.479276837567 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.97124359201826e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869312485084 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 7.67937747240094e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267402460637, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -354,13 +360,13 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105439796544931, h_cfl = 2.233309968372805e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01012222046831338, h_cfl = 1.116654984186403e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.532384940585946 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.001111259275024442 - 6.015016008565610e-03 1.224741178982448e+00 1.729963189938353e+00 2.336992821483364e-10 1.590565457121329e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0154957149064437, h_cfl = 2.894941524745254e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01487588631018595, h_cfl = 1.447470762372627e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.138579202042774 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680659089283182 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601501600856561 +Current time = 0.007964681773481579 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -369,8 +375,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233309968372805 -Current step size = 0.01012222046831338 +Last step size = 0.002894941524745254 +Current step size = 0.01487588631018596 Explicit RHS fn evals = 0 Implicit RHS fn evals = 45 NLS iters = 27 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out index 9d73e95bdd..48afd13db4 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out @@ -6,236 +6,242 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647749568791 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375180962681 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.723951920713131e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1562331594653479 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.380843176869396e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361118155683129 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.664231408522962e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623936755399637 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648428541893 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459315580529 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729029309684 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842759940812e-08 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749520049542 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749630505384 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003832189576692273, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003678901993624582, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.72234166578926 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.009107594385155e-09 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224358e+00 2.220446049250313e-16 8.104628079763643e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.003678901993624582 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.001022711524015654 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005173663817440948, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00496671726474331, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.22709911707427 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060546984496858e-09 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.00496671726474331 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586344657981163 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31728809265712 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401886078219 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002706685111211134 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824834014635 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002862162520827944 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303449289130156 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 212.6403773707838 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500371247808 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03696205723054138 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799203649459 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002126382122103028 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207184316074077 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 132.5646009288685 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613569759502 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01706360659869033 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324507830747 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.001942437022421799 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268371980942552 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.69961092995 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775595050387 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01382292596398069 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769922509453 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00378188801923409 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069703290352819 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 336.69118258825 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.0057975967644 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.07750779266514742 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2511122224022418 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002326349105082655, h_cfl = 3.678901993624582e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002233295140879348, h_cfl = 1.839450996812291e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.6070548073173944 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.008164718360412736 - 3.781888019234090e-03 1.224743411639714e+00 1.731225239016591e+00 8.112177596331094e-12 2.569811030639357e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00378188801923409, h = 0.002233295140879348 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.004340211804453927 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003015567895880965, h_cfl = 4.96671726474331e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002894945180045726, h_cfl = 2.483358632371655e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5828689304695791 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743182020382792 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069703290352819, h = 0.002894945180045727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069703290352819 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517175880375682 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.1880202704021 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.0430042964744 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01832920615797257 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599515968683 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.005456859374893601 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 371.8754828183439 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208731951771 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.07514845578796357 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02768906071174051 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005010200346717731 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879044027881399 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 264.1139062313106 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868001832096 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.04898184989809135 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1676270895079329 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004898535589673764 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080446277600375 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 239.0698529878246 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463592806854 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.04334360894804039 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066040662974 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.006015183160113438 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964648470398546 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 515.3793206142866 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442245792432 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1148530271845262 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383851641306 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01054419843231782, h_cfl = 2.233295140879348e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01012243049502511, h_cfl = 1.116647570439674e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.53250907582213 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111123036409299 - 6.015183160113438e-03 1.224741178552313e+00 1.729963074226947e+00 8.796519068710040e-12 8.689449160215190e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.01549566374859553, h_cfl = 2.894945180045727e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.01487583719865171, h_cfl = 1.447472590022863e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.138555749237621 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680697280368452 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.006015183160113438 +Current time = 0.007964648470398546 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -244,8 +250,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002233295140879348 -Current step size = 0.01012243049502511 +Last step size = 0.002894945180045727 +Current step size = 0.01487583719865171 Explicit RHS fn evals = 0 Implicit RHS fn evals = 44 NLS iters = 26 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out index 8deb92c66e..5aa9e6a5c7 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out @@ -7,215 +7,245 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.964790102879962e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.02755359227464431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.04444466957300736 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09609143371919215 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.02805399819163158 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1806077954736169 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.001406013957715032 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.1224890674762599 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 5.678291534219827e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.902425639273363e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499814051260959 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499781580918246 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.859528530294883e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 3.882514578718288e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00668046506668371, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.006413246464016361, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.27297758176857 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.827144826036898e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 6.661338147750939e-16 4.440892098500626e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006413246464016361 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008833069177745213, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008479746410635404, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.978178734921257e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 2.220446049250313e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003309609257617689 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 15.98161350203798 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.28676295640456 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0319537758652567 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01327964506398449 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00223218385166294 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.2088497628645 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 319.038855971821 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2296232565062182 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.4083960595797016 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008591478259674878 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004079198833299652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 392.2454526225389 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 204.2604304098407 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.768204971049801 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2615189380810247 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.61650766660443 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.00247350314635035 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.016080355714478 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005554245520023415 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 727.0172799128682 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 859.4593635466485 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.423068579652633 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.099240451491132 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.004581420253567278 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002311994534000555 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00651623248962587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1001.424779946844 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1735.696263548979 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.961856568802519 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 2.218847433921493 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.006318952069057399 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.004667092324739613 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003805721944057518, h_cfl = 6.413246464016361e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003653493066295217, h_cfl = 3.206623232008181e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5696791924019057 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004005675669815595 - 6.516232489625870e-03 1.224740537689633e+00 1.729601039259757e+00 2.278266464372791e-11 2.184104008762233e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00651623248962587, h = 0.003653493066295218 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00651623248962587 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005070000075348275, h_cfl = 8.479746410635405e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004867200072334344, h_cfl = 4.239873205317702e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5739794371951784 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283528804423328 + 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867200072334344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008342979022773478 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784930854111496 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 561.6874348987023 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 486.6849733552747 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.6264035376264484 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3569950644413023 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001148411251882187 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0004304924100195743 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007729192187635882 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350135077167 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 407.4437320238362 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 929.5046859262942 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.45442507084866 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.6816226096899868 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008331059917899451 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008219657363979175 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.008781398190728904 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324446047692 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 816.9903551651699 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 722.3829889045846 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.9109014874897468 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5298154349220007 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001669947504647432 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0006389028715493185 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.009621701595976804 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947772441669988 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 150.9207596467068 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1107245052612964 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198977248687895 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1181.257906176007 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1650.910714051643 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.316629339620776 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.20997962940408 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002413704717815864 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001459084170060892 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01016972555592109 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344993250857926 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1436.644014581929 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2524.632948028877 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.601181087086898 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.849220051021347 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002935513140712882 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.00222993820597665 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02184793713992066, h_cfl = 3.653493066295218e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02097401965432383, h_cfl = 1.826746533147609e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.740812771157737 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004151480914860668 - 1.016972555592109e-02 1.224734315814070e+00 1.726089959024652e+00 2.482614114285298e-11 2.127358289527592e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.03236787998334772, h_cfl = 4.867200072334344e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.03107316478401382, h_cfl = 2.433600036167172e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.384197140494967 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508382967907606 + 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01016972555592109 +Current time = 0.01344993250857926 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -224,12 +254,12 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003653493066295218 -Current step size = 0.02097401965432383 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 +Last step size = 0.004867200072334344 +Current step size = 0.03107316478401382 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 NLS fails = 0 -NLS iters per step = 11.66666666666667 +NLS iters per step = 13.33333333333333 LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out index 9b2f52735e..903dbc8823 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out @@ -8,85 +8,101 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.964790102879962e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.368628977311079e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.964790102879962e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.02755359227464431, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.04444466957300736, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.03896666388690052, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.06285425448533784, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 7.068684245838184e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 5.632677908218931e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 7.068684245838184e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02755288474442038 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 5.632677908218931e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.04444410578228845 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.09609143375169925, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.02805399818943428, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1358938088395288, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.03967434471828821, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.465154402188027e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.555418780415207e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.465154402188027e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09608896628805572 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.555418780415207e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364231763626 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1806077956037432, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001406013956085092, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.2554179940131215, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001988404005581387, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 4.633330046263267e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.781750861212226e-08 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 4.633330046263267e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1806031579260884 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.781750861212226e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.00140599612163296 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.1224890674957951, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1732257004949869, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.552348977012323e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.552348977012323e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.122487513702728 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.276257185735068e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.097675801631708e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499814053442976, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499781581065444, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270937789918, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535225014913209, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413182655035927e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.168070754129446e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413182655035927e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.24997498617904 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.168070754129446e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749870902664 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534802522694541e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.240163117980688e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -94,303 +110,345 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.006719923497867133, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.006451126557952447, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.64079538726109 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.742325031242378e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 4.440892098500626e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006451126557952447 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008833069177745213, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008479746410635404, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.962608770598098e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003328549304585732 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.28676295640445, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.54767968586433, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01084488338297794 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.062457463863292e-18 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.062457463863292e-18 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.27594417400336 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.641449462771085e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.08083333497015, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 319.0388559495085, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.74173259657616, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 451.1890770077911, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.02645577285028037 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3329076500534073 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.441887564474575e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.501210144697988e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.441887564474575e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.0545285272489 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.501210144697988e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 318.7059367116414 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.371604616849797e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.179446848380409e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002244760042849721 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 118.5357260444194, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 204.2604304099707, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 167.6348313977596, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 288.8678709419464, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1903179152662646 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2132014287585624 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.729212284236706e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.282566364595847e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.729212284236706e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 118.3454261629101 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.282566364595847e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 204.0472286166169 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.939363556579449e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.756635827914268e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004102684491540025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 396.7799729589967, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 12.61650664748519, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 561.131619036643, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 17.84243481064386, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.636716394760145 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01309836989019836 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.484127247738153e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.46244039757209e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.484127247738153e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 396.1432917940788 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.46244039757209e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 12.60338892277173 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002185148605823037, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.326173761070803e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005586443599869088 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 735.4741661021753, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 859.4593617170807, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1040.117540476739, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1215.459085648819, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.179209245221302 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.8956246239443026 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.439840890719091e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.030226860465728e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.439840890719091e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 734.2949033035875 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.030226860465728e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 858.5635718918842 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0007513008267848697, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0006669704702946733, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001062499818661282, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.0009432386847930886, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.409470765856917e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 8.133359313453013e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.409470765856917e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007490846834053407 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 8.133359313453013e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006656918969127018 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006554112583561956 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1013.105862937948, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1735.696266435071, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1432.748051486545, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2454.645200152823, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.625758816210647 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.806765737992726 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.461866393280248e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.563499989384819e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.461866393280248e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1011.480559058974 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.563499989384819e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.889229165088 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001425560608310061, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.002718457019141684, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.002016047146256928, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.003844478785198506, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.674392594609514e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.315013662036427e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.674392594609514e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001421355552797087 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.315013662036427e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002713245768397989 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003802774042374871, h_cfl = 6.451126557952447e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003650663080679877, h_cfl = 3.225563278976224e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5658954366938629 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004100678731752195 - 6.554112583561956e-03 1.224740487151591e+00 1.729572495016884e+00 2.946975996565016e-11 2.206064220189319e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.006554112583561956, h = 0.003650663080679877 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.006554112583561956 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005069991622201196, h_cfl = 8.479746410635405e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004867191957313148, h_cfl = 4.239873205317702e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5739784802065135 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283548497449123 + 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867191957313147 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008379444123901894 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784928849701259 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 564.5140709613839, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 486.6841613576611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 798.343455304037, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 688.2753415841802, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.5122389740491479 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2905838027315988 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.025142508879052e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.972086024975875e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.025142508879052e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 564.0009893185947 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.972086024975875e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 486.3927263744305 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002506099885822652, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0001227094375903753, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007766132726347675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.01063501008597439 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 409.2658290091583, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 929.5029709021572, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 578.7892860006197, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1314.515707715915, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3714280685337064 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.5546445680830815 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.888978519100137e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.037889406088299e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.888978519100137e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 408.893774404372 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.037889406088299e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 928.9466973418515 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0001316914393787291, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0004477970003846742, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00881752369358348 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324174194482 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 820.3045390101707, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 722.3816799642682, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1160.085804344393, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1021.601969015329, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7440015048060086 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.4311810707199935 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.496786641166685e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.593994958436902e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.496786641166685e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 819.5592726848695 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.593994958436902e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 721.9492334869299 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0005293932474467006, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002704617787686389, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771833043398 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 150.9205026779972, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.0007486751103678599, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 213.4338217273886, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.09014627001527259 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 5.624757031827298e-07 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.517528050101038e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 5.624757031827298e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0005285091861003915 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.517528050101038e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 150.8300897407031 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.175251756248302e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00965717620213985 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198976680636412 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1185.704265874136, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1650.907508329884, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1676.839053762838, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2334.735788503695, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.074784364303355 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.9840615809730719 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.722145958622607e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.040342380620992e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.722145958622607e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1184.627633160195 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.040342380620992e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1649.920539763122 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001105910995128215, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00141184262919741, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001563994328087847, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.001996646994147466, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.175020868105581e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 9.881988225013894e-07 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.175020868105581e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001104064176681669 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 9.881988225013894e-07 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001410289763273809 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01020477566424183 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344992439355806 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1441.799134798569, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2524.627810473625, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2039.011890649931, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3570.362889516092, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.306631795919364 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.503016169962119 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.979711756780436e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.200228842881807e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.979711756780436e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1440.490301836212 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.200228842881807e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.120349586974 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.001634877898056415, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.003298297688278241, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.002312066496255401, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.004664497323506916, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.737042516505863e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.308595340591967e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 1.737042516505863e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001632147729277761 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.308595340591967e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003294669935556694 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02190227878408229, h_cfl = 3.650663080679877e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.021026187632719, h_cfl = 1.825331540339938e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.759553036815223 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004138555190661009 - 1.020477566424183e-02 1.224734242922404e+00 1.726048871574017e+00 3.169020601490047e-11 2.147166888732954e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.03236785085134914, h_cfl = 4.867191957313147e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.03107313681729517, h_cfl = 2.433595978656574e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.384202038838136 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508380845468441 + 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020477566424183 +Current time = 0.01344992439355806 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -399,23 +457,23 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650663080679877 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 +Last step size = 0.004867191957313147 +Current step size = 0.03107313681729517 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 NLS fails = 0 -NLS iters per step = 9 +NLS iters per step = 10.66666666666667 LS setups = 0 Jac fn evals = 0 -LS RHS fn evals = 29 +LS RHS fn evals = 33 Prec setup evals = 0 Prec solves = 0 -LS iters = 29 +LS iters = 33 LS fails = 0 Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.074074074074074 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 Jac evals per NLS iter = 0 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out index 92f157774c..52dc9ae0bf 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out @@ -8,240 +8,280 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.964697559380313e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368573862746562e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.419136050235679e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.342461124330448e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02755288476307282 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.0444441057897963 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.385133587789521e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.450031857918532e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09608896636098527 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364232183439 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.753812176808214e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.180603158079822 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.001405996121470046 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.1224875137281462 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.25245970796259e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.259048948413402e-13 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0001029860256095084 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749863599196 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749871485559 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.006719925951289845, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.006451128913238251, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.64081825721642 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.742319852554314e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008833069177745213, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008479746410635404, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.962603584910639e-11 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 0.000000000000000e+00 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.006451128913238251 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008479746410635404 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.003328550482228634 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002197483389036453 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.27594245005348 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.016614577411573e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.05452507214864 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 318.7057870277454 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.129920641765477e-05 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 9.187893730682911e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.002244760824804608 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 118.3454769917176 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 204.0471672974475 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.953618323509618e-05 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 3.764993563400174e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.004102685951817224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0007389670064071637 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 396.1432178884001 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 12.60338862820494 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0002187086232103356 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.438321343380526e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005586445601862022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 734.2942058683061 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 858.5624846927961 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007520421592194119 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006675017140435614 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00655411493884776 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1011.478964763825 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.884798165494 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001424579352601338 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00272110725063923 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003802779126217027, h_cfl = 6.451128913238251e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003650667961168346, h_cfl = 3.225564456619126e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5658959866197795 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.004100655316169613 - 6.554114938847760e-03 1.224740487151368e+00 1.729572493235030e+00 2.654254593892347e-11 2.225244433162743e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411493884776, h = 0.003650667961168346 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411493884776 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005069991903092901, h_cfl = 8.479746410635405e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004867192226969185, h_cfl = 4.239873205317702e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.5739785120065255 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.002283547843061466 + 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.008582732436244913, h = 0.004867192226969185 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.008582732436244913 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.009784928916306302 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 486.3925390340005 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0001400250965491854 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.008379448919431933 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.01063501019967631 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 564.0014806129656 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 928.9460233583245 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0003203746251509396 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0004483582992973109 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.007766136701955651 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324183227959 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 408.8942864970894 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 721.9488354659991 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0001318689853766368 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0002707998091281837 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.008817529074772134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771853267601 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 819.5599166135717 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 150.8300789506056 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0005296666417807359 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.181473423917798e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.009657182705840853 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198976699512334 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1184.62805856745 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1649.918340583196 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001106743799152199 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001414605565722521 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01020478290001611 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499246632141 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1440.490382360151 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.115136876571 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001636494915150856 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003307199228182218 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02190228634313546, h_cfl = 3.650667961168346e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02102619488941004, h_cfl = 1.825333980584173e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.759547324780779 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0004138569211494713 - 1.020478290001611e-02 1.224734242910499e+00 1.726048863075356e+00 2.852318381485475e-11 2.167570567479515e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.03236790443725433, h_cfl = 4.867192226969185e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.03107318825976415, h_cfl = 2.433596113484593e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.384212254364467 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0002508359824665829 + 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.01020478290001611 +Current time = 0.0134499246632141 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -250,13 +290,13 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.003650667961168346 -Current step size = 0.02102619488941004 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 +Last step size = 0.004867192226969185 +Current step size = 0.03107318825976415 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 NLS fails = 0 -NLS iters per step = 8.666666666666666 +NLS iters per step = 10.33333333333333 LS setups = 3 Jac fn evals = 1 LS RHS fn evals = 0 @@ -267,6 +307,6 @@ LS fails = 0 Jac-times setups = 0 Jac-times evals = 0 LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.03846153846153846 +Jac evals per NLS iter = 0.03225806451612903 Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out index a83ad4c0ff..d52121f1d0 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out @@ -5,76 +5,76 @@ Start ERKStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.119441024380336e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 5.14930128047542e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.179161536570504e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 7.723951920713131e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.008972298336716318, h_cfl = 1.029860256095084e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.008882575353349156, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 86.25029756007065 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.419249037637078e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.02175852070510274, h_cfl = 1.029860256095084e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02154093549805171, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 209.1636741059255 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.594510015625189e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.008882575353349156 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.02154093549805171 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0001029860256095084 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.004544273702284087 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.008719360224830193 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.004544273702284087 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.01302754732444054 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.008985561378958664 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.02164392152366122 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.006764917540621375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.02164392152366122 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001178309766646161, h_cfl = 8.882575353349156e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001166526668979699, h_cfl = 4.441287676674578e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.1313275286248895 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 2.462475155319869, kflag = 5 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.001166526668979699 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.006764917540621375 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001899974436426266, h_cfl = 2.154093549805171e+28 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002154093549805171, h_cfl = 1.077046774902586e+28 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.1 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 3.140201787461667, kflag = 5 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.002154093549805171 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.02164392152366122 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006862493600993581 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000964623445531577 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0006862493600993581 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001395442155492611 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001269512694589208 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002257079575414679 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000977881027344283 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002257079575414679 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001351152074913978, h_cfl = 1.166526668979699e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001166526668979699, h_cfl = 5.832633344898497e+26 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00222404807423718, h_cfl = 2.154093549805171e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002154093549805171, h_cfl = 1.077046774902586e+27 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 1 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007282628719708946 - 1.269512694589208e-03 1.224744706901909e+00 1.731957760691857e+00 7.771561172376096e-14 3.164135620181696e-13 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.001269512694589208, h = 0.001166526668979699 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001269512694589208 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003093648788603309 + 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002257079575414679, h = 0.002154093549805171 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002257079575414679 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001852776029079057 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.003118716995336748 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001852776029079057 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.003549535705297782 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002436039363568907 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.004411173125219851 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002144407696323982 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.004411173125219851 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003684971035872554, h_cfl = 1.166526668979699e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003648121325513829, h_cfl = 5.832633344898497e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.127336410323694 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0007283923530119241 - 2.436039363568907e-03 1.224744265725872e+00 1.731708225192427e+00 1.558753126573720e-13 5.899725152858082e-13 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.007801875989983231, h_cfl = 2.154093549805171e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.007723857230083399, h_cfl = 1.077046774902586e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.585664713021396 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003130074629321011 + 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.002436039363568907 +Current time = 0.004411173125219851 Steps = 3 Step attempts = 4 Stability limited steps = 0 @@ -83,7 +83,7 @@ Error test fails = 1 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.001166526668979699 -Current step size = 0.003648121325513829 -RHS fn evals = 21 +Last step size = 0.002154093549805171 +Current step size = 0.007723857230083399 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out index 5f36995dc7..1cb90776c4 100644 --- a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out +++ b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out @@ -7,13 +7,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -21,13 +21,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0005, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -37,13 +37,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -51,13 +51,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.00025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0004375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -65,13 +65,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0006875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -79,13 +79,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0009375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -98,13 +98,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.001, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -112,13 +112,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.0015, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -128,13 +128,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.001, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0011875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -142,13 +142,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.00125, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0014375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -156,13 +156,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0015, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0016875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -170,13 +170,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00175, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0019375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -189,13 +189,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.002, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -203,13 +203,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0025, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -219,13 +219,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.002, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0021875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -233,13 +233,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00225, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0024375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -247,13 +247,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002687500000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -261,13 +261,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002750000000000001, h = 0.0002499999999999991 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0029375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out index 6544d69c5c..1c6f60e433 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out @@ -11,88 +11,88 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00075 @@ -100,37 +100,37 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157886608518576, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831571144177833, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123678626051 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618640185768e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425216259463, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001659288207609084, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641130410033 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783215943582465e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0002691273172028848 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006154363413985574 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005885236096782689 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006154363413985574 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006423490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006827181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002342768924220768, h_cfl = 2.691273172028848e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002249058167251937, h_cfl = 1.345636586014424e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.356855746295192 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.061352125450266e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003523580954952828, h_cfl = 2.691273172028848e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003382637716754715, h_cfl = 1.345636586014424e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.56891255748919 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.524836630178692e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -138,24 +138,24 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00075, h = 0.0002499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009374999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002092677993913014, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002008970874156493, h_cfl = 1.249999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.035883496625978 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.534938689302334e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003514001650164878, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003373441584158283, h_cfl = 1.249999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.49376633663314 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.613867963908573e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329543e+00 1.731993073504213e+00 2.242650509742816e-14 2.664535259100376e-15 + 1.000000000000000e-03 1.224744769329543e+00 1.731993073504212e+00 2.242650509742816e-14 3.330669073875470e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -164,20 +164,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002019467844874993, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001938689131079993, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.816067393239986 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185275272059e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003389850775568803, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003254256744546051, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.762770233638163 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469718993709e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00175 @@ -185,20 +185,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.0004166666666666664 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001583333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001645833333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002325110420635145, h_cfl = 4.166666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002232106003809739, h_cfl = 2.083333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.357054409143378 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.184752984633551e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003901249949801813, h_cfl = 4.166666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003745199951809741, h_cfl = 2.083333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.988479884343384 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.354351058885305e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -206,24 +206,24 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00175, h = 0.0002499999999999998 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0019 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0019375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002121473803752882, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002036614851602766, h_cfl = 1.249999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146459406411072 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.535440853723494e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003558737514327801, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003416388013754689, h_cfl = 1.249999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.66555205501877 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.653375431797445e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463143411e+00 1.731819882857615e+00 4.485301019485632e-14 4.218847493575595e-15 + 2.000000000000000e-03 1.224744463143411e+00 1.731819882857614e+00 4.485301019485632e-14 5.107025913275720e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -232,20 +232,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001905013896432126, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001828813340574841, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.486440021724523 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335258683e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003194595969817352, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003066812131024658, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.200436393073977 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448229966051e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00275 @@ -253,20 +253,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0004166666666666659 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002541666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002583333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002749999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002645833333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002324933765203915, h_cfl = 4.166666666666659e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002231936414595759, h_cfl = 2.08333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.35664739502983 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.185319915370691e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003897395548075038, h_cfl = 4.166666666666659e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003741499726152036, h_cfl = 2.08333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.979599342764903 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.382019849665957e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -274,24 +274,24 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00275, h = 0.00025 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0029 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0029375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002121273546461272, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00203642260460282, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.145690418411281 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53635312385524e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003555357986610422, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003413143667146005, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.65257466858402 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.687683867585899e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.217248937900877e-15 + 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out index 3fec8b4975..0f8cd20dca 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out @@ -12,98 +12,98 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.618808553272737 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.618808553454022 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0007928652556788505 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0007928652557433674 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0003333333333333333 @@ -113,47 +113,47 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157886631954655, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831571166676468, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123693875294 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618612523282e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425275879329, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001659288264844156, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641169203123 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783214733348721e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002154071596762738, h_cfl = 1.857939838695515e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002067908732892228, h_cfl = 9.289699193477576e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.13011675525584 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681769616071643e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003240071749767136, h_cfl = 1.857939838695515e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046887977645, h_cfl = 9.289699193477576e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.74149407313615 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242761669623e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.47508400821115 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 10.47508400830179 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00318668913410324 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.003186689134226742 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0006666666666666666 @@ -163,30 +163,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0006666666666666666, h = 0.0003333333333333331 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024220627, h_cfl = 3.333333333333331e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001932969832518019, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.798909497554061 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151446454876e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003381055351690125, h_cfl = 3.333333333333331e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581313762252, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.737439412867566 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.774107490330471e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56852920005934 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56852920014998 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00721853154020951 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007218531540241768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -194,7 +194,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769312645e+00 1.731993073504226e+00 1.687561201890730e-11 1.043609643147647e-14 + 1.000000000000000e-03 1.224744769312645e+00 1.731993073504225e+00 1.687561201890730e-11 1.021405182655144e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -203,27 +203,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002299746961420123, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002207757082963318, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.623271248889962 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852819112485e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003860341588883832, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003705927925328479, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.11778377598545 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469774320306e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 18.33117208795071 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 18.33117208795072 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.005605053590958301 @@ -236,30 +236,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127280774688737, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042189543701188, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126568631103569 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341067341592e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003569623895663708, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683893983716, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.28051681951149 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645787296775e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 41.89912728820217 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 41.89912728811153 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.012810580405903 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01281058040587075 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001666666666666667 @@ -269,30 +269,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127236369311113, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042146914538669, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126440743616008 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983467222143e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356837598914512, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003425640949579315, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27692284873795 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663319968874e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70323030012283 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.7032303000322 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02165342185634298 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02165342185631074 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -309,20 +309,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127183712206665, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042096363718398, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126289091155196 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753308321081e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003567183771572066, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003424496420709183, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27348926212755 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448202299966e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 @@ -342,20 +342,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0003333333333333328 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127119983291906, h_cfl = 3.333333333333328e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204203518396023, h_cfl = 1.666666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1261055518807 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.854673527563141e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003566054731129575, h_cfl = 3.333333333333328e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003423412541884392, h_cfl = 1.666666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27023762565319 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.794076539327454e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 @@ -375,30 +375,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127045935429419, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002041964098012242, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.125892294036728 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748234790955e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003564986349844385, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003422386895850609, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.26716068755183 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.797515668534437e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347848203848 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347848202942 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03608300450075731 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03608300450074117 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 @@ -406,7 +406,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.975397705995420e-14 + 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out index cd61d77a59..bdb10207f7 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out @@ -13,109 +13,109 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.618808553272737, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.618808553454022, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3.703554573296969, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3.703554573553344, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.00112125978322437 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.001121259783301988 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.161068318927283e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.56118489021115e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.161068318927283e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.618813609683919 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.56118489021115e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.618813609865203 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.232026095373332e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.232122958362191e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -127,58 +127,58 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157886397593916, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831570941690159, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123541382885 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861618889148138e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425165156731, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001659288158550462, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641097158821 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783216980925674e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002154071501057282, h_cfl = 1.857939838695515e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002067908641014991, h_cfl = 9.289699193477576e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.13011626074447 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681770943876267e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003240071989755903, h_cfl = 1.857939838695515e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003110469110165667, h_cfl = 9.289699193477576e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.74149531316132 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242312152432e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.4750840049673, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 10.47508400505794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.81400586682223, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 14.81400586695041, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.00450658843870752 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004506588438746522 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.098125567835629e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.261664520803773e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.098125567835629e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47509900841071 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.261664520803773e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47509900850135 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.162702708411542e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.162703179451021e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -190,41 +190,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0006666666666666666, h = 0.0003333333333333331 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024912287, h_cfl = 3.333333333333331e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001932969839157955, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.798909517473869 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851514752241806e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003381055253341324, h_cfl = 3.333333333333331e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003245813043207672, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.737439129623022 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.774107486872622e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56852919194102, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56852919203166, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093362842919, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093362855737, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01020836739073424 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0102083673907735 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.355663625576664e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.494355680485315e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.355663625576664e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854611856336 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.494355680485315e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854611865401 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.159124529421133e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.159124413361278e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -234,7 +234,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.154631945610163e-14 + 1.000000000000000e-03 1.224744769329781e+00 1.731993073504227e+00 2.609024107869118e-13 1.132427485117660e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -243,41 +243,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002299746951253171, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002207757073203045, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.623271219609141 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852796981838e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003860341633827137, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003705927968474051, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.11778390542216 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469746657e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 18.33117208679076, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 18.33117208679077, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 25.9241921793346, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 25.92419217933461, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.007926620801967321 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.007926620802385322 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.96020189895167e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.394322923365522e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.96020189895167e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.3311884590036 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.394322923365522e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.33118845900361 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.923065181149995e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 6.92303726031012e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -289,41 +289,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127280769804621, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042189539012436, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126568617037314 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341067341581e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003569623875944321, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003426838920906548, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.28051676271965 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645828792804e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 41.8991272714572, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 41.89912727145721, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 59.25431403889118, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 59.2543140388912, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01811631882340358 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01811631882435978 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.767859298135969e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.427179818558752e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.767859298135969e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 41.89916487967248 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.427179818558752e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 41.8991648796725 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.734177522130014e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.734170929715859e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -335,41 +335,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127236364007833, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042146909447519, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12644072834256 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983533617987e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003568376023515923, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003425640982575286, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27692294772586 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663313052637e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70323025789027, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70323025789028, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946713429621, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946713429622, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0306210098787736 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03062100988038579 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.142537668128806e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.052242434539098e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.142537668128806e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328103277684 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.052242434539098e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328103277686 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884719277568e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073883596683003e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -379,7 +379,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.398081733190338e-14 + 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.375877272697835e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -388,20 +388,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127183706742662, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042096358472956, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126289075418868 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753396852466e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003567183751145517, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003424496401099696, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27348920329909 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448223049503e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 @@ -413,16 +413,16 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 48.14435875066259, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0147300815422269 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01473008154222755 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.475993886304119e-19 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.419550203029483e-18 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.475993886304119e-19 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.419550203029483e-18 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.04323020408164 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.451037074099789e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.451037069515462e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -434,20 +434,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0003333333333333328 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997753779, h_cfl = 3.333333333333328e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042035178436279, h_cfl = 1.666666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126105535308846 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467361609875e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003566054733307913, h_cfl = 3.333333333333328e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003423412543975597, h_cfl = 1.666666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27023763192681 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.794076553161126e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 @@ -459,16 +459,16 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 103.6926707248469, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03172118985328261 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03172118985328404 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.528691940896443e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.528326328881616e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.528691940896443e-14 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.528326328881616e-14 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.32185080179332 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.155370726632578e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.155370725624026e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -480,41 +480,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127045936851595, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002041964099377531, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.125892298132595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748234790828e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003564986361000701, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003422386906560672, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.26716071968202 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751564086545e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347847337331, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347847336424, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435506897594, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435506896312, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05102477837646521 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05102477837373687 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.409058797851785e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.559886651444443e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.409058797851785e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348693449266 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.559886651444443e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.834869344836 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999452862407404e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999454757690655e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out index ea21ca016b..af008eab4a 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out @@ -13,88 +13,88 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.72043177480417e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.812781742837131e-07, h_cfl = 1.144086354960834e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.420270473123646e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.054311027668149e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.816631034319587e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.144086354960834e-08, h = 9.420270473123646e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.144086354960834e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.882516824745542e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.824543872057906e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.179611490338818e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.612117549351599e-05, h_cfl = 9.420270473123646e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.547632847377535e-05, h_cfl = 4.710135236561823e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.125318529963199e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.975938967875272e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.534679108619729e-07, h = 1.547632847377535e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.534679108619729e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.143999300372112e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.691632147749645e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.023926499512718e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.256071426619348e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005706037288326979, h_cfl = 1.547632847377535e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0003095265694755069, h_cfl = 7.738164236887673e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.253820759884639e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.182264139224836e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.642979638463732e-05, h = 0.0003095265694755069 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.642979638463732e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001402404241748401 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001711930811223908 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002021457380699415 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002485747234912675 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001387641353489307, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001332135699349735, h_cfl = 1.547632847377535e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.303784652823311 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.606776744248313e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002633374332150717, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002528039358864689, h_cfl = 1.547632847377535e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.167438947643344 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.312111751438173e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0003259563658601442, h = 7.376967473189085e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003259563658601442 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003289071528494199 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003296448495967387 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003303825463440577 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000331489091465036 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005832695060001238, h_cfl = 7.376967473189085e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0004625182578276796, h_cfl = 7.376967473189085e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001475393494637817, h_cfl = 3.688483736594543e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.165109125384501e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.236897982483148e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.0003333333333333333 @@ -103,12 +103,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.617700682819475 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.617700683000682 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001112474382861515 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001112474382938587 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0003333333333333333 @@ -118,37 +118,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0003333333333333333, h = 0.0001475393494637817 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0003333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004071030080652242 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004218569430116024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004439878454311696 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008157885905437562, h_cfl = 1.475393494637817e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0007831570469220059, h_cfl = 7.376967473189085e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.308123221149604 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.861619470059087e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001728425182191198, h_cfl = 1.475393494637817e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928817490355, h_cfl = 7.376967473189085e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.24641108242704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.783216635140057e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.0001857939838695515 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005551902763449355 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005737696747318907 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005923490731188459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006202181706992786 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002154071651456697, h_cfl = 1.857939838695515e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002067908785398429, h_cfl = 9.289699193477576e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.13011703786026 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.681769782044082e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00324007195283482, h_cfl = 1.857939838695515e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003110469074721427, h_cfl = 9.289699193477576e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.74149512238959 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.708242381307778e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0006666666666666666 @@ -157,12 +157,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47064411639136 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 10.47064411648196 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004452567171048158 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004452567171086871 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0006666666666666666 @@ -172,20 +172,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0006666666666666666, h = 0.0003333333333333331 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008333333333333332 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008666666666666665 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009166666666666665 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002013510190539819, h_cfl = 3.333333333333331e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001932969782918226, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.798909348754682 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851514785420889e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003381055264847888, h_cfl = 3.333333333333331e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003245813054253972, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.737439162761923 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749724022e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -194,12 +194,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55851273849144 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55851273858204 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01002676147689013 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01002676147692884 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -207,7 +207,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628497336980672e-11 + 1.000000000000000e-03 1.224744769329545e+00 1.731993073520500e+00 2.398081733190338e-14 1.628475132520180e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -216,20 +216,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002299746983550014, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002207757104208013, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.623271312624047 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.851852664152388e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003860341636008414, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003705927970568077, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.11778391170424 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469732808638e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001333333333333333 @@ -238,12 +238,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.3233881738182 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 18.32338817381821 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.007796994789490233 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.007796994789490242 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001333333333333333 @@ -253,20 +253,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001333333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127280759621378, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042189529236523, h_cfl = 1.666666666666665e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126568587709575 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852341133666858e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003569623881345332, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003426838926091519, h_cfl = 1.666666666666665e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.28051677827457 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.782645808019667e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001666666666666667 @@ -280,7 +280,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01782130916736245 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01782130916736246 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001666666666666667 @@ -290,20 +290,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001866666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127236384874792, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020421469294798, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126440788439403 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.852983334309895e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003568376008195399, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003425640967867583, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27692290360275 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.786633165063192e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -312,12 +312,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67317810828131 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67317810828132 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.030079277696704 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03007927769670401 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -325,7 +325,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441158800247649e-11 + 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441136595787157e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -334,20 +334,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002166666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127183703426417, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204209635528936, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126289065868082 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.853753352378277e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003567183773372547, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003424496422437645, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27348926731294 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448181473495e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002333333333333334 @@ -356,7 +356,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.02874272231963 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.02874272231964 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002333333333333334 @@ -366,20 +366,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002333333333333334, h = 0.0003333333333333328 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002333333333333334 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002583333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997252938, h_cfl = 3.333333333333328e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002042035173628204, h_cfl = 1.666666666666664e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.126105520884623 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.854673693492052e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003566054803162448, h_cfl = 3.333333333333328e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342341261103595, h_cfl = 1.666666666666664e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.27023783310787 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407635032002e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002666666666666667 @@ -388,7 +388,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.2761708669783 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 73.27617086697832 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002666666666666667 @@ -398,20 +398,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002666666666666667, h = 0.0003333333333333332 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002916666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002127045936467591, h_cfl = 3.333333333333332e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002041964099008887, h_cfl = 1.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.125892297026663 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.855748275024137e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003564986592290118, h_cfl = 3.333333333333332e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003422387128598513, h_cfl = 1.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.26716138579554 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.797514971275444e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -428,7 +428,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179997030935e-07 + 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out index 44d65c9844..b31c598145 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out @@ -12,88 +12,88 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.283118913371641e-06, h_cfl = 1.496006819526213e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.231794156836775e-06, h_cfl = 7.480034097631063e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472585 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.108004205495869e-05, h_cfl = 1.231794156836775e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.023684037276034e-05, h_cfl = 6.158970784183875e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007461211873381922, h_cfl = 2.023684037276034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004047368074552068, h_cfl = 1.011842018638017e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001474585099681421, h_cfl = 4.047368074552068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001415601695694164, h_cfl = 2.023684037276034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002798042933992903, h_cfl = 4.047368074552068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002686121216633187, h_cfl = 2.023684037276034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008221669095400283, h_cfl = 9.646119455459875e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006519856051646501, h_cfl = 9.646119455459875e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001929223891091975, h_cfl = 4.823059727729937e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -113,47 +113,47 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.0001929223891091975 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008364545729167712, h_cfl = 1.929223891091975e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029963900001004, h_cfl = 9.646119455459875e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.162276829080684 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270566101614e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001771810520934313, h_cfl = 1.929223891091975e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093810009694, h_cfl = 9.646119455459875e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.816696226658166 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278340402164e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001966024868239103, h_cfl = 8.914435013657296e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710662895625, h_cfl = 8.914435013657296e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001782887002731459, h_cfl = 4.457217506828648e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480983041563123e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057658423235529e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0007179332607542295 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.14796270537412 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 12.14796270546477 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.003729401476593421 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00372940147662568 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.0007179332607542295 @@ -163,30 +163,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0007179332607542295, h = 0.0002820667392457702 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0007179332607542295 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001522938943322793, h_cfl = 2.820667392457702e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001462021385589881, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.183246310781768 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422835575235e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002557258282000896, h_cfl = 2.820667392457702e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496795072086, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.703500303812136 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971638889635e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56857053242068 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56857053251133 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007204341456067922 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007204341456084042 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -195,7 +195,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.437694987151190e-15 + 1.000000000000000e-03 1.224744769310943e+00 1.731993073504207e+00 1.857802800486752e-11 8.659739592076221e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -204,30 +204,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0004358665215084587 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002572109904163659, h_cfl = 4.358665215084587e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002469225507997112, h_cfl = 2.179332607542293e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.665095588097819 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573793277643e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702712074304, h_cfl = 4.358665215084587e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004144346035913318, h_cfl = 2.179332607542293e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.508291716396233 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645527883502e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 25.02295754400714 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 25.02295754400715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007673490841823296 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007673490841839424 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001435866521508459 @@ -237,30 +237,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001435866521508459, h = 0.0002820667392457701 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257738579556575, h_cfl = 2.820667392457701e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167429036374312, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.684100018917118 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487925979834815e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003788366449981633, h_cfl = 2.820667392457701e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003636831791982367, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.89351520745424 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825627642645e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.9883942369528 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.98839423695281 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01409326137946229 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01409326137947841 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001717933260754229 @@ -270,20 +270,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885990625018675, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810551000017928, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418874500620789 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213435739734e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003163681707906477, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003037134439590218, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.76743201878866 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.161071371876041e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -293,7 +293,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70326789489285 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02163921128613955 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02163921128615572 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -302,7 +302,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.019806626980426e-14 + 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.042011087472929e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -311,30 +311,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0004358665215084585 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002205765825198395, h_cfl = 4.358665215084585e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002117535192190459, h_cfl = 2.179332607542292e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.858219403642281 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419125643031044e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003698595759943598, h_cfl = 4.358665215084585e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003550651929545854, h_cfl = 2.179332607542292e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146190988143946 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102673e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.56773766995966 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 45.567737669869 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01396408830693848 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01396408830690622 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002435866521508459 @@ -344,30 +344,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002435866521508459, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553829678998, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167251676491838, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.683471231974887 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193419476551e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460754926259, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003633223247292087, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.88072197738418 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201878237253858e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 79.82720625180357 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 79.82720625171292 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02445379030807663 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02445379030804438 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002717933260754229 @@ -377,30 +377,30 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885820260655438, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038745022922, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418294674055113 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668466049585e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003160678462138904, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003034251323653348, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.75721062244615 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.216745165531386e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8348216738145 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8348216736332 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0360687584086095 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03606875840854498 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 @@ -409,7 +409,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952637017e+00 1.731531270273480e+00 1.962627838025810e-10 8.992806499463768e-14 + 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out index a99d2ee1ba..48a0b8e35c 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out @@ -13,88 +13,88 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.283118913371641e-06, h_cfl = 1.496006819526213e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.231794156836775e-06, h_cfl = 7.480034097631063e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472585 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.108004205495869e-05, h_cfl = 1.231794156836775e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.023684037276034e-05, h_cfl = 6.158970784183875e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007461211873381922, h_cfl = 2.023684037276034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004047368074552068, h_cfl = 1.011842018638017e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001474585099681421, h_cfl = 4.047368074552068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001415601695694164, h_cfl = 2.023684037276034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002798042933992903, h_cfl = 4.047368074552068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002686121216633187, h_cfl = 2.023684037276034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008221669095400283, h_cfl = 9.646119455459875e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006519856051646501, h_cfl = 9.646119455459875e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001929223891091975, h_cfl = 4.823059727729937e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -127,37 +127,37 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.0001929223891091975 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008364545630537986, h_cfl = 1.929223891091975e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029963805316466, h_cfl = 9.646119455459875e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.162276780001601 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.442705992966839e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181049706912, h_cfl = 1.929223891091975e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001700938077186356, h_cfl = 9.646119455459875e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669610790272 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278478714956e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001966024156162993, h_cfl = 8.914435013657296e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002957107189014047, h_cfl = 8.914435013657296e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001782887002731459, h_cfl = 4.457217506828648e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480987744230228e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057649778626881e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0007179332607542295 @@ -190,20 +190,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0007179332607542295, h = 0.0002820667392457702 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0007179332607542295 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293912788855, h_cfl = 2.820667392457702e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001462021562773008, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.183246938942064 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422957291812e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002557258105217176, h_cfl = 2.820667392457702e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002454967781008489, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.703499702137613 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971638889631e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -244,20 +244,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0004358665215084587 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002572109755115509, h_cfl = 4.358665215084587e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002469225364910889, h_cfl = 2.179332607542293e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.665095259817906 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573779999255e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004317027246987211, h_cfl = 4.358665215084587e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004144346157107723, h_cfl = 2.179332607542293e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.508291994450175 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645597041759e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 @@ -290,41 +290,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001435866521508459, h = 0.0002820667392457701 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257738578277529, h_cfl = 2.820667392457701e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167429035146428, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.684100014563951 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487925957703379e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003788366431347719, h_cfl = 2.820667392457701e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683177409381, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.89351514403465 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825904285456e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.98839422006409, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.98839421997345, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 65.0374108177751, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 65.03741081764692, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01993022435383186 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01993022435379259 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.601715600583093e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.761880948336852e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.601715600583093e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.98842420996601 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.761880948336852e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.98842420987538 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.508449719859987e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.50844967414183e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -336,41 +336,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885990630919255, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810551005682485, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418874520703118 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213391475553e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003163681713204779, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003037134444676588, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.76743203682116 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.161071371875986e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70326784116725, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70326784098594, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98952028507621, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98952028481982, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03060090279483382 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03060090279475539 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.928833636261717e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.732171617718288e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.928833636261717e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.7033235562848 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.732171617718288e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.7033235561035 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884213617642e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.073884204471758e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -381,7 +381,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.332267629550188e-14 + 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.287858708565182e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success @@ -390,41 +390,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0004358665215084585 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002205765820445304, h_cfl = 4.358665215084585e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002117535187627492, h_cfl = 2.179332607542292e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.858219393173556 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419125651884173e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003698595756213618, h_cfl = 4.358665215084585e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003550651925965073, h_cfl = 2.179332607542292e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146190979928631 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.237313391026676e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.56773766224819, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 45.56773766224818, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 64.44251260861067, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 64.44251260861066, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0197475505808735 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01974755058191296 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.813872614936062e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.326799159987934e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.813872614936062e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.56776698106852 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.326799159987934e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.56776698106851 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.425041483437005e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.425034303297187e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -436,41 +436,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002435866521508459, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553839765699, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167251686175071, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.683471266304468 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193375207932e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003784607516262309, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003633223215611816, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.88072186506938 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201878652271481e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 79.82720621190367, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 79.82720621181299, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 112.892717671228, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 112.8927176710997, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03458090468247423 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03458090468425559 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.108501437863291e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.833427354139076e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.108501437863291e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.82726049775935 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.833427354139076e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.82726049766868 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.371022992941138e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.371021702201104e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -482,41 +482,41 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885820264398724, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810387453822775, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418294686795201 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668421778799e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003160678453772991, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003034251315622071, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.75721059397318 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674544222306e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8348215690963, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8348215690056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6436027828297, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6436027827015, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05100462411786148 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05100462412051134 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.464460115747127e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.277024904141939e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.464460115747127e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8349111208192 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.277024904141939e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8349111207285 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.999444839290604e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.99944295172404e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -527,7 +527,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.776356839400250e-14 + 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out index 9e3205a335..f19909184f 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out @@ -13,88 +13,88 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.984027278104851e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.480034097631063e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.976040917157275e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.122005114644659e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.283118913371641e-06, h_cfl = 1.496006819526213e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.231794156836775e-06, h_cfl = 7.480034097631063e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472585 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.231805049533112e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.419303601417544e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.496006819526213e-08, h = 1.231794156836775e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.496006819526213e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.076777309299721e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.308571466136496e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.540365622973271e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.388056858228434e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.108004205495869e-05, h_cfl = 1.231794156836775e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.023684037276034e-05, h_cfl = 6.158970784183875e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.42875171995309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.361269338183975e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.822097239424728e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.246754225032037e-06, h = 2.023684037276034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.246754225032037e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.13651744114122e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.642438450460229e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007461211873381922, h_cfl = 2.023684037276034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004047368074552068, h_cfl = 1.011842018638017e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.587902436910164e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.392261262430434e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.148359459779237e-05, h = 0.0004047368074552068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.148359459779237e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001833783175798751 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002238519983253957 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002643256790709164 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003250362001891974 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001474585099681421, h_cfl = 4.047368074552068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001415601695694164, h_cfl = 2.023684037276034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.054536139332359e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002798042933992903, h_cfl = 4.047368074552068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002686121216633187, h_cfl = 2.023684037276034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.838627340701253e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004262204020529991, h = 9.646119455459874e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004262204020529991 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000431043461780729 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000433454991644594 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008221669095400283, h_cfl = 9.646119455459875e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006519856051646501, h_cfl = 9.646119455459875e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0001929223891091975, h_cfl = 4.823059727729937e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.399381689992988e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.239411936229134e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -118,37 +118,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.0001929223891091975 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005323277160630578 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005516199549739774 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005805583133403571 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008364545860675966, h_cfl = 1.929223891091975e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029964026248927, h_cfl = 9.646119455459875e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.16227689452043 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.442705218408666e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001771810494086383, h_cfl = 1.929223891091975e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001700938074322928, h_cfl = 9.646119455459875e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.816696093060337 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.985278496001669e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0006287889106176565, h = 8.914435013657296e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0006287889106176565 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000673361085685943 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006956471732200863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0007179332607542294 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001966024518003245, h_cfl = 8.914435013657296e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002957106536053494, h_cfl = 8.914435013657296e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001782887002731459, h_cfl = 4.457217506828648e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.480985254579955e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.057660152146372e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.0007179332607542295 @@ -172,20 +172,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.0007179332607542295, h = 0.0002820667392457702 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0007179332607542295 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008307599564525376 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008589666303771146 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0008871733043016917 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009294833151885572 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999998 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001522939033375331, h_cfl = 2.820667392457702e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001462021472040318, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.183246617271065 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487422913020145e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002557258296335922, h_cfl = 2.820667392457702e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002454967964482485, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.703500352600681 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.096971880899068e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -217,20 +217,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0004358665215084587 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002572109837952736, h_cfl = 4.358665215084587e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002469225444434626, h_cfl = 2.179332607542293e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.665095442267654 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.418573779983966e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004317027089119721, h_cfl = 4.358665215084587e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004144346005554933, h_cfl = 2.179332607542293e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.508291646745585 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.202645603901512e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.001435866521508459 @@ -239,12 +239,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 25.01207820825822 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 25.01207820816762 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01088917366868417 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01088917366864545 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001435866521508459 @@ -254,20 +254,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.001435866521508459, h = 0.0002820667392457701 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257738564091452, h_cfl = 2.820667392457701e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167429021527794, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.684099966282349 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.487926046185586e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003788366433890492, h_cfl = 2.820667392457701e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003636831776534873, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.89351515268885 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.143825834964861e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.001717933260754229 @@ -276,12 +276,12 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.96839978231188 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.96839978222128 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02001100770869457 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02001100770865586 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001717933260754229 @@ -291,20 +291,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885990638869279, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810551013314508, h_cfl = 1.410333696228851e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418874547760627 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.488213369269281e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003163681716022767, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003037134447381857, h_cfl = 1.410333696228851e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.76743204641205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107130244008e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -336,20 +336,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.0004358665215084585 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002174346608603384 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002217933260754229 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002261519912905075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002326899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002205765817803392, h_cfl = 4.358665215084585e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002117535185091256, h_cfl = 2.179332607542292e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821938735472 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564738839e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003698595758998121, h_cfl = 4.358665215084585e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003550651928638196, h_cfl = 2.179332607542292e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.146190986061523 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731336310518e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.002435866521508459 @@ -358,7 +358,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.54793022201162 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.54793022210224 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002435866521508459 @@ -368,20 +368,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.002435866521508459, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002548693217206767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002576899891131344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002605106565055921 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002647416575942787 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553825035457, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002167251672034038, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.683471216170827 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489193460191508e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003784607662870729, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036332233563559, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.88072236404378 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.201876802759877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.002717933260754229 @@ -390,7 +390,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.77268774500753 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.77268774518876 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002717933260754229 @@ -400,20 +400,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002717933260754229, h = 0.0002820667392457703 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001885820271331692, h_cfl = 2.820667392457703e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001810387460478425, h_cfl = 1.410333696228852e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.418294710391211 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.489668406571682e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003160678668023024, h_cfl = 2.820667392457703e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003034251521302103, h_cfl = 1.410333696228852e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.75721132316242 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.216741548409017e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -422,7 +422,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7290852919884 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7290852921696 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 @@ -431,7 +431,7 @@ Using dense direct linear solver [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952868526e+00 1.731531529558496e+00 3.524580627356499e-11 2.592849255300678e-07 + 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out index f4c720a07a..76105e679b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out @@ -11,88 +11,88 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.0002666666666666667 @@ -101,37 +101,37 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674153956226, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967187797977, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164123207857 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469436431449e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449550912755, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391568876244, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023500218333 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360662349899e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634421513462e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014730989436e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.618934781454142e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.26243167642398e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -140,54 +140,54 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404364362730721, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957006845874, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.064153609642308e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534110004361672, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472745604187206, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359862723658343 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809673922718e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949309541252, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991337159602, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499487980115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176952124453e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682863348538355, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535548814596821, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550367096815337 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844413390305e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351612077246, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577547594155, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379604302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -200,20 +200,20 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794540378942, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522758763785, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871264606313 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654011537726e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859543384, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051616486, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021752694152 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780367e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.001266666666666667 @@ -222,20 +222,20 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868659677365, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391329027, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127174838516 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892963146e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133301555366, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967969493152, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487988559932 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555340877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -244,24 +244,24 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152476531, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191863774698, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.2751918637747 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462524817 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406948625086, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390670680083, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390670680086 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437386314593e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463112885e+00 1.731819882840752e+00 3.048206131950337e-11 1.686739636852508e-11 + 2.000000000000000e-03 1.224744463112885e+00 1.731819882840751e+00 3.048206131950337e-11 1.686806250233985e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -270,20 +270,20 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458424088719, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008712517, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733478541956 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614179993884e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571622288441, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188757396904, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314595661516 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025737e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.002266666666666667 @@ -292,20 +292,20 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250121127217, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880116282128, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300436057982 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964755177207e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410310847327, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898413434, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477119050378 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938743709458e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -314,24 +314,24 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854906908199, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060710631871, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060710631873 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086788760326 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620236539269, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755427077698, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755427077701 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477366838e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952787591e+00 1.731531270248313e+00 4.568923017700399e-11 2.525712972101246e-11 + 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out index c7fec00f02..954b87f2c9 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out @@ -12,96 +12,96 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484795600596831 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484795600868763 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002839677462856478 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002839677462944967 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -111,42 +111,42 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674215266165, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967246655518, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516414537051 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469364509253e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449541034653, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391559393267, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602349986125397 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360861173277e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634400131705e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014743878339e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.646426838510152e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.722149487020822e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.676008618859752 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1.676008618859751 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0005643456517840985 @@ -159,67 +159,67 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404330240967631, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957000873404, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.064449683586706e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290986831944231e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534113512840757, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472748972327127, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359870407597604 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809670049984e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0028489493154905, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134287088, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499501009595 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176895070787e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682859333259777, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535544959929386, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550359955212135 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844435520364e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351617048572, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577552366629, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153804885057 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952890957e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56853116193789 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 23.56853116211918 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007921301090223275 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007921301090276377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487210934049472e-12 + 1.000000000000000e-03 1.224744769293108e+00 1.731993073495728e+00 3.641287271705096e-11 8.487655023259322e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -228,28 +228,28 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794541412499, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522759755999, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871266260003 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654015963828e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638595017693, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051216985, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021752028316 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062644397192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76658769079079 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.7665876907908 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01234458166289366 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01234458166291139 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -259,28 +259,28 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868673761018, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433926810577, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127225539666 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182826571203e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133316212457, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967983563959, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487993836485 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555415092209e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 14.24595765940638 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 14.24595765949703 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004788932282498826 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004788932282534239 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -290,33 +290,33 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991518741408, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191857991752, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191857991754 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614628789052 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406942702114, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066499403, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390664994033 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697751e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322912588983 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.7032291261618 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376154766714745 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376154766725365 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463044450e+00 1.731819882840759e+00 9.891665264660787e-11 1.686029094116748e-11 + 2.000000000000000e-03 1.224744463044450e+00 1.731819882840758e+00 9.891665264660787e-11 1.686140116419210e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -325,28 +325,28 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458426380418, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240089325201, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733482208675 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614193273577e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571627097045, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188762013163, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314603355283 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433642426e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04725301387548 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04725301378485 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02184661245053742 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02184661245050203 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -356,28 +356,28 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250112576088, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880108073044, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300405273919 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964799442913e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410311448591, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938989906474, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477121214928 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938674544252e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.81568292207747 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.81568292207749 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009012485355207473 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009012485355207489 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -387,33 +387,33 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854910396215, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060713980366, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060713980368 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876031 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620234305492, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755424933272, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755424933275 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507476813511e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347805661338 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347805647741 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959596958504103 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0395959695845631 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952645809e+00 1.731531270248295e+00 1.874711497151793e-10 2.527533737861631e-11 + 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out index d418dad8d4..415ca425d6 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out @@ -13,107 +13,107 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484795600596831, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484795600868763, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99931301232761, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99931301271218, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004015866839014629 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004015866839143335 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.355316732970741e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.778821860355241e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.355316732970741e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484806428685115 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.778821860355241e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484806428957047 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518415627456097e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518415382958716e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -125,37 +125,37 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674238846908, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967269293031, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164153894606 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446933684687e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449541034653, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391559393267, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602349986125397 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360861173277e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634391907952e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014743878339e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034588e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.553311302995434e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -165,13 +165,13 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370234119443755, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007981043352652857 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007981043352652858 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.774836283552402e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.715118584856955e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.774836283552402e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676009569925 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.715118584856955e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676009569924999 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.704998826808452e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 @@ -186,80 +186,80 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404386294498222, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957000873404, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.063963430758315e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534107753002054, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472743442881971, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35985779294331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809665070755e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949316391902, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991343736226, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949950298376 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176886426292e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682865914687657, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353555127810015, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550371660986841 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844451011408e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351616407695, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577551751387, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380374519 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952890957e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56853116193524, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 23.56853116211653, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093641442174, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 33.33093641467812, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120221282537529 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120221282546144 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.829268876391666e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.799831347143072e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.829268876391666e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.5685496216454 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.799831347143072e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854962182669 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.271877873619188e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.271877795991267e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487210934049472e-12 + 1.000000000000000e-03 1.224744769306441e+00 1.731993073495728e+00 2.307976032511760e-11 8.487655023259322e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -268,39 +268,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794542140617, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522760454992, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871267424992 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654020389957e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594619633, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613050834847, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175139142 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780357e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76658771011432, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76658771011433, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99580698182362, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99580698182364, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01745737857060591 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01745737857152503 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.044483986313881e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.74083550528487e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.044483986313881e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76662068822849 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.74083550528487e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.7666206882285 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144290571601441e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144284255622165e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -312,39 +312,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868685585981, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433938162542, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127268109535 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182771244593e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133326746994, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967993677114, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487997628918 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555311354814e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24595765886783, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24595765877719, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14682653016375, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14682653003556, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006772498770722619 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006772498771035941 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.42491424547357e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.596828472046789e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.42491424547357e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24596845308144 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.596828472046789e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.2459684529908 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511949813658031e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511925909452149e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -356,46 +356,46 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991513950708, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519185339268, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191853392681 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614629674277 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406938933564, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390661376221, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390661376224 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387144485e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322912330754, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322912348885, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.9894655297539, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946553001032, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360218033634896 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360218033643214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.152035138603228e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.130462187373386e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.152035138603228e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328448815538 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.130462187373386e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328448833669 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178327890492011e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178327902961379e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463099111e+00 1.731819882840765e+00 4.425571020760799e-11 1.685385164762465e-11 + 2.000000000000000e-03 1.224744463099111e+00 1.731819882840764e+00 4.425571020760799e-11 1.685473982604435e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -404,39 +404,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458432453699, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240095155551, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733491925924 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614171140701e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571629655574, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188764469351, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460744893 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433642419e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04725306864341, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04725306855279, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99070748479045, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99070748466229, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03089427150794729 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0308942715079056 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.181096200144441e-18 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.425501543806094e-18 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.181096200144441e-18 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04730818679262 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.425501543806094e-18 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.047308186702 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960152942248941e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960152883263926e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -448,39 +448,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250125232029, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880120222747, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300450835306 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964733044334e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103083027819, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938959706707, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477109890015 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330939020370118e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81568291912277, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81568291912279, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92310246851997, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92310246852, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01274532455113983 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01274532455113927 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.285389427812277e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.274290566911092e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.285389427812277e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81570355371161 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.274290566911092e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81570355371163 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655086190669431e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655086194489704e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -492,46 +492,46 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854905095393, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060708891577, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060708891579 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086789645609 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620246982501, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755437103201, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755437103204 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477643487e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347805551639, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347805538041, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435447803702, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435447784472, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599240898342154 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599240898277301 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.717421103006767e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.724618265009032e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.717421103006767e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348728123731 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.724618265009032e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348728110133 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291179996932946e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291179994976966e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952771547e+00 1.731531270248329e+00 6.173306310586213e-11 2.524158659866771e-11 + 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out index 91d5efc4cf..462eb88511 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out @@ -13,100 +13,100 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480918398010767 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480918398282574 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003886272468077529 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00388627246820195 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -116,37 +116,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674194043493, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967226281753, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164137698822 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469389405397e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954060517, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391558980963, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602349984572878 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360869817772e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634407533082e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014744438728e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.970596152824813e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.587078939791771e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -168,71 +168,71 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404386289653829, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957000613731, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.063963430758315e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290933479203338e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153410775187103, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472743441796188, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359857790466248 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809670603232e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894931567078, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991343043949, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499501404429 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176893341888e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682865918977238, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535551282218148, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550371668616321 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844435520364e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351617533803, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755283245, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153805748092 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382952199393e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55774369269417 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.55774369287537 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01080099623073331 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01080099623081625 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.659073044559591e-12 + 1.000000000000000e-03 1.224744769306223e+00 1.731993073507874e+00 2.329714199333921e-11 3.658628955349741e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -241,27 +241,27 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794542729744, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522761020554, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871268367595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654002685442e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594888119, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051092595, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751820999 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062644397192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74977069074764 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74977069074765 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 @@ -276,32 +276,32 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868658914024, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433912557463, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127172090488 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892949201e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133319735241, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967986945831, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487995104687 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555380462016e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.23943664292217 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.23943664301278 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006528828278646521 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006528828278687991 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -311,37 +311,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152469835, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191863710416, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191863710418 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614626991023 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406941531037, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390663869795, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390663869798 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387410975e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.6708677907402 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.67086779101204 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03240190722051899 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03240190722064065 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463096872e+00 1.731819882889337e+00 4.649436391446216e-11 3.171818363512102e-11 + 2.000000000000000e-03 1.224744463096872e+00 1.731819882889336e+00 4.649436391446216e-11 3.171707341209640e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -350,27 +350,27 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458421340622, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240084486997, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733474145002 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614202090989e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571627119462, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188762034683, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460339115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435012534e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01750170982633 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01750170982636 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -380,27 +380,27 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250108435563, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688010409814, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300390368028 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796482152001e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103108403036, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938984066914, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477119025093 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938743503804e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80340866628079 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80340866637142 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -410,32 +410,32 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854911908458, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071543212, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060715432122 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086790420591 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620236699889, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755427231894, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755427231897 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507477049346e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7808468031958 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7808468018366 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952790514e+00 1.731531402623384e+00 4.276623499777088e-11 1.323498133309897e-07 + 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out index 8a5caf3396..fd3bc97c21 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out @@ -12,96 +12,96 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484739570785543 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 8.484739571057476 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002872021134577523 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002872021134666013 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -111,37 +111,37 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674146882004, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967181006723, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164120650628 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469444730164e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449552201203, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391570113155, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602350026490855 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360636416414e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634423980587e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014729308275e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.483386286293241e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.992290581650285e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -159,54 +159,54 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404323881355509, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957007624892, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290959817898209e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534114165041092, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472749598439449, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359871835985131 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967336947e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949309721532, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991337332671, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499488374947 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176950395554e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682858593170752, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535544249443922, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550358638884499 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844408964292e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351610108846, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577545704493, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153792542011 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382965339118e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -228,28 +228,28 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794539263066, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522757692544, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871262820911 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654020389983e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859601897, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613052178211, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175363036 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062645780367e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76651861107677 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 36.76651861098613 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01237684727413916 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01237684727410377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -259,20 +259,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868660048197, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433913646269, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127176173512 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182892963146e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133308235899, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967975906463, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487990964924 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555484250507e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -290,33 +290,33 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991524318626, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186334588, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191863345882 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614627903846 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406945247113, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390667437229, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390667437232 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697758e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322900199585 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 70.70322900217715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376157169292097 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376157169297406 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683408967778632e-11 + 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683453376699617e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -325,28 +325,28 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458421962382, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240085083887, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733475139817 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614197700071e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571624478249, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188759499119, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314599165209 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025701e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04718221193126 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 65.04718221184059 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02187885806556827 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02187885806555057 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -356,20 +356,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250126014113, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880120973548, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300453650809 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964733044311e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103127264459, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593900217388, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477125815205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938536213781e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -377,7 +377,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 26.8157053695451 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009003158261554924 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009003158261572643 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -387,33 +387,33 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854904993055, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060708793333, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060708793335 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086786989621 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162022823251, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755419103209, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755419103213 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478196792e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347804246883 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 117.8347804232378 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959595686370691 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959595686321129 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952908896e+00 1.731531270248400e+00 7.561573589498494e-11 2.517031028048677e-11 + 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out index 2b815a000b..187bf85794 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out @@ -13,107 +13,107 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484739570785543, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 8.484739571057476, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99923377420859, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 11.99923377459316, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004061628839918641 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.004061628840048816 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.261188224676155e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.083520046626938e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.261188224676155e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484739092489631 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.083520046626938e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.484739092761568 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518443352071625e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.518443005346105e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -125,37 +125,37 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674137449705, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967171951717, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164117240989 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469455795117e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449549194824, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391567227031, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602350015623231 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360696927877e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634427270088e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014733230986e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034592e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.059825855331695e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -163,18 +163,18 @@ Using GMRES iterative linear solver [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.676051713894338, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370295065028044, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2.370295065028043, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.000784909752142059 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.0007849097521420567 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.830518996709413e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.760577365668639e-16 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.830518996709413e-16 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676055870103954 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.760577365668639e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1.676055870103953 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.705857208966444e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.705857285371877e-10, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -186,54 +186,54 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404342563461688, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957005807184, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06434270796446e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290969948165467e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534112244459035, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472747754680673, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359867629707846 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809675029214e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949308639851, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991336294257, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499486005951 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176960768948e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682860787673002, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535546356166082, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.5503625420419 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844413390305e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351612718122, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005370577548209397, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153797182887 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -246,9 +246,9 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01120227586871812 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.102299192199702e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.018784119370388e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.102299192199702e-15 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.018784119370388e-15 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 23.56854949834894 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -268,39 +268,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002681794538508985, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522756968625, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871261614381 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654029242241e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594544749, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613050762959, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751271607 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062647163532e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76651862332542, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 36.76651862323477, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99570927834978, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 51.99570927822159, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01750303644230911 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01750303644226596 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.148830835061795e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.533910544486994e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.148830835061795e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76654034473584 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.533910544486994e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.76654034464521 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144297537687311e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.144297488406733e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -312,39 +312,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586866744231, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433920744618, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912720279232 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718285976718e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133298303013, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967966370892, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487987389085 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555587987901e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.2459813244254, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 14.24598132451604, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14685999831622, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 20.14685999844442, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006759308947646806 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.006759308947689816 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.729049992208015e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.622139432217848e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.729049992208015e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24599536081284 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.622139432217848e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 14.24599536090348 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511848546542516e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.511849046876151e-08, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -356,46 +356,46 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991520997443, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191860157545, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191860157547 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261463144475 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406949113624, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390671149078, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390671149082 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697758e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322899932275, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 70.70322899950403, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946535441294, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 99.98946535466932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360221435305671 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03360221435314287 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.396025428056713e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.84604680634702e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.396025428056713e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328434722259 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.84604680634702e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.70328434740387 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178331477975891e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.178331487927094e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463274739e+00 1.731819882840792e+00 1.313724684592898e-10 1.682742833963857e-11 + 2.000000000000000e-03 1.224744463274739e+00 1.731819882840791e+00 1.313724684592898e-10 1.682787242884842e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -404,39 +404,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458425788795, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240088757243, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733481262078 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614184420337e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571621766854, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875689618, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.135314594826978 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309435025693e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.04718225429593, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 65.0471822542053, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99060733817983, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 91.99060733805163, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03093990190491139 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.03093990190324049 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.983157730959663e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.691739216530515e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.983157730959663e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04722612054304 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.691739216530515e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.04722612045241 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.96013596045361e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.960147406422026e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -448,39 +448,39 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250143306553, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688013757429, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300515903591 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964644512875e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103120964033, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938996125472, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477123547052 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938605378931e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.815705366597, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 26.81570536659701, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92313421404247, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 37.92313421404248, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01273212495283929 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01273212495283927 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 5.431424283260585e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.001484200761597e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 5.431424283260585e-15 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.001484200761597e-15 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.81572924528313 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655080176519261e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.655080175202964e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -492,46 +492,46 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854897811197, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060701898749, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060701898751 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086786989607 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620230709533, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755421481151, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755421481155 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478473447e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.8347804136278, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 117.834780412268, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.643544580208, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 166.6435445782849, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599239103918983 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.05599239103559429 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.062550360780627e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.417568230519699e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.062550360780627e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348726538357 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.417568230519699e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.8348726524759 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.291178169077933e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 3.29118023041469e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743953034659e+00 1.731531270248434e+00 2.013786915000537e-10 2.513611541132832e-11 + 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out index c830389d39..9b6051197e 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out @@ -13,100 +13,100 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.544516579197126e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.766300713710683e-06, h_cfl = 2.059355438929501e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.695648685162256e-06, h_cfl = 1.029677719464751e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472583 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.861712124677889e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.602648017468102e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.059355438929501e-08, h = 1.695648685162256e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.059355438929501e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.68417896970423e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.292330068260987e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.901811588832878e-05, h_cfl = 1.695648685162256e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.785739125279562e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.270050270926313e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140710302713026e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.716242239551551e-06, h = 2.785739125279562e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716242239551551e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.564493786594936e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.843067699122892e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.260928567914827e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008040108168818409, h_cfl = 2.785739125279562e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001027086711898856, h_cfl = 2.785739125279562e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0005571478250559124, h_cfl = 1.392869562639781e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.365757457818316e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.590694904431531e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.957363349234717e-05, h = 0.0005571478250559124 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.957363349234717e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002524327635147121 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003081475460203033 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003638623285258946 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004474345022842815 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001732294472367856, h_cfl = 5.571478250559124e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001663002693473142, h_cfl = 2.785739125279562e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.984850014098595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.787223456299231e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003007609719581897, h_cfl = 5.571478250559124e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002887305330798621, h_cfl = 2.785739125279562e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.182296692101178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.379912779516088e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0005867214585482596, h = 1.327854145174034e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0005867214585482596 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005920328751289558 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005933607292741297 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0005946885834193038 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005966803646370648 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.327854145174034e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009815965945570856, h_cfl = 1.327854145174034e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002655708290348068, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.221308228319648e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.455099531550005e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480683165445265 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 8.480683165717068 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004053988672151497 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004053988672281447 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -116,37 +116,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001062283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174034 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001593424974208841 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001991781217761051 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674111510887, h_cfl = 2.655708290348068e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008272967147050451, h_cfl = 1.327854145174034e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.115164107864483 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.954469486223738e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001826449545758962, h_cfl = 2.655708290348068e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001753391563928603, h_cfl = 1.327854145174034e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.602350003203088 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.107360766083835e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002655708290348068, h = 1.095837631859871e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002655708290348068 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002660091640875508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002661187478507367 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002662283316139227 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002663927072587017 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.300634436316217e-05, h_cfl = 1.095837631859871e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.582014737714082e-05, h_cfl = 1.095837631859871e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.191675263719742e-05, h_cfl = 5.479188159299354e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.186709029034592e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.093593492175645e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -168,54 +168,54 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.766701054878966e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.095837631859871e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.315005158231845e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.643756447789806e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0005404323877531033, h_cfl = 2.191675263719742e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0006404957003729802, h_cfl = 2.191675263719742e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004383350527439483, h_cfl = 1.095837631859871e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.290959817898209e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.191675263719742e-05, h = 0.0004383350527439483 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.191675263719742e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001972507737347767 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002410842790091716 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002849177842835664 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003506680421951587 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001534114165267298, h_cfl = 4.383350527439483e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001472749598656606, h_cfl = 2.191675263719742e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.359871836480545 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.450809672262975e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002848949310082093, h_cfl = 4.383350527439483e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002734991337678809, h_cfl = 2.191675263719742e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.239499489164614 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.282176946937756e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.0004602518053811457, h = 0.0005397481946188539 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004602518053811457 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006761510832286872 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007301259026905727 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0007841007221524581 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008650629513452862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682858591084714, h_cfl = 5.397481946188539e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003535544247441325, h_cfl = 2.698740973094269e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.550358635174256 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.335844417816317e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005594351611692719, h_cfl = 5.397481946188539e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754722501, h_cfl = 2.698740973094269e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.950153795359098 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.219382963264425e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -241,32 +241,32 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453937895, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522757803792, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.290871263006324 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.094654024816112e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004500638594937574, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004320613051140071, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751900128 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.870062647163532e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74898235634708 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 36.74898235625648 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01755499643145954 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0175549964314153 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -276,20 +276,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0012 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002235868674431794, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002146433927454522, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.049127227954459 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987182826556093e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003754133301755258, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003603967969685047, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.51487988631893 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555553353365e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -311,37 +311,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369991518503224, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275191857763095, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275191857763097 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932614629644375 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003975406947942839, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003816390670025125, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.816390670025128 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387410119e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.66951636300151 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 70.66951636336393 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0337519319761958 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03375193197636171 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463272502e+00 1.731819882893496e+00 1.291351470200652e-10 3.587685704076193e-11 + 2.000000000000000e-03 1.224744463272502e+00 1.731819882893495e+00 1.291351470200652e-10 3.587596886234223e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -350,27 +350,27 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.0005999999999999993 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002449999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003405458427581809, h_cfl = 5.999999999999993e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240090478537, h_cfl = 2.999999999999997e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733484130901 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.096614184381587e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005709571623412231, h_cfl = 5.999999999999993e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005481188758475741, h_cfl = 2.999999999999997e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459745958 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.882309433628079e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01617199533266 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01617199524209 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -380,27 +380,27 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.0002666666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002106666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002133333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0022 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002059250125619163, h_cfl = 2.666666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001976880120594397, h_cfl = 1.333333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.413300452228991 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.987964732983807e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003454103095626018, h_cfl = 2.666666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003315938971800977, h_cfl = 1.333333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.43477114425367 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938881816559e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80292351487524 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80292351487525 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success @@ -410,32 +410,32 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 16, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002369854905105276, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002275060708901065, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.275060708901067 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934086787755202 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003971620241460578, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003812755431802154, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.812755431802158 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507478152494e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7785945816081 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7785945802489 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743953054848e+00 1.731531408143622e+00 2.215676531136523e-10 1.378700513754438e-07 + 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out index b28e0097f5..5208f17bff 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out @@ -12,88 +12,88 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.864518129765004e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.580647662206255e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.029677719464751e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.287097149330938e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.47191726142557e-06, h_cfl = 1.716129532441251e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.413040570968547e-06, h_cfl = 8.580647662206255e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.33880626472582 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.681308618402001e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.190755053532049e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.716129532441251e-08, h = 1.413040570968547e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.716129532441251e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.236815808086858e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.823775237118312e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.236815808086858e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.649856379055404e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.430201866292959e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.076941723550822e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.430201866292959e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.418176324027398e-05, h_cfl = 1.413040570968547e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.321449271066302e-05, h_cfl = 7.065202854842734e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.649460766305993e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.148169834022209e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.430201866292959e-06, h = 2.321449271066302e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.430201866292959e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.303744822162447e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.071599895055817e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.303744822162447e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.535889749269077e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.464469457695598e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.884107139929023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.464469457695598e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007714727828648842, h_cfl = 2.321449271066302e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008559055932490469, h_cfl = 2.321449271066302e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0004642898542132603, h_cfl = 1.160724635533151e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.140805973034775e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.142628945702048e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.464469457695598e-05, h = 0.0004642898542132603 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.464469457695598e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002567896216835862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0002103606362622601 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0002567896216835862 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0003032186071049122 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0004889345487902163 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003728620852369013 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004889345487902163 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001579461103257322, h_cfl = 4.642898542132604e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001516282659127029, h_cfl = 2.321449271066302e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.265810453033421 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.826224996633818e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002886228299148086, h_cfl = 4.642898542132604e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002770779167182163, h_cfl = 2.321449271066302e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.967778839098802 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.650159831488266e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.0004889345487902163, h = 1.106545120978371e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0004889345487902163 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004944672743951082 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004933607292741298 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004944672743951082 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0004955738195160865 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0004972336371975541 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0009627071870500957, h_cfl = 1.106545120978371e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0007772494586761386, h_cfl = 1.106545120978371e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0002213090241956742, h_cfl = 5.532725604891855e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.889886968307349e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.147633771228545e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -104,42 +104,42 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0001106545120978371 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.852360967826967e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001106545120978371 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0001327854145174045 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0001659817681467556 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008472366368884156, h_cfl = 2.213090241956742e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000813347171412879, h_cfl = 1.106545120978371e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.675164961613785 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.425094080723045e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.001795768252456559, h_cfl = 2.213090241956742e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.001723937522358296, h_cfl = 1.106545120978371e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.789729897476062 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.426606245722151e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0002213090241956742, h = 0.0007786909758043252 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0002213090241956742 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006106545120978368 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0005327854145174043 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006106545120978368 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006885236096782693 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0009999999999999994 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0008053272560489181 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009999999999999994 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003338723049155477, h_cfl = 7.786909758043252e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003205174127189258, h_cfl = 3.893454879021626e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.11610539582608 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0001445442462304924 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005019848235636976, h_cfl = 7.786909758043252e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004819054306211497, h_cfl = 3.893454879021626e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.188660785793493 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.281335509330192e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 1.000000000000000e-03 1.224744769278491e+00 1.731993073504249e+00 5.103006905926577e-11 3.375077994860476e-14 + 1.000000000000000e-03 1.224744769278491e+00 1.731993073504248e+00 5.103006905926577e-11 3.286260152890463e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success @@ -149,20 +149,20 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.001, h = 0.0004999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00125 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003123484376240414, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002998545001190797, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.9970900023816 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.456665619756245e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005242503537399051, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.005032803395903089, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.06560679180619 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.012873279361316e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -173,25 +173,25 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0015 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002729592859383356, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002620409145008021, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.620409145008024 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003932628225837462 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004579668276439635, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00439648154538205, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.396481545382054 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446484263437875e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 2.000000000000000e-03 1.224744463041408e+00 1.731819882857753e+00 1.019582196448710e-10 1.338928967697939e-13 + 2.000000000000000e-03 1.224744463041408e+00 1.731819882857751e+00 1.019582196448710e-10 1.321165399303936e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success @@ -201,20 +201,20 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.002, h = 0.0004999999999999996 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00225 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003004917511165991, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002884720810719351, h_cfl = 2.499999999999998e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.769441621438706 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.457617220747888e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.005038269914362371, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004836739117787876, h_cfl = 2.499999999999998e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.673478235575761 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.072526561087752e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -225,25 +225,25 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.002, h = 0.0009999999999999992 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0025 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002749999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002639908311389489, h_cfl = 9.999999999999992e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00253431197893391, h_cfl = 4.999999999999996e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.534311978933912 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0003934099230043387 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.004425112060590719, h_cfl = 9.999999999999992e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.004248107578167091, h_cfl = 4.999999999999996e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.248107578167095 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455550664643448e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success - 3.000000000000000e-03 1.224743952680496e+00 1.731531270273762e+00 1.527842297122106e-10 1.914024494453770e-13 + 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ Current time = 0.003 Steps = 3 diff --git a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out index dc0292704a..99ac6b30d5 100644 --- a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out +++ b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out @@ -9,13 +9,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00025 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -23,13 +23,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0005, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00075 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -39,13 +39,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -53,13 +53,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.00025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0004375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -67,13 +67,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0006875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -81,13 +81,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0009375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -104,13 +104,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.001, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -118,13 +118,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.0015, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00175 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -134,13 +134,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.001, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0011875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -148,13 +148,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.00125, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00125 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0014375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -162,13 +162,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.0015, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0015 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0016875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -176,13 +176,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00175, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00175 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.001875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0019375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -199,13 +199,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.002, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00225 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -213,13 +213,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.0025, h = 0.0005 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00275 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -229,13 +229,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.002, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002125 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0021875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -243,13 +243,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00225, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00225 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0024375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -257,13 +257,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002687500000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -271,13 +271,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002750000000000001, h = 0.0002499999999999991 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.002750000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0029375 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success From 34b2666611b77b238fb8d2318ed262fa36f10143 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 15:08:05 -0800 Subject: [PATCH 42/67] More out file updates for sanitizer_build_and_test --- .../ark_analytic_complex_f2003.out | 26 +++---- .../F2003_custom/ark_brusselator1D_f2003.out | 26 +++---- .../F2003_serial/ark_diurnal_kry_bp_f2003.out | 72 +++++++++---------- .../F2003_serial/ark_roberts_dns_f2003.out | 52 +++++++------- .../test_logging_arkode_arkstep_1_0.out | 10 +-- .../test_logging_arkode_arkstep_1_1_0.out | 10 +-- .../test_logging_arkode_arkstep_1_1_1.out | 10 +-- 7 files changed, 103 insertions(+), 103 deletions(-) diff --git a/examples/arkode/F2003_custom/ark_analytic_complex_f2003.out b/examples/arkode/F2003_custom/ark_analytic_complex_f2003.out index a783d31eef..a6ffb71798 100644 --- a/examples/arkode/F2003_custom/ark_analytic_complex_f2003.out +++ b/examples/arkode/F2003_custom/ark_analytic_complex_f2003.out @@ -6,21 +6,21 @@ t real(u) imag(u) error ------------------------------------------- 0.0 2.00E+00 0.00E+00 0.0E+00 - 1.0 -1.66E+00 -1.08E+00 8.7E-05 - 2.0 8.00E-01 1.79E+00 1.7E-04 - 3.0 2.99E-01 -1.92E+00 2.5E-04 - 4.0 -1.28E+00 1.43E+00 3.3E-04 - 5.0 1.84E+00 -5.00E-01 4.1E-04 - 6.0 -1.79E+00 -5.74E-01 4.9E-04 - 7.0 1.18E+00 1.44E+00 5.7E-04 - 8.0 -2.04E-01 -1.83E+00 6.4E-04 - 9.0 -8.18E-01 1.63E+00 7.2E-04 - 10.0 1.56E+00 -9.17E-01 7.9E-04 + 1.0 -1.66E+00 -1.08E+00 2.6E-04 + 2.0 8.00E-01 1.79E+00 5.1E-04 + 3.0 2.99E-01 -1.92E+00 7.5E-04 + 4.0 -1.28E+00 1.43E+00 9.9E-04 + 5.0 1.84E+00 -5.00E-01 1.2E-03 + 6.0 -1.79E+00 -5.73E-01 1.4E-03 + 7.0 1.18E+00 1.44E+00 1.7E-03 + 8.0 -2.06E-01 -1.83E+00 1.9E-03 + 9.0 -8.17E-01 1.63E+00 2.1E-03 + 10.0 1.56E+00 -9.18E-01 2.3E-03 ------------------------------------------- Final Solver Statistics: - Internal solver steps = 664, (attempted = 664) - Total RHS evals = 3323 + Internal solver steps = 508, (attempted = 508) + Total RHS evals = 2035 Total number of error test failures = 0 - Error: max = 7.87E-04, rms = 4.99E-04 + Error: max = 2.31E-03, rms = 1.47E-03 diff --git a/examples/arkode/F2003_custom/ark_brusselator1D_f2003.out b/examples/arkode/F2003_custom/ark_brusselator1D_f2003.out index a0a5d2c6e9..a0185c4c1e 100644 --- a/examples/arkode/F2003_custom/ark_brusselator1D_f2003.out +++ b/examples/arkode/F2003_custom/ark_brusselator1D_f2003.out @@ -6,14 +6,14 @@ reltol = 1.0E-06, abstol = 1.0E-10 t ||u||_rms ||v||_rms ||w||_rms ---------------------------------------------- - 0.100000 0.675713 3.378369 1.999986 + 0.100000 0.675713 3.378369 1.999988 0.200000 0.688538 3.357681 1.999986 0.300000 0.702687 3.334519 1.999986 0.400000 0.718330 3.308631 1.999986 0.500000 0.735663 3.279739 1.999985 0.600000 0.754906 3.247538 1.999985 0.700000 0.776300 3.211707 1.999985 - 0.800000 0.800104 3.171913 1.999984 + 0.800000 0.800105 3.171912 1.999984 0.900000 0.826576 3.127830 1.999984 1.000000 0.855944 3.079177 1.999983 1.100000 0.888360 3.025758 1.999983 @@ -26,7 +26,7 @@ 1.800000 1.153639 2.554796 1.999978 1.900000 1.177971 2.488669 1.999977 2.000000 1.193022 2.427623 1.999977 - 2.100000 1.198029 2.372667 1.999977 + 2.100000 1.198029 2.372666 1.999977 2.200000 1.193082 2.324390 1.999977 2.300000 1.178953 2.283041 1.999977 2.400000 1.156842 2.248628 1.999978 @@ -72,13 +72,13 @@ 6.400000 0.329332 3.142342 1.999994 6.500000 0.328624 3.171259 1.999994 6.600000 0.328198 3.199888 1.999994 - 6.700000 0.328025 3.228231 1.999994 + 6.700000 0.328026 3.228231 1.999994 6.800000 0.328083 3.256287 1.999994 6.900000 0.328348 3.284055 1.999994 7.000000 0.328803 3.311535 1.999994 7.100000 0.329431 3.338724 1.999994 7.200000 0.330219 3.365622 1.999994 - 7.300000 0.331153 3.392225 1.999994 + 7.300000 0.331154 3.392225 1.999994 7.400000 0.332225 3.418531 1.999994 7.500000 0.333423 3.444537 1.999994 7.600000 0.334742 3.470239 1.999994 @@ -97,7 +97,7 @@ 8.900000 0.361234 3.773926 1.999993 9.000000 0.363983 3.794643 1.999993 9.100000 0.366845 3.814922 1.999993 - 9.200000 0.369827 3.834747 1.999993 + 9.200000 0.369827 3.834748 1.999993 9.300000 0.372935 3.854103 1.999993 9.400000 0.376175 3.872968 1.999993 9.500000 0.379555 3.891323 1.999993 @@ -109,12 +109,12 @@ ---------------------------------------------- Final Solver Statistics: - Internal solver steps = 407, (attempted = 504) - Total RHS evals: Fe = 2930, Fi = 8490 - Total linear solver setups = 269 + Internal solver steps = 305, (attempted = 317) + Total RHS evals: Fe = 2210, Fi = 6702 + Total linear solver setups = 51 Total RHS evals for setting up the linear system = 0 - Total number of Jacobian evaluations = 30 - Total number of Newton iterations = 5560 - Total number of nonlinear solver convergence failures = 27 - Total number of error test failures = 97 + Total number of Jacobian evaluations = 11 + Total number of Newton iterations = 4492 + Total number of nonlinear solver convergence failures = 6 + Total number of error test failures = 12 diff --git a/examples/arkode/F2003_serial/ark_diurnal_kry_bp_f2003.out b/examples/arkode/F2003_serial/ark_diurnal_kry_bp_f2003.out index 90517794f0..12e0af2add 100644 --- a/examples/arkode/F2003_serial/ark_diurnal_kry_bp_f2003.out +++ b/examples/arkode/F2003_serial/ark_diurnal_kry_bp_f2003.out @@ -4,47 +4,47 @@ t c1 (bottom left middle top right) | lnst lnst_att lh t c2 (bottom left middle top right) | lnst lnst_att lh ---------------------------------------------------------------------------------------- - 7.200000E+03 1.839613E+04 3.009247E+04 1.582872E+04 990 994 3.027601E+00 - 4.440310E+11 7.263637E+11 3.820591E+11 - 1.440000E+04 1.149716E+07 1.249098E+07 1.329954E+07 2780 2784 1.022085E+01 - 4.473684E+11 4.862283E+11 5.178450E+11 - 2.160000E+04 2.525270E+07 7.837587E+07 3.018990E+07 3325 3329 1.467514E+01 - 2.824256E+11 9.233209E+11 3.419869E+11 - 2.880000E+04 1.189287E+07 2.395791E+07 1.042605E+07 3816 3820 1.467514E+01 - 4.627840E+11 9.345089E+11 4.054359E+11 - 3.600000E+04 2.342949E+04 2.291472E+04 2.522325E+04 4629 4633 4.333728E+00 - 5.651673E+11 5.527495E+11 6.084385E+11 - 4.320000E+04 -3.718382E-05 -1.465487E-05 2.611385E-05 5635 5639 6.272609E+02 - 3.689222E+11 8.238330E+11 4.623703E+11 - 5.040000E+04 5.522194E-07 -9.160075E-06 4.014494E-05 5647 5651 6.272609E+02 - 3.862509E+11 1.017897E+12 3.536890E+11 - 5.760000E+04 -1.084359E-05 -3.724411E-06 1.288549E-06 5658 5662 6.272609E+02 - 5.832933E+11 6.187928E+11 5.788981E+11 - 6.480000E+04 2.972416E-05 1.471335E-05 -3.876329E-05 5670 5674 6.272609E+02 - 4.274400E+11 6.788806E+11 5.386844E+11 - 7.200000E+04 -2.141097E-16 6.301814E-17 1.652460E-15 5681 5685 6.272609E+02 - 3.453624E+11 1.030182E+12 3.448304E+11 - 7.920000E+04 2.795850E-14 6.145328E-15 1.996900E-14 5693 5697 6.272609E+02 - 5.450919E+11 7.330919E+11 5.109883E+11 - 8.640000E+04 4.560340E-15 2.221125E-15 1.793820E-14 5704 5708 6.272609E+02 - 5.090704E+11 5.755864E+11 5.984224E+11 + 7.200000E+03 1.839619E+04 3.009272E+04 1.582877E+04 86 91 6.752444E+01 + 4.440299E+11 7.263659E+11 3.820580E+11 + 1.440000E+04 1.149707E+07 1.249112E+07 1.329949E+07 139 144 3.506674E+02 + 4.473696E+11 4.862278E+11 5.178449E+11 + 2.160000E+04 2.525272E+07 7.837572E+07 3.019003E+07 160 165 6.014308E+02 + 2.824257E+11 9.233188E+11 3.419884E+11 + 2.880000E+04 1.189233E+07 2.395947E+07 1.042557E+07 172 177 5.486097E+02 + 4.627831E+11 9.345115E+11 4.054342E+11 + 3.600000E+04 2.342813E+04 2.291321E+04 2.522227E+04 196 203 1.255405E+02 + 5.651678E+11 5.527500E+11 6.084388E+11 + 4.320000E+04 -7.106727E-03 1.251948E-03 -7.653166E-03 246 255 6.899909E+02 + 3.689239E+11 8.238298E+11 4.623715E+11 + 5.040000E+04 8.210886E-03 -7.443326E-04 3.507749E-03 252 262 1.250678E+03 + 3.862455E+11 1.017898E+12 3.536908E+11 + 5.760000E+04 -3.735418E-04 6.688840E-05 -1.207042E-03 258 268 1.250678E+03 + 5.832932E+11 6.188071E+11 5.788875E+11 + 6.480000E+04 -2.109230E-02 3.989931E-03 -1.721876E-02 263 273 1.250678E+03 + 4.274512E+11 6.788608E+11 5.386994E+11 + 7.200000E+04 2.159489E-02 -3.982481E-05 -1.699533E-02 269 279 1.250678E+03 + 3.453591E+11 1.030173E+12 3.448304E+11 + 7.920000E+04 -5.477292E-13 -2.062171E-05 1.722069E-06 275 285 1.250678E+03 + 5.450789E+11 7.331214E+11 5.109770E+11 + 8.640000E+04 4.204547E-15 -1.314636E-06 -1.148306E-07 281 291 1.250678E+03 + 5.090882E+11 5.755705E+11 5.984257E+11 ---------------------------------------------------------------------------------------- General Solver Stats: - Total internal steps taken = 5704 - Total internal steps attempts = 5708 + Total internal steps taken = 281 + Total internal steps attempts = 291 Total rhs exp function call = 0 - Total rhs imp function call = 59357 - Total num preconditioner evals = 96 - Total num preconditioner solves = 89028 - Num error test failures = 4 - Num nonlinear solver iters = 30814 - Num linear solver iters = 59966 - Avg Krylov subspace dim = 1.946063E+00 + Total rhs imp function call = 3344 + Total num preconditioner evals = 6 + Total num preconditioner solves = 7864 + Num error test failures = 10 + Num nonlinear solver iters = 1886 + Num linear solver iters = 6061 + Avg Krylov subspace dim = 3.213680E+00 Num nonlinear solver fails = 0 - Num linear solver fails = 0 - main solver real/int workspace sizes = 3702 145 + Num linear solver fails = 340 + main solver real/int workspace sizes = 3918 149 linear solver real/int workspace sizes = 2455 42 ARKBandPre real/int workspace sizes = 2800 622 - ARKBandPre number of f evaluations = 480 + ARKBandPre number of f evaluations = 30 diff --git a/examples/arkode/F2003_serial/ark_roberts_dns_f2003.out b/examples/arkode/F2003_serial/ark_roberts_dns_f2003.out index 94280bc886..2a72f03d77 100644 --- a/examples/arkode/F2003_serial/ark_roberts_dns_f2003.out +++ b/examples/arkode/F2003_serial/ark_roberts_dns_f2003.out @@ -10,40 +10,40 @@ Initial conditions y0 = ( 1.00 0.00 0.00 ) ---------------------------------------------------------------------- t y1 y2 y3 | nst h ---------------------------------------------------------------------- - 2.6402E-01 9.8997E-01 3.4706E-05 1.0000E-02 | 31 4.4841E-02 + 2.6402E-01 9.8997E-01 3.4706E-05 1.0000E-02 | 20 2.3443E-01 rootsfound[] = 0 1 - 4.0000E-01 9.8517E-01 3.3864E-05 1.4794E-02 | 34 4.4841E-02 - 4.0000E+00 9.0552E-01 2.2405E-05 9.4459E-02 | 87 1.0144E-01 - 4.0000E+01 7.1583E-01 9.1856E-06 2.8416E-01 | 217 7.7919E-01 - 4.0000E+02 4.5052E-01 3.2229E-06 5.4948E-01 | 356 6.0414E+00 - 4.0000E+03 1.8320E-01 8.9423E-07 8.1680E-01 | 445 1.1101E+02 - 4.0000E+04 3.8983E-02 1.6218E-07 9.6102E-01 | 526 1.5172E+03 - 4.0000E+05 4.9383E-03 1.9849E-08 9.9506E-01 | 622 3.2703E+04 - 4.0000E+06 5.1679E-04 2.0689E-09 9.9948E-01 | 668 6.7110E+05 - 2.0796E+07 1.0000E-04 3.9998E-10 9.9990E-01 | 681 2.5236E+06 + 4.0000E-01 9.8517E-01 3.3864E-05 1.4794E-02 | 20 2.3443E-01 + 4.0000E+00 9.0551E-01 2.2405E-05 9.4463E-02 | 25 1.4457E+00 + 4.0000E+01 7.1583E-01 9.1846E-06 2.8416E-01 | 34 9.1914E+00 + 4.0000E+02 4.5052E-01 3.2231E-06 5.4948E-01 | 43 9.9674E+01 + 4.0000E+03 1.8320E-01 8.9423E-07 8.1680E-01 | 53 1.3774E+03 + 4.0000E+04 3.8984E-02 1.6215E-07 9.6102E-01 | 62 8.8706E+03 + 4.0000E+05 4.9383E-03 1.9855E-08 9.9506E-01 | 72 8.0908E+04 + 4.0000E+06 5.1682E-04 2.0676E-09 9.9948E-01 | 83 7.1513E+05 + 2.0795E+07 1.0000E-04 3.9992E-10 9.9990E-01 | 91 4.3282E+06 rootsfound[] = -1 0 - 4.0000E+07 5.2028E-05 2.0644E-10 9.9995E-01 | 685 7.2040E+06 - 4.0000E+08 5.2075E-06 2.0694E-11 9.9999E-01 | 699 9.3020E+07 - 4.0000E+09 5.2087E-07 2.2947E-12 1.0000E+00 | 714 4.1703E+08 - 4.0000E+10 5.2085E-08 2.0139E-13 1.0000E+00 | 747 4.5921E+09 + 4.0000E+07 5.2028E-05 2.0795E-10 9.9995E-01 | 94 1.1820E+07 + 4.0000E+08 5.2038E-06 2.0719E-11 9.9999E-01 | 102 1.3575E+08 + 4.0000E+09 5.2017E-07 2.0354E-12 1.0000E+00 | 112 2.5310E+09 + 4.0000E+10 5.2089E-08 2.4483E-13 1.0000E+00 | 131 3.1965E+09 ------------------------------------------------------ Final y1' y2' y3' ------------------------------------------------------ - -1.3023E-18 -3.1154E-23 1.3023E-18 + -1.3022E-18 -2.1077E-23 1.3023E-18 General Solver Stats: - Total internal steps taken = 747 - Total internal steps attempts = 807 + Total internal steps taken = 131 + Total internal steps attempts = 143 Total rhs exp function calls = 0 - Total rhs imp function calls = 25557 - Total Jacobian function calls = 61 - Num lin solver setup calls = 239 - Num error test failures = 45 + Total rhs imp function calls = 4706 + Total Jacobian function calls = 55 + Num lin solver setup calls = 126 + Num error test failures = 0 First internal step size = 1.00000E-08 - Last internal step size = 4.59208E+09 - Next internal step size = 4.59208E+09 - Current internal time = 4.43176E+10 - Num nonlinear solver iters = 21568 - Num nonlinear solver fails = 56 + Last internal step size = 3.19648E+09 + Next internal step size = 1.08280E+10 + Current internal time = 4.05844E+10 + Num nonlinear solver iters = 4033 + Num nonlinear solver fails = 54 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out index 4a7dc1c79b..65824c5ff5 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out @@ -5,10 +5,10 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 - 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 - 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 + 5.077128011123421e-03 1.224742240522223e+00 1.730563198063739e+00 5.210498699170785e-12 3.727240738271576e-12 + 7.971479493571786e-03 1.224738385936593e+00 1.728385952122810e+00 9.707123993507594e-12 3.469446951953614e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007971479491300691 +Current time = 0.007971479493571786 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -17,8 +17,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002894351482645774 -Current step size = 0.01488513257284924 +Last step size = 0.002894351482448365 +Current step size = 0.01488513257624006 Explicit RHS fn evals = 0 Implicit RHS fn evals = 49 NLS iters = 31 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out index 8f21bae9ac..6486f2cf4a 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out @@ -6,10 +6,10 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 - 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 - 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 + 5.069740251182322e-03 1.224742248556789e+00 1.730567522070876e+00 3.889517596888936e-10 2.440982971307903e-10 + 7.964681775727785e-03 1.224738397861493e+00 1.728392193102339e+00 8.783296312486755e-10 1.803088789387175e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964681773481579 +Current time = 0.007964681775727785 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -18,8 +18,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002894941524745254 -Current step size = 0.01487588631018596 +Last step size = 0.002894941524545463 +Current step size = 0.01487588631341295 Explicit RHS fn evals = 0 Implicit RHS fn evals = 45 NLS iters = 27 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out index 130fb81915..6215a2fdba 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out @@ -6,10 +6,10 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 - 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 - 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 + 5.069703292798704e-03 1.224742248195360e+00 1.730567544197454e+00 1.072431032866916e-11 2.655440312082646e-10 + 7.964648472653739e-03 1.224738397026471e+00 1.728392224429115e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964648470398546 +Current time = 0.007964648472653739 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -18,8 +18,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002894945180045727 -Current step size = 0.01487583719865171 +Last step size = 0.002894945179855035 +Current step size = 0.01487583720175373 Explicit RHS fn evals = 0 Implicit RHS fn evals = 44 NLS iters = 26 From b5aebc8b5f962480ac721c9ee94acd2774a42731 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 15:51:13 -0800 Subject: [PATCH 43/67] Update answers repo --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index d6e9fdf155..c9d35811bd 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit d6e9fdf155753559e8b693af65b29ae019c59cfd +Subproject commit c9d35811bd9f7cdcc9d1076267edf3a2d0275201 From e6cbd0e9e6bfda6a1335ca8060e74c421feea0ed Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 16:13:02 -0800 Subject: [PATCH 44/67] Update f2003 out files --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index c9d35811bd..407f9a97a6 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit c9d35811bd9f7cdcc9d1076267edf3a2d0275201 +Subproject commit 407f9a97a675fd8057166aaf1a4fce44326a57bf From caabcfd60cbc30c7b5a338a9bbedd1c00dcee011 Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Fri, 10 Jan 2025 17:05:16 -0800 Subject: [PATCH 45/67] update output files --- .../ark_heat2D_hypre_pfmg_mri_--np_2_2.out | 37 +- .../arkode/CXX_serial/ark_kpr_nestedmri.out | 52 +- ...advection_diffusion_reaction_splitting.out | 64 +- .../ark_analytic_partitioned_forcing.out | 4 +- .../ark_analytic_partitioned_splitting.out | 4 +- ..._splitting_ARKODE_SPLITTING_BEST_2_2_2.out | 4 +- ..._splitting_ARKODE_SPLITTING_RUTH_3_3_2.out | 4 +- ...litting_ARKODE_SPLITTING_YOSHIDA_8_6_2.out | 6 +- .../ark_dissipated_exp_entropy_1_0.out | 15 +- .../CXX_parallel/ark_test_heat2D_mri_0.out | 6 +- .../CXX_parallel/ark_test_heat2D_mri_1.out | 6 +- ...rk_test_accumerror_brusselator_20_-4_0.out | 640 +++++++++--------- ...ark_test_accumerror_brusselator_20_3_1.out | 348 +++++----- ...ark_test_accumerror_brusselator_20_5_0.out | 360 +++++----- .../ark_test_accumerror_kpr_20_-4_1.out | 630 ++++++++--------- .../ark_test_accumerror_kpr_20_2_0.out | 360 +++++----- ..._mriadapt_--rtol_0.000004_--scontrol_0.out | 48 +- .../CXX_serial/ark_test_dahlquist_mri_-1.out | 6 +- .../CXX_serial/ark_test_dahlquist_mri_0.out | 6 +- .../CXX_serial/ark_test_dahlquist_mri_1.out | 6 +- ...-hs_0.002_--rtol_0.000004_--scontrol_0.out | 46 +- .../ark_test_slowerror_brusselator.out | 190 +++--- .../CXX_serial/ark_test_slowerror_kpr.out | 2 +- .../CXX_serial/ark_test_splittingstep.out | 18 +- .../test_logging_arkode_arkstep_lvl3_1_0.out | 94 +-- ...test_logging_arkode_arkstep_lvl3_1_1_0.out | 184 ++--- ...test_logging_arkode_arkstep_lvl3_1_1_1.out | 84 +-- 27 files changed, 1612 insertions(+), 1612 deletions(-) diff --git a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out index 4b5c7ca9f3..a4248059f6 100644 --- a/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out +++ b/examples/arkode/CXX_parhyp/ark_heat2D_hypre_pfmg_mri_--np_2_2.out @@ -1,10 +1,10 @@ 2D Heat PDE test problem: - --------------------------------- + --------------------------------- nprocs = 4 npx = 2 npy = 2 - --------------------------------- + --------------------------------- kx = 1 ky = 1 ax = 1 @@ -19,7 +19,7 @@ nyl (proc 0) = 32 dx = 0.015873 dy = 0.015873 - --------------------------------- + --------------------------------- rtol = 1e-05 atol = 1e-10 sorder = 3 @@ -28,30 +28,30 @@ hs = 0.001 controller = 0 linear = 0 - --------------------------------- + --------------------------------- lin iters = 10 eps lins = -1 prectype = 1 msbp = 0 pfmg_relax = 2 pfmg_nrelax = 2 - --------------------------------- + --------------------------------- output = 1 - --------------------------------- + --------------------------------- - t ||u||_rms + t ||u||_rms ---------------------------------------------- 0.000000000000000e+00 3.691406249999997e-01 - 1.000000000000000e-01 5.162013348084430e-02 - 2.000000000000000e-01 7.426099611781720e-03 - 3.000000000000000e-01 1.067221239904711e-03 - 4.000000000000000e-01 1.533637906675603e-04 - 5.000000000000000e-01 2.203889796541893e-05 - 6.000000000000000e-01 3.167064041223480e-06 - 7.000000000000000e-01 4.551178478732877e-07 - 7.999999999999999e-01 6.540199134369242e-08 - 8.999999999999999e-01 9.398525108333204e-09 - 1.000000000000000e+00 1.350608783576075e-09 + 1.000000000000000e-01 5.162013348077293e-02 + 2.000000000000000e-01 7.426099611774337e-03 + 3.000000000000000e-01 1.067221239903441e-03 + 4.000000000000000e-01 1.533637906673528e-04 + 5.000000000000000e-01 2.203889796537093e-05 + 6.000000000000000e-01 3.167064041217109e-06 + 7.000000000000000e-01 4.551178478723665e-07 + 7.999999999999999e-01 6.540199134355938e-08 + 8.999999999999999e-01 9.398525108314093e-09 + 1.000000000000000e+00 1.350608783573331e-09 ---------------------------------------------- Final slow integrator statistics: @@ -75,7 +75,7 @@ Final fast integrator statistics: Steps = 3003 Step attempts = 3003 Error test fails = 0 - RHS evals = 38706 + RHS evals = 39697 NLS iters = 23683 NLS fails = 0 LS iters = 13067 @@ -89,3 +89,4 @@ Final fast integrator statistics: Preconditioner setups = 0 Preconditioner solves = 0 PFMG iters = 10603 + diff --git a/examples/arkode/CXX_serial/ark_kpr_nestedmri.out b/examples/arkode/CXX_serial/ark_kpr_nestedmri.out index bc66d480bc..a0f1aba1bf 100644 --- a/examples/arkode/CXX_serial/ark_kpr_nestedmri.out +++ b/examples/arkode/CXX_serial/ark_kpr_nestedmri.out @@ -20,32 +20,32 @@ Adaptive nested multirate nonlinear Kvaerno-Prothero-Robinson test problem: t u v w uerr verr werr ---------------------------------------------------------------------------- 0.000000 1.581139 1.732051 1.732051 0.00e+00 0.00e+00 0.00e+00 - 0.250000 1.576193 1.693804 1.005260 3.23e-06 1.18e-04 7.57e-05 - 0.500000 1.561425 1.094399 1.236935 2.15e-08 1.54e-05 2.85e-05 - 0.750000 1.537204 1.480202 1.289772 8.95e-04 1.47e-04 2.43e-04 - 1.000000 1.506472 1.658437 1.566267 2.26e-07 2.27e-05 1.87e-05 - 1.250000 1.468674 1.117329 1.128753 4.45e-06 8.37e-05 5.27e-06 - 1.500000 1.426602 1.451384 1.383651 1.49e-07 4.03e-06 2.37e-05 - 1.750000 1.382272 1.731275 1.400561 3.01e-05 6.40e-05 1.96e-04 - 2.000000 1.338548 1.576713 1.004568 1.72e-05 4.85e-05 3.52e-04 - 2.250000 1.298433 1.357466 1.203013 3.98e-06 7.57e-06 1.04e-04 - 2.500000 1.264637 1.111610 1.079957 3.74e-07 2.59e-05 3.61e-04 - 2.750000 1.240344 1.181466 1.688515 2.92e-06 3.40e-06 6.04e-05 - 3.000000 1.226753 1.199667 1.243892 3.15e-06 2.39e-06 5.78e-05 - 3.250000 1.225940 1.337036 1.695808 8.05e-05 2.56e-05 5.93e-05 - 3.500000 1.237625 1.494269 1.577837 3.48e-05 1.55e-06 2.09e-05 - 3.750000 1.261615 1.441503 1.440542 1.35e-07 1.70e-08 6.25e-06 - 4.000000 1.293574 1.067975 1.718719 4.77e-05 2.22e-05 1.30e-04 - 4.250000 1.333622 1.725039 1.003950 1.49e-11 6.53e-14 5.93e-10 - 4.500000 1.376484 1.650381 1.499914 2.63e-08 1.70e-06 6.88e-07 - 4.750000 1.420897 1.555399 1.167629 4.82e-08 1.80e-08 5.03e-06 - 5.000000 1.463498 1.506851 1.644668 7.85e-07 1.26e-05 2.66e-05 + 0.250000 1.575871 1.692710 0.983643 8.85e-06 9.84e-05 8.49e-03 + 0.500000 1.560193 1.085865 1.210913 2.58e-06 6.33e-06 4.35e-04 + 0.750000 1.536552 1.470389 1.267128 1.81e-05 1.57e-07 5.80e-04 + 1.000000 1.504981 1.647400 1.547522 1.85e-05 1.66e-06 1.66e-04 + 1.250000 1.466582 1.097324 1.093272 6.09e-05 2.75e-05 2.75e-04 + 1.500000 1.424248 1.432827 1.357440 1.08e-05 1.18e-07 2.24e-04 + 1.750000 1.379483 1.713618 1.364870 1.05e-05 7.12e-07 2.04e-04 + 2.000000 1.335053 1.553284 0.942875 5.80e-06 3.90e-08 9.47e-06 + 2.250000 1.293525 1.323056 1.122341 1.42e-05 2.37e-06 1.14e-03 + 2.500000 1.257936 1.056708 0.956293 1.06e-05 2.63e-06 9.97e-04 + 2.750000 1.231421 1.111275 1.610180 1.90e-05 1.53e-06 6.49e-05 + 3.000000 1.218244 1.117808 1.145691 3.73e-05 6.60e-05 1.40e-03 + 3.250000 1.217661 1.262773 1.647718 2.12e-05 1.73e-06 4.42e-06 + 3.500000 1.232062 1.430712 1.547166 6.82e-05 8.63e-05 2.88e-04 + 3.750000 1.256536 1.382030 1.417224 1.10e-05 7.06e-07 8.02e-05 + 4.000000 1.288907 0.995342 1.691901 8.47e-06 1.31e-06 8.14e-05 + 4.250000 1.328387 1.683856 0.953984 1.12e-04 5.55e-05 3.25e-03 + 4.500000 1.372184 1.610804 1.475878 1.88e-04 2.86e-04 5.69e-03 + 4.750000 1.417829 1.518480 1.154423 2.29e-04 3.16e-05 2.21e-04 + 5.000000 1.461147 1.475533 1.640558 5.35e-07 1.21e-08 4.33e-06 ---------------------------------------------------------------------------- Final Solver Statistics: - Slow steps = 47 (attempts = 48, fails = 1, innerfails = 0) - Intermediate steps = 714 (attempts = 868, fails = 154, innerfails = 0) - Fast steps = 129455 (attempts = 144940, fails = 15485) - u error = 0.000228112, v error = 8.70956e-05, total error = 0.000169225 - Relative accuracy = 6.75352 - Total RHS evals: Fse = 240, Fsi = 0, Fme = 4234, Fmi = 0, Ff = 709264 + Slow steps = 405 (attempts = 587, fails = 182, innerfails = 0) + Intermediate steps = 4866 (attempts = 5327, fails = 461, innerfails = 0) + Fast steps = 113440 (attempts = 145357, fails = 31917) + u error = 5.24861e-05, v error = 5.21003e-05, total error = 0.00123619 + Relative accuracy = 135.202 + Total RHS evals: Fse = 2754, Fsi = 0, Fme = 26580, Fmi = 0, Ff = 592489 diff --git a/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out b/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out index 5e9e2912a0..9bf76816ce 100644 --- a/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out +++ b/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out @@ -9,22 +9,22 @@ ---------------------- 0.000000 0.100000 0.060000 0.126735 - 0.120000 0.154225 - 0.180000 0.185713 - 0.240000 0.221939 - 0.300000 0.263178 + 0.120000 0.154226 + 0.180000 0.185715 + 0.240000 0.221940 + 0.300000 0.263179 0.360000 0.309221 0.420000 0.359242 - 0.480000 0.411736 - 0.540000 0.464562 - 0.600000 0.515253 - 0.660000 0.561485 - 0.720000 0.601561 - 0.780000 0.634693 - 0.840000 0.660982 - 0.900000 0.681150 - 0.960000 0.696244 - 1.000000 0.702991 + 0.480000 0.411737 + 0.540000 0.464563 + 0.600000 0.515254 + 0.660000 0.561486 + 0.720000 0.601562 + 0.780000 0.634695 + 0.840000 0.660985 + 0.900000 0.681153 + 0.960000 0.696246 + 1.000000 0.702993 ---------------------- Splitting Stepper Statistics: @@ -45,37 +45,37 @@ Partition 2 evolves = 17 Advection Stepper Statistics: Current time = 1 -Steps = 55 -Step attempts = 64 +Steps = 57 +Step attempts = 66 Stability limited steps = 0 -Accuracy limited steps = 64 +Accuracy limited steps = 66 Error test fails = 9 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 2.059355438929501e-06 -Last step size = 0.004032057223863014 -Current step size = 0.004032057223863014 -RHS fn evals = 185 +Last step size = 0.01635699882355189 +Current step size = 0.01635699882355189 +RHS fn evals = 191 Diffusion Stepper Statistics: Current time = 1 -Steps = 247 -Step attempts = 302 +Steps = 176 +Step attempts = 237 Stability limited steps = 0 -Accuracy limited steps = 302 -Error test fails = 55 +Accuracy limited steps = 237 +Error test fails = 61 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 2.059355438929501e-06 -Last step size = 0.006555275857754277 -Current step size = 0.006555275857754277 +Last step size = 0.003323940895700203 +Current step size = 0.003323940895700203 Explicit RHS fn evals = 0 -Implicit RHS fn evals = 1831 -NLS iters = 906 +Implicit RHS fn evals = 1915 +NLS iters = 948 NLS fails = 0 -NLS iters per step = 3.668016194331984 -LS setups = 213 -Jac fn evals = 72 +NLS iters per step = 5.386363636363637 +LS setups = 203 +Jac fn evals = 78 LS RHS fn evals = 0 Prec setup evals = 0 Prec solves = 0 @@ -84,7 +84,7 @@ LS fails = 0 Jac-times setups = 0 Jac-times evals = 0 LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.07947019867549669 +Jac evals per NLS iter = 0.08227848101265822 Prec evals per NLS iter = 0 Reaction Stepper Statistics: diff --git a/examples/arkode/C_serial/ark_analytic_partitioned_forcing.out b/examples/arkode/C_serial/ark_analytic_partitioned_forcing.out index dd81702c9d..a69739499b 100644 --- a/examples/arkode/C_serial/ark_analytic_partitioned_forcing.out +++ b/examples/arkode/C_serial/ark_analytic_partitioned_forcing.out @@ -32,7 +32,7 @@ Inequality constraint fails = 0 Initial step size = 0.002 Last step size = 0.002 Current step size = 0.002 -RHS fn evals = 2500 +RHS fn evals = 2100 Nonlinear Stepper Statistics: Current time = 1.000000000000001 @@ -46,7 +46,7 @@ Inequality constraint fails = 0 Initial step size = 0.001 Last step size = 0.001 Current step size = 0.001 -Explicit RHS fn evals = 5000 +Explicit RHS fn evals = 4001 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/examples/arkode/C_serial/ark_analytic_partitioned_splitting.out b/examples/arkode/C_serial/ark_analytic_partitioned_splitting.out index 77962e7939..15b83fec77 100644 --- a/examples/arkode/C_serial/ark_analytic_partitioned_splitting.out +++ b/examples/arkode/C_serial/ark_analytic_partitioned_splitting.out @@ -32,7 +32,7 @@ Inequality constraint fails = 0 Initial step size = 0.002 Last step size = 0.002 Current step size = 0.002 -RHS fn evals = 2500 +RHS fn evals = 2100 Nonlinear Stepper Statistics: Current time = 1.000000000000001 @@ -46,7 +46,7 @@ Inequality constraint fails = 0 Initial step size = 0.001 Last step size = 0.001 Current step size = 0.001 -Explicit RHS fn evals = 5000 +Explicit RHS fn evals = 4100 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_BEST_2_2_2.out b/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_BEST_2_2_2.out index 47ae2487bf..63879481fa 100644 --- a/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_BEST_2_2_2.out +++ b/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_BEST_2_2_2.out @@ -33,7 +33,7 @@ Inequality constraint fails = 0 Initial step size = 0.002 Last step size = 0.0010710678118655 Current step size = 0.002 -RHS fn evals = 3000 +RHS fn evals = 2600 Nonlinear Stepper Statistics: Current time = 1.000000000000001 @@ -47,7 +47,7 @@ Inequality constraint fails = 0 Initial step size = 0.001 Last step size = 0.0009289321881345005 Current step size = 0.001 -Explicit RHS fn evals = 5500 +Explicit RHS fn evals = 4600 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_RUTH_3_3_2.out b/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_RUTH_3_3_2.out index 9a3aea8caf..fdfeea7ac8 100644 --- a/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_RUTH_3_3_2.out +++ b/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_RUTH_3_3_2.out @@ -33,7 +33,7 @@ Inequality constraint fails = 0 Initial step size = 0.002 Last step size = 0.0006666666666667037 Current step size = 0.002 -RHS fn evals = 6500 +RHS fn evals = 5500 Nonlinear Stepper Statistics: Current time = 1.000000000000001 @@ -47,7 +47,7 @@ Inequality constraint fails = 0 Initial step size = 0.001 Last step size = 0.0009166666666666759 Current step size = 0.001 -Explicit RHS fn evals = 6000 +Explicit RHS fn evals = 5100 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_YOSHIDA_8_6_2.out b/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_YOSHIDA_8_6_2.out index 4a619c463d..f8f64cf06e 100644 --- a/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_YOSHIDA_8_6_2.out +++ b/examples/arkode/C_serial/ark_analytic_partitioned_splitting_ARKODE_SPLITTING_YOSHIDA_8_6_2.out @@ -4,7 +4,7 @@ Analytical ODE test problem: coefficients = ARKODE_SPLITTING_YOSHIDA_8_6_2 lambda = 2 -Error: 1.44246e-12 +Error: 1.4346e-12 Splitting Stepper Statistics: Current time = 1.000000000000001 @@ -33,7 +33,7 @@ Inequality constraint fails = 0 Initial step size = 0.002 Last step size = 0.001936124638611257 Current step size = 0.002 -RHS fn evals = 11000 +RHS fn evals = 9800 Nonlinear Stepper Statistics: Current time = 1.000000000000001 @@ -47,7 +47,7 @@ Inequality constraint fails = 0 Initial step size = 0.001 Last step size = 0.0008722492772224025 Current step size = 0.001 -Explicit RHS fn evals = 82500 +Explicit RHS fn evals = 66900 Implicit RHS fn evals = 0 NLS iters = 0 NLS fails = 0 diff --git a/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out b/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out index 4b3a9d3aab..8155c8a983 100644 --- a/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out +++ b/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out @@ -7,18 +7,17 @@ Dissipated Exponential Entropy problem: step t u e u_err delta e ------------------------------------------------------------------------------- - 0 0.000000e+00 1.000000e+00 2.718282e+00 0.000000e+00 0.000000e+00 - 40 4.820760e+00 -1.646470e+00 1.927290e-01 -3.337911e+00 -2.525553e+00 + 0 0.000000e+00 5.000000e-01 1.648721e+00 0.000000e+00 0.000000e+00 ------------------------------------------------------------------------------- Final Solver Statistics: - Internal solver steps = 41 (attempted = 42) - Total number of error test failures = 1 - Total RHS evals: Fe = 211, Fi = 0 - Total Relaxation Fn evals = 161 - Total Relaxation Jac evals = 287 + Internal solver steps = 39 (attempted = 41) + Total number of error test failures = 2 + Total RHS evals: Fe = 205, Fi = 0 + Total Relaxation Fn evals = 153 + Total Relaxation Jac evals = 276 Total Relaxation fails = 0 Total Relaxation bound fails = 0 Total Relaxation NLS fails = 0 - Total Relaxation NLS iters = 77 + Total Relaxation NLS iters = 71 diff --git a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out index 813100a750..6a5b5488fd 100644 --- a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out +++ b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_0.out @@ -28,10 +28,10 @@ MRIStep Solver Statistics: Internal solver steps = 1000 Total RHS evals: Fe = 2769 Total linear solver setups = 50 - Total linear iterations = 6236 - Total number of Jacobian-vector products = 6236 + Total linear iterations = 6232 + Total number of Jacobian-vector products = 6232 Total number of Preconditioner setups = 50 - Total number of Preconditioner solves = 6236 + Total number of Preconditioner solves = 6232 Total number of linear solver convergence failures = 0 Total number of Newton iterations = 1768 Total number of nonlinear solver convergence failures = 0 diff --git a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out index 8c26b3c75c..d94bf112be 100644 --- a/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out +++ b/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri_1.out @@ -28,10 +28,10 @@ MRIStep Solver Statistics: Internal solver steps = 1000 Total RHS evals: Fe = 2001 Total linear solver setups = 1 - Total linear iterations = 4709 - Total number of Jacobian-vector products = 4709 + Total linear iterations = 4717 + Total number of Jacobian-vector products = 4717 Total number of Preconditioner setups = 1 - Total number of Preconditioner solves = 4709 + Total number of Preconditioner solves = 4717 Total number of linear solver convergence failures = 0 Total number of Newton iterations = 1000 Total number of nonlinear solver convergence failures = 0 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_-4_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_-4_0.out index 717234ba15..07ed0f8729 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_-4_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_-4_0.out @@ -7,323 +7,323 @@ Accumulated error estimation test (stiff Brusselator ODE problem): DIRK solver, order = 4 Fixed-step runs: - h 0.025 rk_type 0 order 4 acc 1 t 0.5 dsm 2.02741e-07 dsm_est 0.244873 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 1 dsm 4.36512e-10 dsm_est 9.15797e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 1.5 dsm 1.47944e-09 dsm_est 1.03904e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 2 dsm 3.07014e-09 dsm_est 7.16968e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 2.5 dsm 2.41009e-09 dsm_est 9.26427e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 3 dsm 2.2919e-10 dsm_est 1.68058e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 3.5 dsm 2.10843e-11 dsm_est 1.6358e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 4 dsm 4.85414e-11 dsm_est 8.11006e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 4.5 dsm 1.96723e-10 dsm_est 1.90108e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 5 dsm 8.22132e-10 dsm_est 5.32797e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 5.5 dsm 1.54757e-09 dsm_est 9.55312e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 6 dsm 1.4066e-09 dsm_est 5.43427e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 6.5 dsm 1.53642e-07 dsm_est 8.50911e-07 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 7 dsm 4.94724e-06 dsm_est 0.000100467 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 7.5 dsm 4.18294e-08 dsm_est 1.0711e-05 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 8 dsm 1.04878e-08 dsm_est 1.1263e-07 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 8.5 dsm 2.79702e-09 dsm_est 2.16903e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 9 dsm 1.60168e-09 dsm_est 1.38178e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 9.5 dsm 1.4347e-09 dsm_est 1.88007e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 1 t 10 dsm 5.54538e-10 dsm_est 1.51522e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 0.5 dsm 2.02741e-07 dsm_est 0.270414 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 1 dsm 4.36512e-10 dsm_est 1.01676e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 1.5 dsm 1.47944e-09 dsm_est 1.91745e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 2 dsm 3.07014e-09 dsm_est 7.81488e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 2.5 dsm 2.41009e-09 dsm_est 7.35801e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 3 dsm 2.2919e-10 dsm_est 2.95688e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 3.5 dsm 2.10843e-11 dsm_est 2.56198e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 4 dsm 4.85414e-11 dsm_est 9.1097e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 4.5 dsm 1.96723e-10 dsm_est 1.8883e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 5 dsm 8.22132e-10 dsm_est 7.19339e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 5.5 dsm 1.54757e-09 dsm_est 1.54279e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 6 dsm 1.4066e-09 dsm_est 2.77932e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 6.5 dsm 1.53642e-07 dsm_est 3.43927e-06 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 7 dsm 4.94724e-06 dsm_est 0.000536526 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 7.5 dsm 4.18294e-08 dsm_est 2.81303e-05 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 8 dsm 1.04878e-08 dsm_est 1.09073e-06 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 8.5 dsm 2.79702e-09 dsm_est 2.81903e-07 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 9 dsm 1.60168e-09 dsm_est 1.22752e-07 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 9.5 dsm 1.4347e-09 dsm_est 3.48997e-07 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 10 dsm 5.54538e-10 dsm_est 1.97881e-07 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 0.5 dsm 2.02741e-07 dsm_est 0.0135207 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 1 dsm 4.36512e-10 dsm_est 5.08381e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 1.5 dsm 1.47944e-09 dsm_est 9.58723e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 2 dsm 3.07014e-09 dsm_est 3.90744e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 2.5 dsm 2.41009e-09 dsm_est 3.67901e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 3 dsm 2.2919e-10 dsm_est 1.47844e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 3.5 dsm 2.10843e-11 dsm_est 1.28099e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 4 dsm 4.85414e-11 dsm_est 4.55485e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 4.5 dsm 1.96723e-10 dsm_est 9.4415e-11 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 5 dsm 8.22132e-10 dsm_est 3.5967e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 5.5 dsm 1.54757e-09 dsm_est 7.71393e-10 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 6 dsm 1.4066e-09 dsm_est 1.38966e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 6.5 dsm 1.53642e-07 dsm_est 1.71964e-07 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 7 dsm 4.94724e-06 dsm_est 2.68263e-05 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 7.5 dsm 4.18294e-08 dsm_est 1.40652e-06 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 8 dsm 1.04878e-08 dsm_est 5.45367e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 8.5 dsm 2.79702e-09 dsm_est 1.40952e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 9 dsm 1.60168e-09 dsm_est 6.13761e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 9.5 dsm 1.4347e-09 dsm_est 1.74499e-08 nsteps 20 - h 0.025 rk_type 0 order 4 acc 3 t 10 dsm 5.54538e-10 dsm_est 9.89407e-09 nsteps 20 - h 0.025 rk_type 0 order 4 acc 2 t 0.5 dsm 2.02741e-07 dsm_est 2.04151e-07 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 1 dsm 4.36512e-10 dsm_est 1.51075e-09 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 1.5 dsm 1.47944e-09 dsm_est 1.30553e-09 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 2 dsm 3.07014e-09 dsm_est 6.93616e-10 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 2.5 dsm 2.41009e-09 dsm_est 3.64938e-09 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 3 dsm 2.2919e-10 dsm_est 1.30625e-09 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 3.5 dsm 2.10843e-11 dsm_est 3.14425e-10 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 4 dsm 4.85414e-11 dsm_est 7.33721e-10 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 4.5 dsm 1.96723e-10 dsm_est 6.03307e-11 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 5 dsm 8.22132e-10 dsm_est 6.73954e-10 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 5.5 dsm 1.54757e-09 dsm_est 2.31912e-10 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 6 dsm 1.4066e-09 dsm_est 2.44839e-08 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 6.5 dsm 1.53642e-07 dsm_est 2.36231e-06 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 7 dsm 4.94724e-06 dsm_est 8.33486e-05 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 7.5 dsm 4.18294e-08 dsm_est 5.85759e-07 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 8 dsm 1.04878e-08 dsm_est 1.52644e-07 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 8.5 dsm 2.79702e-09 dsm_est 5.7594e-08 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 9 dsm 1.60168e-09 dsm_est 3.77187e-08 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 9.5 dsm 1.4347e-09 dsm_est 2.25916e-09 nsteps 30 - h 0.025 rk_type 0 order 4 acc 2 t 10 dsm 5.54538e-10 dsm_est 8.39636e-09 nsteps 30 - h 0.00625 rk_type 0 order 4 acc 1 t 0.5 dsm 2.01526e-08 dsm_est 0.12061 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 1 dsm 9.02564e-12 dsm_est 3.15224e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 1.5 dsm 6.18719e-12 dsm_est 1.15612e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 2 dsm 1.21264e-11 dsm_est 3.56333e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 2.5 dsm 9.39437e-12 dsm_est 3.71652e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 3 dsm 6.39567e-12 dsm_est 6.60675e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 3.5 dsm 4.31321e-12 dsm_est 1.02486e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 4 dsm 5.26346e-12 dsm_est 6.34128e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 4.5 dsm 3.00982e-11 dsm_est 6.6337e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 5 dsm 3.35644e-12 dsm_est 3.78322e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 5.5 dsm 1.37915e-11 dsm_est 3.71144e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 6 dsm 9.91766e-11 dsm_est 2.23847e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 6.5 dsm 3.01672e-09 dsm_est 3.42521e-09 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 7 dsm 1.77811e-08 dsm_est 4.60341e-07 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 7.5 dsm 7.42418e-10 dsm_est 6.0223e-08 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 8 dsm 3.89202e-10 dsm_est 4.90508e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 8.5 dsm 3.7018e-11 dsm_est 2.41013e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 9 dsm 2.94415e-11 dsm_est 5.60347e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 9.5 dsm 1.42778e-11 dsm_est 7.48066e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 1 t 10 dsm 4.93463e-12 dsm_est 6.33468e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 0.5 dsm 2.01526e-08 dsm_est 0.141954 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 1 dsm 9.02564e-12 dsm_est 1.9256e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 1.5 dsm 6.18719e-12 dsm_est 3.09827e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 2 dsm 1.21264e-11 dsm_est 1.26799e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 2.5 dsm 9.39437e-12 dsm_est 1.15943e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 3 dsm 6.39567e-12 dsm_est 4.63554e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.31321e-12 dsm_est 4.07949e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 4 dsm 5.26346e-12 dsm_est 1.47561e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 4.5 dsm 3.00982e-11 dsm_est 3.61156e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 5 dsm 3.35644e-12 dsm_est 1.54366e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 5.5 dsm 1.37915e-11 dsm_est 2.39536e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 6 dsm 9.91766e-11 dsm_est 4.28866e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 6.5 dsm 3.01672e-09 dsm_est 5.01151e-08 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 7 dsm 1.77811e-08 dsm_est 9.3156e-06 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 7.5 dsm 7.42418e-10 dsm_est 5.06067e-07 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 8 dsm 3.89202e-10 dsm_est 1.79275e-08 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 8.5 dsm 3.7018e-11 dsm_est 4.65518e-09 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 9 dsm 2.94415e-11 dsm_est 1.94773e-09 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 9.5 dsm 1.42778e-11 dsm_est 5.55728e-09 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 10 dsm 4.93463e-12 dsm_est 3.15451e-09 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 0.5 dsm 2.01526e-08 dsm_est 0.00177442 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 1 dsm 9.02564e-12 dsm_est 2.40701e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 1.5 dsm 6.18719e-12 dsm_est 3.87284e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 2 dsm 1.21264e-11 dsm_est 1.58498e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 2.5 dsm 9.39437e-12 dsm_est 1.44929e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 3 dsm 6.39567e-12 dsm_est 5.79442e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 3.5 dsm 4.31321e-12 dsm_est 5.09937e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 4 dsm 5.26346e-12 dsm_est 1.84452e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 4.5 dsm 3.00982e-11 dsm_est 4.51445e-13 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 5 dsm 3.35644e-12 dsm_est 1.92957e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 5.5 dsm 1.37915e-11 dsm_est 2.9942e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 6 dsm 9.91766e-11 dsm_est 5.36083e-12 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 6.5 dsm 3.01672e-09 dsm_est 6.26439e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 7 dsm 1.77811e-08 dsm_est 1.16445e-07 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 7.5 dsm 7.42418e-10 dsm_est 6.32584e-09 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 8 dsm 3.89202e-10 dsm_est 2.24093e-10 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 8.5 dsm 3.7018e-11 dsm_est 5.81897e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 9 dsm 2.94415e-11 dsm_est 2.43467e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 9.5 dsm 1.42778e-11 dsm_est 6.94659e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 3 t 10 dsm 4.93463e-12 dsm_est 3.94313e-11 nsteps 80 - h 0.00625 rk_type 0 order 4 acc 2 t 0.5 dsm 2.01526e-08 dsm_est 5.96471e-08 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 1 dsm 9.02564e-12 dsm_est 2.62428e-11 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 1.5 dsm 6.18719e-12 dsm_est 8.82608e-11 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 2 dsm 1.21264e-11 dsm_est 1.81216e-10 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 2.5 dsm 9.39437e-12 dsm_est 1.39896e-10 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 3 dsm 6.39567e-12 dsm_est 1.30298e-11 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.31321e-12 dsm_est 1.17983e-12 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 4 dsm 5.26346e-12 dsm_est 2.82746e-12 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 4.5 dsm 3.00982e-11 dsm_est 1.13213e-11 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 5 dsm 3.35644e-12 dsm_est 4.77357e-11 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 5.5 dsm 1.37915e-11 dsm_est 1.78455e-10 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 6 dsm 9.91766e-11 dsm_est 1.16563e-09 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 6.5 dsm 3.01672e-09 dsm_est 1.01849e-08 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 7 dsm 1.77811e-08 dsm_est 2.72392e-07 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 7.5 dsm 7.42418e-10 dsm_est 3.28703e-09 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 8 dsm 3.89202e-10 dsm_est 2.22651e-09 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 8.5 dsm 3.7018e-11 dsm_est 5.88999e-10 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 9 dsm 2.94415e-11 dsm_est 2.41758e-10 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 9.5 dsm 1.42778e-11 dsm_est 9.06696e-11 nsteps 120 - h 0.00625 rk_type 0 order 4 acc 2 t 10 dsm 4.93463e-12 dsm_est 3.23538e-11 nsteps 120 - h 0.0015625 rk_type 0 order 4 acc 1 t 0.5 dsm 1.12995e-09 dsm_est 0.0161685 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 1 dsm 8.83314e-12 dsm_est 4.22807e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 1.5 dsm 1.84069e-12 dsm_est 1.48779e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 2 dsm 2.23198e-13 dsm_est 3.06e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 2.5 dsm 5.57615e-13 dsm_est 3.16293e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 3 dsm 6.33215e-12 dsm_est 9.28211e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 3.5 dsm 4.31345e-12 dsm_est 1.06725e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 4 dsm 5.25911e-12 dsm_est 7.27486e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 4.5 dsm 3.00873e-11 dsm_est 8.86785e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 5 dsm 1.04948e-12 dsm_est 5.07072e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 5.5 dsm 6.97828e-12 dsm_est 1.75823e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 6 dsm 5.98205e-11 dsm_est 1.17286e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 6.5 dsm 1.87435e-11 dsm_est 1.34855e-11 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 7 dsm 6.39659e-10 dsm_est 1.86951e-09 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 7.5 dsm 1.83962e-11 dsm_est 2.58837e-10 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 8 dsm 1.77418e-10 dsm_est 3.6664e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 8.5 dsm 2.78724e-12 dsm_est 2.99588e-11 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 9 dsm 2.4955e-11 dsm_est 5.0593e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 9.5 dsm 1.29649e-11 dsm_est 4.22112e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 1 t 10 dsm 4.44459e-12 dsm_est 2.19913e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 0.5 dsm 1.12995e-09 dsm_est 0.0169353 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 1 dsm 8.83314e-12 dsm_est 6.94907e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.84069e-12 dsm_est 6.39115e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 2 dsm 2.23198e-13 dsm_est 2.81498e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 2.5 dsm 5.57615e-13 dsm_est 2.25223e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 3 dsm 6.33215e-12 dsm_est 7.33588e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.31345e-12 dsm_est 7.40715e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 4 dsm 5.25911e-12 dsm_est 3.01034e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 4.5 dsm 3.00873e-11 dsm_est 1.41635e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 5 dsm 1.04948e-12 dsm_est 7.0874e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 5.5 dsm 6.97828e-12 dsm_est 3.92895e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 6 dsm 5.98205e-11 dsm_est 8.03594e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 6.5 dsm 1.87435e-11 dsm_est 7.78898e-10 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 7 dsm 6.39659e-10 dsm_est 1.4936e-07 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 7.5 dsm 1.83962e-11 dsm_est 8.20268e-09 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 8 dsm 1.77418e-10 dsm_est 2.85684e-10 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 8.5 dsm 2.78724e-12 dsm_est 1.0185e-10 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 9 dsm 2.4955e-11 dsm_est 3.17765e-11 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 9.5 dsm 1.29649e-11 dsm_est 9.11804e-11 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 10 dsm 4.44459e-12 dsm_est 5.14784e-11 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 0.5 dsm 1.12995e-09 dsm_est 5.29229e-05 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 1 dsm 8.83314e-12 dsm_est 2.17158e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 1.5 dsm 1.84069e-12 dsm_est 1.99723e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 2 dsm 2.23198e-13 dsm_est 8.79682e-15 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 2.5 dsm 5.57615e-13 dsm_est 7.03822e-15 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 3 dsm 6.33215e-12 dsm_est 2.29246e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 3.5 dsm 4.31345e-12 dsm_est 2.31473e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 4 dsm 5.25911e-12 dsm_est 9.40731e-15 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 4.5 dsm 3.00873e-11 dsm_est 4.42611e-15 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 5 dsm 1.04948e-12 dsm_est 2.21481e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 5.5 dsm 6.97828e-12 dsm_est 1.2278e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 6 dsm 5.98205e-11 dsm_est 2.51123e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 6.5 dsm 1.87435e-11 dsm_est 2.43406e-12 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 7 dsm 6.39659e-10 dsm_est 4.6675e-10 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 7.5 dsm 1.83962e-11 dsm_est 2.56334e-11 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 8 dsm 1.77418e-10 dsm_est 8.92764e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 8.5 dsm 2.78724e-12 dsm_est 3.18282e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 9 dsm 2.4955e-11 dsm_est 9.93014e-14 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 9.5 dsm 1.29649e-11 dsm_est 2.84939e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 3 t 10 dsm 4.44459e-12 dsm_est 1.6087e-13 nsteps 320 - h 0.0015625 rk_type 0 order 4 acc 2 t 0.5 dsm 1.12995e-09 dsm_est 2.29243e-09 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 1 dsm 8.83314e-12 dsm_est 1.01708e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.84069e-12 dsm_est 3.46845e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 2 dsm 2.23198e-13 dsm_est 7.13223e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 2.5 dsm 5.57615e-13 dsm_est 5.5096e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 3 dsm 6.33215e-12 dsm_est 5.10951e-14 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.31345e-12 dsm_est 4.40878e-15 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 4 dsm 5.25911e-12 dsm_est 1.13938e-14 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 4.5 dsm 3.00873e-11 dsm_est 3.76833e-14 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 5 dsm 1.04948e-12 dsm_est 1.75165e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 5.5 dsm 6.97828e-12 dsm_est 6.76285e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 6 dsm 5.98205e-11 dsm_est 4.58434e-12 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 6.5 dsm 1.87435e-11 dsm_est 1.80355e-10 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 7 dsm 6.39659e-10 dsm_est 7.2409e-10 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 7.5 dsm 1.83962e-11 dsm_est 3.9885e-11 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 8 dsm 1.77418e-10 dsm_est 1.97323e-11 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 8.5 dsm 2.78724e-12 dsm_est 2.15597e-12 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 9 dsm 2.4955e-11 dsm_est 9.29203e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 9.5 dsm 1.29649e-11 dsm_est 3.52852e-13 nsteps 480 - h 0.0015625 rk_type 0 order 4 acc 2 t 10 dsm 4.44459e-12 dsm_est 1.2586e-13 nsteps 480 - h 0.000390625 rk_type 0 order 4 acc 1 t 0.5 dsm 4.75504e-11 dsm_est 0.000360159 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 1 dsm 8.83253e-12 dsm_est 9.41667e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 1.5 dsm 1.8399e-12 dsm_est 3.31853e-14 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 1 t 2 dsm 2.21232e-13 dsm_est 6.92196e-15 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 1 t 2.5 dsm 5.57029e-13 dsm_est 7.49969e-16 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 1 t 3 dsm 6.33194e-12 dsm_est 2.00962e-15 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 1 t 3.5 dsm 4.31407e-12 dsm_est 2.37702e-14 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 1 t 4 dsm 5.25853e-12 dsm_est 1.62111e-14 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 1 t 4.5 dsm 3.00881e-11 dsm_est 1.97207e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 5 dsm 1.04964e-12 dsm_est 1.12957e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 5.5 dsm 6.97849e-12 dsm_est 3.92461e-15 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 6 dsm 5.9817e-11 dsm_est 2.61272e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 6.5 dsm 1.43381e-11 dsm_est 2.24496e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 7 dsm 2.94602e-12 dsm_est 7.37178e-12 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 7.5 dsm 1.82124e-11 dsm_est 1.0358e-12 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 8 dsm 1.77421e-10 dsm_est 6.91895e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 8.5 dsm 2.81466e-12 dsm_est 6.67292e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 9 dsm 2.496e-11 dsm_est 1.06333e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 9.5 dsm 1.2967e-11 dsm_est 9.36985e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 1 t 10 dsm 4.44606e-12 dsm_est 4.86957e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 0.5 dsm 4.75504e-11 dsm_est 0.000554502 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 1 dsm 8.83253e-12 dsm_est 2.11629e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.8399e-12 dsm_est 1.46902e-13 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 2 t 2 dsm 2.21232e-13 dsm_est 8.08167e-14 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 2 t 2.5 dsm 5.57029e-13 dsm_est 6.12168e-14 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 2 t 3 dsm 6.33194e-12 dsm_est 1.25998e-13 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.31407e-12 dsm_est 1.46827e-13 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 2 t 4 dsm 5.25853e-12 dsm_est 8.29578e-14 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 2 t 4.5 dsm 3.00881e-11 dsm_est 7.37135e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 5 dsm 1.04964e-12 dsm_est 2.31694e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 5.5 dsm 6.97849e-12 dsm_est 8.07729e-14 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 6 dsm 5.9817e-11 dsm_est 1.6949e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 6.5 dsm 1.43381e-11 dsm_est 1.23339e-11 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 7 dsm 2.94602e-12 dsm_est 2.35276e-09 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 7.5 dsm 1.82124e-11 dsm_est 1.29354e-10 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 8 dsm 1.77421e-10 dsm_est 4.5438e-12 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 8.5 dsm 2.81466e-12 dsm_est 2.19649e-12 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 9 dsm 2.496e-11 dsm_est 5.49027e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 9.5 dsm 1.2967e-11 dsm_est 1.50929e-12 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 10 dsm 4.44606e-12 dsm_est 8.49403e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 0.5 dsm 4.75504e-11 dsm_est 4.33205e-07 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 1 dsm 8.83253e-12 dsm_est 1.65335e-16 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 1.5 dsm 1.8399e-12 dsm_est 1.14767e-16 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 3 t 2 dsm 2.21232e-13 dsm_est 6.3138e-17 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 3 t 2.5 dsm 5.57029e-13 dsm_est 4.78256e-17 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 3 t 3 dsm 6.33194e-12 dsm_est 9.84357e-17 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 3 t 3.5 dsm 4.31407e-12 dsm_est 1.14709e-16 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 3 t 4 dsm 5.25853e-12 dsm_est 6.48108e-17 nsteps 1280 - h 0.000390625 rk_type 0 order 4 acc 3 t 4.5 dsm 3.00881e-11 dsm_est 5.75886e-17 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 5 dsm 1.04964e-12 dsm_est 1.81011e-16 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 5.5 dsm 6.97849e-12 dsm_est 6.31038e-17 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 6 dsm 5.9817e-11 dsm_est 1.32414e-16 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 6.5 dsm 1.43381e-11 dsm_est 9.63583e-15 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 7 dsm 2.94602e-12 dsm_est 1.8381e-12 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 7.5 dsm 1.82124e-11 dsm_est 1.01058e-13 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 8 dsm 1.77421e-10 dsm_est 3.54984e-15 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 8.5 dsm 2.81466e-12 dsm_est 1.71601e-15 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 9 dsm 2.496e-11 dsm_est 4.28927e-16 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 9.5 dsm 1.2967e-11 dsm_est 1.17913e-15 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 3 t 10 dsm 4.44606e-12 dsm_est 6.63596e-16 nsteps 1281 - h 0.000390625 rk_type 0 order 4 acc 2 t 0.5 dsm 4.75504e-11 dsm_est 2.63435e-10 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 1 dsm 8.83253e-12 dsm_est 2.03794e-15 nsteps 1922 - h 0.000390625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.8399e-12 dsm_est 3.00814e-14 nsteps 1920 - h 0.000390625 rk_type 0 order 4 acc 2 t 2 dsm 2.21232e-13 dsm_est 4.15128e-14 nsteps 1920 - h 0.000390625 rk_type 0 order 4 acc 2 t 2.5 dsm 5.57029e-13 dsm_est 1.58845e-15 nsteps 1920 - h 0.000390625 rk_type 0 order 4 acc 2 t 3 dsm 6.33194e-12 dsm_est 5.52712e-16 nsteps 1920 - h 0.000390625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.31407e-12 dsm_est 1.6025e-15 nsteps 1920 - h 0.000390625 rk_type 0 order 4 acc 2 t 4 dsm 5.25853e-12 dsm_est 9.59599e-16 nsteps 1920 - h 0.000390625 rk_type 0 order 4 acc 2 t 4.5 dsm 3.00881e-11 dsm_est 5.29038e-14 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 5 dsm 1.04964e-12 dsm_est 7.31539e-14 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 5.5 dsm 6.97849e-12 dsm_est 1.08618e-13 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 6 dsm 5.9817e-11 dsm_est 2.24477e-13 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 6.5 dsm 1.43381e-11 dsm_est 1.46745e-12 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 7 dsm 2.94602e-12 dsm_est 3.70208e-11 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 7.5 dsm 1.82124e-11 dsm_est 5.47248e-13 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 8 dsm 1.77421e-10 dsm_est 4.99362e-13 nsteps 1921 - h 0.000390625 rk_type 0 order 4 acc 2 t 8.5 dsm 2.81466e-12 dsm_est 6.74349e-15 nsteps 1922 - h 0.000390625 rk_type 0 order 4 acc 2 t 9 dsm 2.496e-11 dsm_est 1.91764e-15 nsteps 1922 - h 0.000390625 rk_type 0 order 4 acc 2 t 9.5 dsm 1.2967e-11 dsm_est 1.53261e-15 nsteps 1922 - h 0.000390625 rk_type 0 order 4 acc 2 t 10 dsm 4.44606e-12 dsm_est 7.50123e-16 nsteps 1922 + h 0.025 rk_type 0 order 4 acc 1 t 0.5 dsm 2.72275e-07 dsm_est 0.000320309 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 1 dsm 4.00131e-10 dsm_est 1.19193e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 1.5 dsm 1.26652e-09 dsm_est 3.50957e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 2 dsm 2.81466e-09 dsm_est 2.36829e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 2.5 dsm 2.38619e-09 dsm_est 4.53832e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 3 dsm 3.27004e-10 dsm_est 4.46437e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 3.5 dsm 6.55712e-11 dsm_est 1.77641e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 4 dsm 3.23881e-11 dsm_est 6.61255e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 4.5 dsm 2.09367e-10 dsm_est 9.70703e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 5 dsm 7.9786e-10 dsm_est 1.85353e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 5.5 dsm 1.42452e-09 dsm_est 5.41879e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 6 dsm 5.20728e-10 dsm_est 3.1423e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 6.5 dsm 9.4615e-08 dsm_est 8.12893e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 7 dsm 3.2272e-06 dsm_est 1.58628e-05 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 7.5 dsm 6.78712e-09 dsm_est 2.33588e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 8 dsm 1.58853e-10 dsm_est 1.45258e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 8.5 dsm 9.3141e-10 dsm_est 1.46175e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 9 dsm 7.02572e-10 dsm_est 2.1595e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 9.5 dsm 2.06724e-09 dsm_est 2.16504e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 1 t 10 dsm 6.2622e-10 dsm_est 7.85297e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 0.5 dsm 2.72275e-07 dsm_est 0.00035372 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 1 dsm 4.00131e-10 dsm_est 1.73053e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 1.5 dsm 1.26652e-09 dsm_est 3.86532e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 2 dsm 2.81466e-09 dsm_est 2.23842e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 2.5 dsm 2.38619e-09 dsm_est 7.72949e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 3 dsm 3.27004e-10 dsm_est 6.69613e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 3.5 dsm 6.55712e-11 dsm_est 1.39967e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 4 dsm 3.23881e-11 dsm_est 9.31764e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 4.5 dsm 2.09367e-10 dsm_est 1.61662e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 5 dsm 7.9786e-10 dsm_est 2.69162e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 5.5 dsm 1.42452e-09 dsm_est 6.56229e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 6 dsm 5.20728e-10 dsm_est 2.87404e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 6.5 dsm 9.4615e-08 dsm_est 4.58425e-07 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 7 dsm 3.2272e-06 dsm_est 7.60937e-05 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 7.5 dsm 6.78712e-09 dsm_est 1.03596e-07 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 8 dsm 1.58853e-10 dsm_est 2.83159e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 8.5 dsm 9.3141e-10 dsm_est 2.36329e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 9 dsm 7.02572e-10 dsm_est 2.41767e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 9.5 dsm 2.06724e-09 dsm_est 3.20085e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 10 dsm 6.2622e-10 dsm_est 7.2654e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 0.5 dsm 2.72275e-07 dsm_est 1.7686e-05 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 1 dsm 4.00131e-10 dsm_est 8.65265e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 1.5 dsm 1.26652e-09 dsm_est 1.93266e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 2 dsm 2.81466e-09 dsm_est 1.11921e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 2.5 dsm 2.38619e-09 dsm_est 3.86475e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 3 dsm 3.27004e-10 dsm_est 3.34807e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 3.5 dsm 6.55712e-11 dsm_est 6.99833e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 4 dsm 3.23881e-11 dsm_est 4.65882e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 4.5 dsm 2.09367e-10 dsm_est 8.0831e-11 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 5 dsm 7.9786e-10 dsm_est 1.34581e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 5.5 dsm 1.42452e-09 dsm_est 3.28114e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 6 dsm 5.20728e-10 dsm_est 1.43702e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 6.5 dsm 9.4615e-08 dsm_est 2.29213e-08 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 7 dsm 3.2272e-06 dsm_est 3.80469e-06 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 7.5 dsm 6.78712e-09 dsm_est 5.17981e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 8 dsm 1.58853e-10 dsm_est 1.41579e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 8.5 dsm 9.3141e-10 dsm_est 1.18165e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 9 dsm 7.02572e-10 dsm_est 1.20884e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 9.5 dsm 2.06724e-09 dsm_est 1.60043e-09 nsteps 20 + h 0.025 rk_type 0 order 4 acc 3 t 10 dsm 6.2622e-10 dsm_est 3.6327e-10 nsteps 20 + h 0.025 rk_type 0 order 4 acc 2 t 0.5 dsm 2.72275e-07 dsm_est 5.19528e-07 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 1 dsm 4.00131e-10 dsm_est 2.03711e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 1.5 dsm 1.26652e-09 dsm_est 2.17703e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 2 dsm 2.81466e-09 dsm_est 3.30992e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 2.5 dsm 2.38619e-09 dsm_est 3.64997e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 3 dsm 3.27004e-10 dsm_est 2.31811e-10 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 3.5 dsm 6.55712e-11 dsm_est 6.46168e-10 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 4 dsm 3.23881e-11 dsm_est 4.6949e-10 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 4.5 dsm 2.09367e-10 dsm_est 5.32144e-11 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 5 dsm 7.9786e-10 dsm_est 9.88266e-10 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 5.5 dsm 1.42452e-09 dsm_est 1.8298e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 6 dsm 5.20728e-10 dsm_est 8.81757e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 6.5 dsm 9.4615e-08 dsm_est 1.48893e-06 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 7 dsm 3.2272e-06 dsm_est 5.08288e-05 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 7.5 dsm 6.78712e-09 dsm_est 1.07786e-07 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 8 dsm 1.58853e-10 dsm_est 5.49033e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 8.5 dsm 9.3141e-10 dsm_est 3.86049e-09 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 9 dsm 7.02572e-10 dsm_est 8.88696e-10 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 9.5 dsm 2.06724e-09 dsm_est 1.18635e-08 nsteps 30 + h 0.025 rk_type 0 order 4 acc 2 t 10 dsm 6.2622e-10 dsm_est 9.42366e-09 nsteps 30 + h 0.00625 rk_type 0 order 4 acc 1 t 0.5 dsm 1.84944e-08 dsm_est 0.000559158 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 1 dsm 7.32694e-12 dsm_est 4.62314e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 1.5 dsm 4.98885e-12 dsm_est 1.4903e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 2 dsm 1.70394e-11 dsm_est 9.59109e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 2.5 dsm 2.47828e-11 dsm_est 1.79318e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 3 dsm 2.68414e-12 dsm_est 1.77593e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 3.5 dsm 4.95312e-11 dsm_est 7.23836e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 4 dsm 8.59698e-12 dsm_est 2.95148e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 4.5 dsm 1.79688e-11 dsm_est 3.85079e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 5 dsm 3.16194e-12 dsm_est 7.3606e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 5.5 dsm 1.26004e-11 dsm_est 2.15474e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 6 dsm 7.65427e-11 dsm_est 1.25521e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 6.5 dsm 2.83143e-09 dsm_est 3.20106e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 7 dsm 1.27106e-08 dsm_est 7.79835e-08 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 7.5 dsm 8.48682e-10 dsm_est 3.94004e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 8 dsm 3.83612e-10 dsm_est 6.00717e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 8.5 dsm 5.28198e-11 dsm_est 5.78445e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 9 dsm 4.45707e-11 dsm_est 8.69497e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 9.5 dsm 8.82866e-12 dsm_est 8.70319e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 1 t 10 dsm 2.55058e-12 dsm_est 3.26152e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 0.5 dsm 1.84944e-08 dsm_est 0.000658112 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 1 dsm 7.32694e-12 dsm_est 2.67766e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 1.5 dsm 4.98885e-12 dsm_est 6.0127e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 2 dsm 1.70394e-11 dsm_est 3.5198e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 2.5 dsm 2.47828e-11 dsm_est 1.22041e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 3 dsm 2.68414e-12 dsm_est 1.05852e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.95312e-11 dsm_est 2.20909e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 4 dsm 8.59698e-12 dsm_est 1.50073e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 4.5 dsm 1.79688e-11 dsm_est 2.54855e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 5 dsm 3.16194e-12 dsm_est 4.2215e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 5.5 dsm 1.26004e-11 dsm_est 1.0215e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 6 dsm 7.65427e-11 dsm_est 4.42331e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 6.5 dsm 2.83143e-09 dsm_est 6.82798e-09 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 7 dsm 1.27106e-08 dsm_est 1.36597e-06 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 7.5 dsm 8.48682e-10 dsm_est 1.92039e-09 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 8 dsm 3.83612e-10 dsm_est 4.5832e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 8.5 dsm 5.28198e-11 dsm_est 3.72467e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 9 dsm 4.45707e-11 dsm_est 3.89296e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 9.5 dsm 8.82866e-12 dsm_est 5.14637e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 10 dsm 2.55058e-12 dsm_est 1.17104e-10 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 0.5 dsm 1.84944e-08 dsm_est 8.2264e-06 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 1 dsm 7.32694e-12 dsm_est 3.34708e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 1.5 dsm 4.98885e-12 dsm_est 7.51588e-14 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 2 dsm 1.70394e-11 dsm_est 4.39975e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 2.5 dsm 2.47828e-11 dsm_est 1.52552e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 3 dsm 2.68414e-12 dsm_est 1.32315e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 3.5 dsm 4.95312e-11 dsm_est 2.76136e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 4 dsm 8.59698e-12 dsm_est 1.87591e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 4.5 dsm 1.79688e-11 dsm_est 3.18568e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 5 dsm 3.16194e-12 dsm_est 5.27687e-13 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 5.5 dsm 1.26004e-11 dsm_est 1.27688e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 6 dsm 7.65427e-11 dsm_est 5.52914e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 6.5 dsm 2.83143e-09 dsm_est 8.53498e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 7 dsm 1.27106e-08 dsm_est 1.70747e-08 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 7.5 dsm 8.48682e-10 dsm_est 2.40049e-11 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 8 dsm 3.83612e-10 dsm_est 5.729e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 8.5 dsm 5.28198e-11 dsm_est 4.65584e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 9 dsm 4.45707e-11 dsm_est 4.8662e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 9.5 dsm 8.82866e-12 dsm_est 6.43296e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 3 t 10 dsm 2.55058e-12 dsm_est 1.4638e-12 nsteps 80 + h 0.00625 rk_type 0 order 4 acc 2 t 0.5 dsm 1.84944e-08 dsm_est 6.71047e-08 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 1 dsm 7.32694e-12 dsm_est 2.35195e-11 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 1.5 dsm 4.98885e-12 dsm_est 7.45248e-11 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 2 dsm 1.70394e-11 dsm_est 1.65747e-10 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 2.5 dsm 2.47828e-11 dsm_est 1.4067e-10 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 3 dsm 2.68414e-12 dsm_est 1.92803e-11 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.95312e-11 dsm_est 2.51031e-12 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 4 dsm 8.59698e-12 dsm_est 1.82702e-12 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 4.5 dsm 1.79688e-11 dsm_est 1.22064e-11 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 5 dsm 3.16194e-12 dsm_est 4.67158e-11 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 5.5 dsm 1.26004e-11 dsm_est 1.69688e-10 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 6 dsm 7.65427e-11 dsm_est 1.11649e-09 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 6.5 dsm 2.83143e-09 dsm_est 7.11338e-09 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 7 dsm 1.27106e-08 dsm_est 1.88683e-07 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 7.5 dsm 8.48682e-10 dsm_est 1.26006e-09 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 8 dsm 3.83612e-10 dsm_est 2.12653e-09 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 8.5 dsm 5.28198e-11 dsm_est 8.02576e-10 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 9 dsm 4.45707e-11 dsm_est 3.83593e-10 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 9.5 dsm 8.82866e-12 dsm_est 1.32065e-10 nsteps 120 + h 0.00625 rk_type 0 order 4 acc 2 t 10 dsm 2.55058e-12 dsm_est 3.664e-11 nsteps 120 + h 0.0015625 rk_type 0 order 4 acc 1 t 0.5 dsm 2.26888e-11 dsm_est 0.00020597 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 1 dsm 7.15523e-12 dsm_est 2.20644e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 1.5 dsm 1.94281e-13 dsm_est 1.53952e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 2 dsm 1.29268e-11 dsm_est 3.78018e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 2.5 dsm 2.29196e-11 dsm_est 2.80015e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 3 dsm 2.35124e-12 dsm_est 4.97106e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 3.5 dsm 4.95306e-11 dsm_est 5.80236e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 4 dsm 8.59603e-12 dsm_est 1.06352e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 4.5 dsm 1.79514e-11 dsm_est 1.85019e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 5 dsm 5.55833e-13 dsm_est 3.8564e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 5.5 dsm 5.55567e-12 dsm_est 8.45467e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 6 dsm 1.76096e-11 dsm_est 4.93139e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 6.5 dsm 1.11841e-11 dsm_est 1.25239e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 7 dsm 6.13691e-10 dsm_est 3.21367e-10 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 7.5 dsm 6.67185e-12 dsm_est 2.01852e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 8 dsm 2.66859e-12 dsm_est 2.69462e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 8.5 dsm 3.51945e-13 dsm_est 2.30943e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 9 dsm 3.64277e-11 dsm_est 3.42167e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 9.5 dsm 3.63277e-13 dsm_est 8.54288e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 1 t 10 dsm 7.40044e-13 dsm_est 1.29607e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 0.5 dsm 2.26888e-11 dsm_est 0.000215739 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 1 dsm 7.15523e-12 dsm_est 4.17766e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.94281e-13 dsm_est 1.09002e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 2 dsm 1.29268e-11 dsm_est 5.51009e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 2.5 dsm 2.29196e-11 dsm_est 1.93625e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 3 dsm 2.35124e-12 dsm_est 1.7019e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.95306e-11 dsm_est 3.48996e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 4 dsm 8.59603e-12 dsm_est 3.42904e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 4.5 dsm 1.79514e-11 dsm_est 4.16857e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 5 dsm 5.55833e-13 dsm_est 6.98011e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 5.5 dsm 5.55567e-12 dsm_est 1.59487e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 6 dsm 1.76096e-11 dsm_est 6.89183e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 6.5 dsm 1.11841e-11 dsm_est 1.05452e-10 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 7 dsm 6.13691e-10 dsm_est 2.20883e-08 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 7.5 dsm 6.67185e-12 dsm_est 3.22951e-11 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 8 dsm 2.66859e-12 dsm_est 7.23043e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 8.5 dsm 3.51945e-13 dsm_est 5.8333e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 9 dsm 3.64277e-11 dsm_est 6.12775e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 9.5 dsm 3.63277e-13 dsm_est 8.15053e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 10 dsm 7.40044e-13 dsm_est 1.84414e-12 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 0.5 dsm 2.26888e-11 dsm_est 6.74185e-07 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 1 dsm 7.15523e-12 dsm_est 1.30552e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 1.5 dsm 1.94281e-13 dsm_est 3.40632e-16 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 2 dsm 1.29268e-11 dsm_est 1.7219e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 2.5 dsm 2.29196e-11 dsm_est 6.05078e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 3 dsm 2.35124e-12 dsm_est 5.31844e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 3.5 dsm 4.95306e-11 dsm_est 1.09061e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 4 dsm 8.59603e-12 dsm_est 1.07157e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 4.5 dsm 1.79514e-11 dsm_est 1.30268e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 5 dsm 5.55833e-13 dsm_est 2.18128e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 5.5 dsm 5.55567e-12 dsm_est 4.98396e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 6 dsm 1.76096e-11 dsm_est 2.1537e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 6.5 dsm 1.11841e-11 dsm_est 3.29539e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 7 dsm 6.13691e-10 dsm_est 6.90259e-11 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 7.5 dsm 6.67185e-12 dsm_est 1.00922e-13 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 8 dsm 2.66859e-12 dsm_est 2.25951e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 8.5 dsm 3.51945e-13 dsm_est 1.82291e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 9 dsm 3.64277e-11 dsm_est 1.91492e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 9.5 dsm 3.63277e-13 dsm_est 2.54704e-14 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 3 t 10 dsm 7.40044e-13 dsm_est 5.76293e-15 nsteps 320 + h 0.0015625 rk_type 0 order 4 acc 2 t 0.5 dsm 2.26888e-11 dsm_est 1.61003e-09 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 1 dsm 7.15523e-12 dsm_est 9.10564e-14 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.94281e-13 dsm_est 2.91967e-13 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 2 dsm 1.29268e-11 dsm_est 6.53736e-13 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 2.5 dsm 2.29196e-11 dsm_est 5.50325e-13 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 3 dsm 2.35124e-12 dsm_est 7.49135e-14 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.95306e-11 dsm_est 9.62546e-15 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 4 dsm 8.59603e-12 dsm_est 7.80849e-15 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 4.5 dsm 1.79514e-11 dsm_est 4.12067e-14 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 5 dsm 5.55833e-13 dsm_est 1.70927e-13 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 5.5 dsm 5.55567e-12 dsm_est 6.43718e-13 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 6 dsm 1.76096e-11 dsm_est 4.326e-12 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 6.5 dsm 1.11841e-11 dsm_est 1.65634e-10 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 7 dsm 6.13691e-10 dsm_est 4.52496e-10 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 7.5 dsm 6.67185e-12 dsm_est 4.93978e-11 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 8 dsm 2.66859e-12 dsm_est 2.22682e-11 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 8.5 dsm 3.51945e-13 dsm_est 3.07142e-12 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 9 dsm 3.64277e-11 dsm_est 1.51397e-12 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 9.5 dsm 3.63277e-13 dsm_est 5.17063e-13 nsteps 480 + h 0.0015625 rk_type 0 order 4 acc 2 t 10 dsm 7.40044e-13 dsm_est 1.42906e-13 nsteps 480 + h 0.000390625 rk_type 0 order 4 acc 1 t 0.5 dsm 1.04975e-12 dsm_est 8.14857e-06 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 1 dsm 7.15528e-12 dsm_est 5.09139e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 1.5 dsm 1.95611e-13 dsm_est 6.07302e-16 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 1 t 2 dsm 1.29267e-11 dsm_est 1.53989e-17 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 1 t 2.5 dsm 2.29196e-11 dsm_est 1.0968e-15 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 1 t 3 dsm 2.35137e-12 dsm_est 1.94415e-15 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 1 t 3.5 dsm 4.95306e-11 dsm_est 2.00256e-16 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 1 t 4 dsm 8.59596e-12 dsm_est 4.20507e-15 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 1 t 4.5 dsm 1.79515e-11 dsm_est 7.35392e-16 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 5 dsm 5.58262e-13 dsm_est 1.52133e-15 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 5.5 dsm 5.55618e-12 dsm_est 4.83102e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 6 dsm 1.76077e-11 dsm_est 4.7455e-16 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 6.5 dsm 7.57083e-13 dsm_est 4.89442e-15 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 7 dsm 3.3847e-12 dsm_est 1.27184e-12 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 7.5 dsm 5.7919e-12 dsm_est 8.41663e-15 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 8 dsm 2.19233e-12 dsm_est 5.00807e-16 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 8.5 dsm 4.31244e-13 dsm_est 2.05211e-16 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 9 dsm 3.64292e-11 dsm_est 1.34021e-16 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 9.5 dsm 3.853e-13 dsm_est 3.10121e-15 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 1 t 10 dsm 7.42015e-13 dsm_est 5.8246e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 0.5 dsm 1.04975e-12 dsm_est 1.25455e-05 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 1 dsm 7.15528e-12 dsm_est 7.48418e-15 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.95611e-13 dsm_est 4.31085e-15 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 2 t 2 dsm 1.29267e-11 dsm_est 9.40078e-15 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 2 t 2.5 dsm 2.29196e-11 dsm_est 3.17998e-14 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 2 t 3 dsm 2.35137e-12 dsm_est 2.91805e-14 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.95306e-11 dsm_est 7.00384e-15 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 2 t 4 dsm 8.59596e-12 dsm_est 1.16571e-14 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 2 t 4.5 dsm 1.79515e-11 dsm_est 8.23862e-15 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 5 dsm 5.58262e-13 dsm_est 1.33644e-14 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 5.5 dsm 5.55618e-12 dsm_est 2.52275e-14 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 6 dsm 1.76077e-11 dsm_est 1.08221e-13 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 6.5 dsm 7.57083e-13 dsm_est 1.6446e-12 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 7 dsm 3.3847e-12 dsm_est 3.48196e-10 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 7.5 dsm 5.7919e-12 dsm_est 5.14875e-13 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 8 dsm 2.19233e-12 dsm_est 1.13754e-13 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 8.5 dsm 4.31244e-13 dsm_est 9.13518e-14 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 9 dsm 3.64292e-11 dsm_est 9.61634e-14 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 9.5 dsm 3.853e-13 dsm_est 1.31289e-13 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 10 dsm 7.42015e-13 dsm_est 2.91761e-14 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 0.5 dsm 1.04975e-12 dsm_est 9.8012e-09 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 1 dsm 7.15528e-12 dsm_est 5.84701e-18 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 1.5 dsm 1.95611e-13 dsm_est 3.36785e-18 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 3 t 2 dsm 1.29267e-11 dsm_est 7.34436e-18 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 3 t 2.5 dsm 2.29196e-11 dsm_est 2.48436e-17 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 3 t 3 dsm 2.35137e-12 dsm_est 2.27972e-17 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 3 t 3.5 dsm 4.95306e-11 dsm_est 5.47175e-18 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 3 t 4 dsm 8.59596e-12 dsm_est 9.10708e-18 nsteps 1280 + h 0.000390625 rk_type 0 order 4 acc 3 t 4.5 dsm 1.79515e-11 dsm_est 6.43642e-18 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 5 dsm 5.58262e-13 dsm_est 1.04409e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 5.5 dsm 5.55618e-12 dsm_est 1.9709e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 6 dsm 1.76077e-11 dsm_est 8.45476e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 6.5 dsm 7.57083e-13 dsm_est 1.28485e-15 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 7 dsm 3.3847e-12 dsm_est 2.72028e-13 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 7.5 dsm 5.7919e-12 dsm_est 4.02246e-16 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 8 dsm 2.19233e-12 dsm_est 8.88701e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 8.5 dsm 4.31244e-13 dsm_est 7.13686e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 9 dsm 3.64292e-11 dsm_est 7.51277e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 9.5 dsm 3.853e-13 dsm_est 1.0257e-16 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 3 t 10 dsm 7.42015e-13 dsm_est 2.27938e-17 nsteps 1281 + h 0.000390625 rk_type 0 order 4 acc 2 t 0.5 dsm 1.04975e-12 dsm_est 4.1726e-13 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 1 dsm 7.15528e-12 dsm_est 2.05495e-15 nsteps 1922 + h 0.000390625 rk_type 0 order 4 acc 2 t 1.5 dsm 1.95611e-13 dsm_est 3.00465e-14 nsteps 1920 + h 0.000390625 rk_type 0 order 4 acc 2 t 2 dsm 1.29267e-11 dsm_est 4.07135e-14 nsteps 1920 + h 0.000390625 rk_type 0 order 4 acc 2 t 2.5 dsm 2.29196e-11 dsm_est 1.68718e-15 nsteps 1920 + h 0.000390625 rk_type 0 order 4 acc 2 t 3 dsm 2.35137e-12 dsm_est 1.22551e-15 nsteps 1920 + h 0.000390625 rk_type 0 order 4 acc 2 t 3.5 dsm 4.95306e-11 dsm_est 3.82116e-16 nsteps 1920 + h 0.000390625 rk_type 0 order 4 acc 2 t 4 dsm 8.59596e-12 dsm_est 7.07165e-16 nsteps 1920 + h 0.000390625 rk_type 0 order 4 acc 2 t 4.5 dsm 1.79515e-11 dsm_est 5.3217e-14 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 5 dsm 5.58262e-13 dsm_est 7.30286e-14 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 5.5 dsm 5.55618e-12 dsm_est 1.09489e-13 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 6 dsm 1.76077e-11 dsm_est 2.26004e-13 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 6.5 dsm 7.57083e-13 dsm_est 1.40948e-12 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 7 dsm 3.3847e-12 dsm_est 3.60737e-11 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 7.5 dsm 5.7919e-12 dsm_est 5.756e-13 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 8 dsm 2.19233e-12 dsm_est 5.0987e-13 nsteps 1921 + h 0.000390625 rk_type 0 order 4 acc 2 t 8.5 dsm 4.31244e-13 dsm_est 1.01518e-14 nsteps 1922 + h 0.000390625 rk_type 0 order 4 acc 2 t 9 dsm 3.64292e-11 dsm_est 3.54982e-15 nsteps 1922 + h 0.000390625 rk_type 0 order 4 acc 2 t 9.5 dsm 3.853e-13 dsm_est 3.0861e-15 nsteps 1922 + h 0.000390625 rk_type 0 order 4 acc 2 t 10 dsm 7.42015e-13 dsm_est 4.4064e-16 nsteps 1922 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_3_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_3_1.out index 8e2a11d1e1..1cf0dfe557 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_3_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_3_1.out @@ -8,182 +8,182 @@ Accumulated error estimation test (stiff Brusselator ODE problem): Adaptive-step runs: rtol 0.01 rk_type 1 order 3 acc 1 t 0.5 dsm 0.00199866 dsm_est 0.00993779 nsteps 492 - rtol 0.01 rk_type 1 order 3 acc 1 t 1 dsm 0.00148824 dsm_est 0.00998004 nsteps 473 - rtol 0.01 rk_type 1 order 3 acc 1 t 1.5 dsm 0.00330184 dsm_est 0.00995476 nsteps 459 - rtol 0.01 rk_type 1 order 3 acc 1 t 2 dsm 0.000346469 dsm_est 0.00994631 nsteps 450 - rtol 0.01 rk_type 1 order 3 acc 1 t 2.5 dsm 0.0103541 dsm_est 0.00997759 nsteps 430 - rtol 0.01 rk_type 1 order 3 acc 1 t 3 dsm 0.0108871 dsm_est 0.00988341 nsteps 447 - rtol 0.01 rk_type 1 order 3 acc 1 t 3.5 dsm 0.00245302 dsm_est 0.00996656 nsteps 465 - rtol 0.01 rk_type 1 order 3 acc 1 t 4 dsm 0.00613073 dsm_est 0.00995474 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 1 t 4.5 dsm 0.00368671 dsm_est 0.00994184 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 1 t 5 dsm 0.000382639 dsm_est 0.0099621 nsteps 466 - rtol 0.01 rk_type 1 order 3 acc 1 t 5.5 dsm 0.00138001 dsm_est 0.00996202 nsteps 443 - rtol 0.01 rk_type 1 order 3 acc 1 t 6 dsm 0.00204504 dsm_est 0.00995126 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 1 t 6.5 dsm 0.00544154 dsm_est 0.00991159 nsteps 465 - rtol 0.01 rk_type 1 order 3 acc 1 t 7 dsm 0.00167909 dsm_est 0.00996267 nsteps 459 - rtol 0.01 rk_type 1 order 3 acc 1 t 7.5 dsm 0.00762228 dsm_est 0.0099702 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 1 t 8 dsm 0.00815849 dsm_est 0.00996685 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 1 t 8.5 dsm 0.00479833 dsm_est 0.00996162 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 1 t 9 dsm 0.00530688 dsm_est 0.00991151 nsteps 460 - rtol 0.01 rk_type 1 order 3 acc 1 t 9.5 dsm 0.00453492 dsm_est 0.00996905 nsteps 461 - rtol 0.01 rk_type 1 order 3 acc 1 t 10 dsm 0.000530102 dsm_est 0.00998737 nsteps 461 + rtol 0.01 rk_type 1 order 3 acc 1 t 1 dsm 0.00106421 dsm_est 0.00988588 nsteps 455 + rtol 0.01 rk_type 1 order 3 acc 1 t 1.5 dsm 0.00199971 dsm_est 0.00996267 nsteps 459 + rtol 0.01 rk_type 1 order 3 acc 1 t 2 dsm 0.00329299 dsm_est 0.00998031 nsteps 429 + rtol 0.01 rk_type 1 order 3 acc 1 t 2.5 dsm 0.00114182 dsm_est 0.00997 nsteps 468 + rtol 0.01 rk_type 1 order 3 acc 1 t 3 dsm 0.00162904 dsm_est 0.00992725 nsteps 467 + rtol 0.01 rk_type 1 order 3 acc 1 t 3.5 dsm 0.0046787 dsm_est 0.00998329 nsteps 435 + rtol 0.01 rk_type 1 order 3 acc 1 t 4 dsm 0.00322077 dsm_est 0.00993725 nsteps 467 + rtol 0.01 rk_type 1 order 3 acc 1 t 4.5 dsm 0.00245861 dsm_est 0.00997016 nsteps 465 + rtol 0.01 rk_type 1 order 3 acc 1 t 5 dsm 0.00409642 dsm_est 0.00996759 nsteps 465 + rtol 0.01 rk_type 1 order 3 acc 1 t 5.5 dsm 0.00179504 dsm_est 0.00995326 nsteps 445 + rtol 0.01 rk_type 1 order 3 acc 1 t 6 dsm 0.00799031 dsm_est 0.00996956 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 1 t 6.5 dsm 0.00354102 dsm_est 0.0099938 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 1 t 7 dsm 0.00134227 dsm_est 0.00994473 nsteps 457 + rtol 0.01 rk_type 1 order 3 acc 1 t 7.5 dsm 0.00459954 dsm_est 0.00994346 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 1 t 8 dsm 0.00466533 dsm_est 0.00993528 nsteps 462 + rtol 0.01 rk_type 1 order 3 acc 1 t 8.5 dsm 0.00535101 dsm_est 0.00996655 nsteps 460 + rtol 0.01 rk_type 1 order 3 acc 1 t 9 dsm 0.00104129 dsm_est 0.00994319 nsteps 443 + rtol 0.01 rk_type 1 order 3 acc 1 t 9.5 dsm 0.0031725 dsm_est 0.00995386 nsteps 461 + rtol 0.01 rk_type 1 order 3 acc 1 t 10 dsm 0.0146302 dsm_est 0.00993152 nsteps 438 rtol 0.01 rk_type 1 order 3 acc 2 t 0.5 dsm 0.00199866 dsm_est 2.09808 nsteps 492 - rtol 0.01 rk_type 1 order 3 acc 2 t 1 dsm 0.00148824 dsm_est 1.89996 nsteps 473 - rtol 0.01 rk_type 1 order 3 acc 2 t 1.5 dsm 0.00330184 dsm_est 1.97327 nsteps 459 - rtol 0.01 rk_type 1 order 3 acc 2 t 2 dsm 0.000346469 dsm_est 1.9 nsteps 450 - rtol 0.01 rk_type 1 order 3 acc 2 t 2.5 dsm 0.0103541 dsm_est 1.68792 nsteps 430 - rtol 0.01 rk_type 1 order 3 acc 2 t 3 dsm 0.0108871 dsm_est 1.87188 nsteps 447 - rtol 0.01 rk_type 1 order 3 acc 2 t 3.5 dsm 0.00245302 dsm_est 1.9467 nsteps 465 - rtol 0.01 rk_type 1 order 3 acc 2 t 4 dsm 0.00613073 dsm_est 1.9405 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 2 t 4.5 dsm 0.00368671 dsm_est 1.94315 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 2 t 5 dsm 0.000382639 dsm_est 1.83475 nsteps 466 - rtol 0.01 rk_type 1 order 3 acc 2 t 5.5 dsm 0.00138001 dsm_est 1.86654 nsteps 443 - rtol 0.01 rk_type 1 order 3 acc 2 t 6 dsm 0.00204504 dsm_est 1.9419 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 2 t 6.5 dsm 0.00544154 dsm_est 1.96228 nsteps 465 - rtol 0.01 rk_type 1 order 3 acc 2 t 7 dsm 0.00167909 dsm_est 1.90643 nsteps 459 - rtol 0.01 rk_type 1 order 3 acc 2 t 7.5 dsm 0.00762228 dsm_est 1.79247 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 2 t 8 dsm 0.00815849 dsm_est 1.84371 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 2 t 8.5 dsm 0.00479833 dsm_est 1.97902 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 2 t 9 dsm 0.00530688 dsm_est 1.94856 nsteps 460 - rtol 0.01 rk_type 1 order 3 acc 2 t 9.5 dsm 0.00453492 dsm_est 1.91705 nsteps 461 - rtol 0.01 rk_type 1 order 3 acc 2 t 10 dsm 0.000530102 dsm_est 1.91042 nsteps 461 + rtol 0.01 rk_type 1 order 3 acc 2 t 1 dsm 0.00106421 dsm_est 1.21353 nsteps 455 + rtol 0.01 rk_type 1 order 3 acc 2 t 1.5 dsm 0.00199971 dsm_est 1.88038 nsteps 459 + rtol 0.01 rk_type 1 order 3 acc 2 t 2 dsm 0.00329299 dsm_est 1.71424 nsteps 429 + rtol 0.01 rk_type 1 order 3 acc 2 t 2.5 dsm 0.00114182 dsm_est 1.95117 nsteps 468 + rtol 0.01 rk_type 1 order 3 acc 2 t 3 dsm 0.00162904 dsm_est 1.95131 nsteps 467 + rtol 0.01 rk_type 1 order 3 acc 2 t 3.5 dsm 0.0046787 dsm_est 1.77349 nsteps 435 + rtol 0.01 rk_type 1 order 3 acc 2 t 4 dsm 0.00322077 dsm_est 1.96757 nsteps 467 + rtol 0.01 rk_type 1 order 3 acc 2 t 4.5 dsm 0.00245861 dsm_est 1.94412 nsteps 465 + rtol 0.01 rk_type 1 order 3 acc 2 t 5 dsm 0.00409642 dsm_est 1.94362 nsteps 465 + rtol 0.01 rk_type 1 order 3 acc 2 t 5.5 dsm 0.00179504 dsm_est 1.8531 nsteps 445 + rtol 0.01 rk_type 1 order 3 acc 2 t 6 dsm 0.00799031 dsm_est 1.94138 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 2 t 6.5 dsm 0.00354102 dsm_est 1.93987 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 2 t 7 dsm 0.00134227 dsm_est 1.93495 nsteps 457 + rtol 0.01 rk_type 1 order 3 acc 2 t 7.5 dsm 0.00459954 dsm_est 1.98076 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 2 t 8 dsm 0.00466533 dsm_est 1.95555 nsteps 462 + rtol 0.01 rk_type 1 order 3 acc 2 t 8.5 dsm 0.00535101 dsm_est 1.8248 nsteps 460 + rtol 0.01 rk_type 1 order 3 acc 2 t 9 dsm 0.00104129 dsm_est 1.88623 nsteps 443 + rtol 0.01 rk_type 1 order 3 acc 2 t 9.5 dsm 0.0031725 dsm_est 1.96475 nsteps 461 + rtol 0.01 rk_type 1 order 3 acc 2 t 10 dsm 0.0146302 dsm_est 1.81688 nsteps 438 rtol 0.01 rk_type 1 order 3 acc 3 t 0.5 dsm 0.00199866 dsm_est 0.00443873 nsteps 492 - rtol 0.01 rk_type 1 order 3 acc 3 t 1 dsm 0.00148824 dsm_est 0.00401521 nsteps 473 - rtol 0.01 rk_type 1 order 3 acc 3 t 1.5 dsm 0.00330184 dsm_est 0.00441678 nsteps 459 - rtol 0.01 rk_type 1 order 3 acc 3 t 2 dsm 0.000346469 dsm_est 0.00425191 nsteps 450 - rtol 0.01 rk_type 1 order 3 acc 3 t 2.5 dsm 0.0103541 dsm_est 0.00381705 nsteps 430 - rtol 0.01 rk_type 1 order 3 acc 3 t 3 dsm 0.0108871 dsm_est 0.0041182 nsteps 447 - rtol 0.01 rk_type 1 order 3 acc 3 t 3.5 dsm 0.00245302 dsm_est 0.00412426 nsteps 465 - rtol 0.01 rk_type 1 order 3 acc 3 t 4 dsm 0.00613073 dsm_est 0.00411939 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 3 t 4.5 dsm 0.00368671 dsm_est 0.00412003 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 3 t 5 dsm 0.000382639 dsm_est 0.00388215 nsteps 466 - rtol 0.01 rk_type 1 order 3 acc 3 t 5.5 dsm 0.00138001 dsm_est 0.00418117 nsteps 443 - rtol 0.01 rk_type 1 order 3 acc 3 t 6 dsm 0.00204504 dsm_est 0.00411411 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 3 t 6.5 dsm 0.00544154 dsm_est 0.00415099 nsteps 465 - rtol 0.01 rk_type 1 order 3 acc 3 t 7 dsm 0.00167909 dsm_est 0.00420804 nsteps 459 - rtol 0.01 rk_type 1 order 3 acc 3 t 7.5 dsm 0.00762228 dsm_est 0.00381522 nsteps 464 - rtol 0.01 rk_type 1 order 3 acc 3 t 8 dsm 0.00815849 dsm_est 0.00390452 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 3 t 8.5 dsm 0.00479833 dsm_est 0.0042077 nsteps 463 - rtol 0.01 rk_type 1 order 3 acc 3 t 9 dsm 0.00530688 dsm_est 0.00413179 nsteps 460 - rtol 0.01 rk_type 1 order 3 acc 3 t 9.5 dsm 0.00453492 dsm_est 0.00406231 nsteps 461 - rtol 0.01 rk_type 1 order 3 acc 3 t 10 dsm 0.000530102 dsm_est 0.00404373 nsteps 461 + rtol 0.01 rk_type 1 order 3 acc 3 t 1 dsm 0.00106421 dsm_est 0.00263327 nsteps 455 + rtol 0.01 rk_type 1 order 3 acc 3 t 1.5 dsm 0.00199971 dsm_est 0.00417144 nsteps 459 + rtol 0.01 rk_type 1 order 3 acc 3 t 2 dsm 0.00329299 dsm_est 0.00381769 nsteps 429 + rtol 0.01 rk_type 1 order 3 acc 3 t 2.5 dsm 0.00114182 dsm_est 0.00413126 nsteps 468 + rtol 0.01 rk_type 1 order 3 acc 3 t 3 dsm 0.00162904 dsm_est 0.00413416 nsteps 467 + rtol 0.01 rk_type 1 order 3 acc 3 t 3.5 dsm 0.0046787 dsm_est 0.00410869 nsteps 435 + rtol 0.01 rk_type 1 order 3 acc 3 t 4 dsm 0.00322077 dsm_est 0.00416496 nsteps 467 + rtol 0.01 rk_type 1 order 3 acc 3 t 4.5 dsm 0.00245861 dsm_est 0.00411711 nsteps 465 + rtol 0.01 rk_type 1 order 3 acc 3 t 5 dsm 0.00409642 dsm_est 0.00411704 nsteps 465 + rtol 0.01 rk_type 1 order 3 acc 3 t 5.5 dsm 0.00179504 dsm_est 0.00411253 nsteps 445 + rtol 0.01 rk_type 1 order 3 acc 3 t 6 dsm 0.00799031 dsm_est 0.00411472 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 3 t 6.5 dsm 0.00354102 dsm_est 0.00410793 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 3 t 7 dsm 0.00134227 dsm_est 0.00418475 nsteps 457 + rtol 0.01 rk_type 1 order 3 acc 3 t 7.5 dsm 0.00459954 dsm_est 0.00421263 nsteps 463 + rtol 0.01 rk_type 1 order 3 acc 3 t 8 dsm 0.00466533 dsm_est 0.00414045 nsteps 462 + rtol 0.01 rk_type 1 order 3 acc 3 t 8.5 dsm 0.00535101 dsm_est 0.0038704 nsteps 460 + rtol 0.01 rk_type 1 order 3 acc 3 t 9 dsm 0.00104129 dsm_est 0.00435605 nsteps 443 + rtol 0.01 rk_type 1 order 3 acc 3 t 9.5 dsm 0.0031725 dsm_est 0.00416873 nsteps 461 + rtol 0.01 rk_type 1 order 3 acc 3 t 10 dsm 0.0146302 dsm_est 0.00429602 nsteps 438 rtol 0.0001 rk_type 1 order 3 acc 1 t 0.5 dsm 4.52215e-05 dsm_est 9.69104e-05 nsteps 501 - rtol 0.0001 rk_type 1 order 3 acc 1 t 1 dsm 1.81631e-05 dsm_est 9.49781e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 1 t 1.5 dsm 2.77186e-05 dsm_est 9.49662e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 1 t 2 dsm 1.52803e-05 dsm_est 9.4909e-05 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 1 t 2.5 dsm 4.78098e-05 dsm_est 9.49489e-05 nsteps 464 - rtol 0.0001 rk_type 1 order 3 acc 1 t 3 dsm 2.25476e-05 dsm_est 9.47509e-05 nsteps 465 - rtol 0.0001 rk_type 1 order 3 acc 1 t 3.5 dsm 5.07755e-05 dsm_est 9.47129e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 1 t 4 dsm 2.29469e-05 dsm_est 9.49709e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 1 t 4.5 dsm 3.88359e-05 dsm_est 9.46293e-05 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 1 t 5 dsm 1.51443e-05 dsm_est 9.49444e-05 nsteps 469 - rtol 0.0001 rk_type 1 order 3 acc 1 t 5.5 dsm 1.12906e-05 dsm_est 9.45516e-05 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 1 t 6 dsm 2.05734e-05 dsm_est 9.49206e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 1 t 6.5 dsm 2.51686e-05 dsm_est 9.49703e-05 nsteps 481 - rtol 0.0001 rk_type 1 order 3 acc 1 t 7 dsm 6.45125e-05 dsm_est 9.93155e-05 nsteps 481 - rtol 0.0001 rk_type 1 order 3 acc 1 t 7.5 dsm 6.30239e-05 dsm_est 9.4983e-05 nsteps 475 - rtol 0.0001 rk_type 1 order 3 acc 1 t 8 dsm 2.85855e-05 dsm_est 9.44898e-05 nsteps 478 - rtol 0.0001 rk_type 1 order 3 acc 1 t 8.5 dsm 4.15619e-05 dsm_est 9.47874e-05 nsteps 480 - rtol 0.0001 rk_type 1 order 3 acc 1 t 9 dsm 9.3894e-06 dsm_est 9.91602e-05 nsteps 475 - rtol 0.0001 rk_type 1 order 3 acc 1 t 9.5 dsm 1.95141e-05 dsm_est 9.49246e-05 nsteps 482 - rtol 0.0001 rk_type 1 order 3 acc 1 t 10 dsm 2.83938e-05 dsm_est 9.5044e-05 nsteps 479 + rtol 0.0001 rk_type 1 order 3 acc 1 t 1 dsm 3.99241e-05 dsm_est 9.47039e-05 nsteps 472 + rtol 0.0001 rk_type 1 order 3 acc 1 t 1.5 dsm 1.53149e-05 dsm_est 9.80966e-05 nsteps 472 + rtol 0.0001 rk_type 1 order 3 acc 1 t 2 dsm 3.24266e-05 dsm_est 9.48094e-05 nsteps 461 + rtol 0.0001 rk_type 1 order 3 acc 1 t 2.5 dsm 5.5484e-05 dsm_est 9.48634e-05 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 1 t 3 dsm 6.02254e-05 dsm_est 9.49093e-05 nsteps 477 + rtol 0.0001 rk_type 1 order 3 acc 1 t 3.5 dsm 9.22476e-05 dsm_est 9.91902e-05 nsteps 471 + rtol 0.0001 rk_type 1 order 3 acc 1 t 4 dsm 4.83579e-05 dsm_est 9.49076e-05 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 1 t 4.5 dsm 7.40207e-05 dsm_est 9.48455e-05 nsteps 470 + rtol 0.0001 rk_type 1 order 3 acc 1 t 5 dsm 2.21361e-07 dsm_est 9.47129e-05 nsteps 469 + rtol 0.0001 rk_type 1 order 3 acc 1 t 5.5 dsm 1.83244e-05 dsm_est 9.93212e-05 nsteps 468 + rtol 0.0001 rk_type 1 order 3 acc 1 t 6 dsm 1.80189e-05 dsm_est 9.50469e-05 nsteps 475 + rtol 0.0001 rk_type 1 order 3 acc 1 t 6.5 dsm 0.000126547 dsm_est 9.45385e-05 nsteps 484 + rtol 0.0001 rk_type 1 order 3 acc 1 t 7 dsm 4.42502e-05 dsm_est 9.47877e-05 nsteps 466 + rtol 0.0001 rk_type 1 order 3 acc 1 t 7.5 dsm 1.91838e-06 dsm_est 9.48504e-05 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 1 t 8 dsm 0.000133797 dsm_est 9.49029e-05 nsteps 476 + rtol 0.0001 rk_type 1 order 3 acc 1 t 8.5 dsm 7.65072e-05 dsm_est 7.67293e-05 nsteps 479 + rtol 0.0001 rk_type 1 order 3 acc 1 t 9 dsm 2.1003e-05 dsm_est 9.47799e-05 nsteps 473 + rtol 0.0001 rk_type 1 order 3 acc 1 t 9.5 dsm 5.76125e-05 dsm_est 9.5027e-05 nsteps 481 + rtol 0.0001 rk_type 1 order 3 acc 1 t 10 dsm 4.81566e-05 dsm_est 9.489e-05 nsteps 476 rtol 0.0001 rk_type 1 order 3 acc 2 t 0.5 dsm 4.52215e-05 dsm_est 0.0204462 nsteps 501 - rtol 0.0001 rk_type 1 order 3 acc 2 t 1 dsm 1.81631e-05 dsm_est 0.0195291 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 2 t 1.5 dsm 2.77186e-05 dsm_est 0.018621 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 2 t 2 dsm 1.52803e-05 dsm_est 0.0193526 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 2 t 2.5 dsm 4.78098e-05 dsm_est 0.0188743 nsteps 464 - rtol 0.0001 rk_type 1 order 3 acc 2 t 3 dsm 2.25476e-05 dsm_est 0.0188411 nsteps 465 - rtol 0.0001 rk_type 1 order 3 acc 2 t 3.5 dsm 5.07755e-05 dsm_est 0.0186928 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 2 t 4 dsm 2.29469e-05 dsm_est 0.0192501 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 2 t 4.5 dsm 3.88359e-05 dsm_est 0.0190057 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 2 t 5 dsm 1.51443e-05 dsm_est 0.0192704 nsteps 469 - rtol 0.0001 rk_type 1 order 3 acc 2 t 5.5 dsm 1.12906e-05 dsm_est 0.0189727 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 2 t 6 dsm 2.05734e-05 dsm_est 0.0185915 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 2 t 6.5 dsm 2.51686e-05 dsm_est 0.0195025 nsteps 481 - rtol 0.0001 rk_type 1 order 3 acc 2 t 7 dsm 6.45125e-05 dsm_est 0.019722 nsteps 481 - rtol 0.0001 rk_type 1 order 3 acc 2 t 7.5 dsm 6.30239e-05 dsm_est 0.0180237 nsteps 475 - rtol 0.0001 rk_type 1 order 3 acc 2 t 8 dsm 2.85855e-05 dsm_est 0.019557 nsteps 478 - rtol 0.0001 rk_type 1 order 3 acc 2 t 8.5 dsm 4.15619e-05 dsm_est 0.0195763 nsteps 480 - rtol 0.0001 rk_type 1 order 3 acc 2 t 9 dsm 9.3894e-06 dsm_est 0.0195109 nsteps 475 - rtol 0.0001 rk_type 1 order 3 acc 2 t 9.5 dsm 1.95141e-05 dsm_est 0.0192328 nsteps 482 - rtol 0.0001 rk_type 1 order 3 acc 2 t 10 dsm 2.83938e-05 dsm_est 0.0195692 nsteps 479 + rtol 0.0001 rk_type 1 order 3 acc 2 t 1 dsm 3.99241e-05 dsm_est 0.018986 nsteps 472 + rtol 0.0001 rk_type 1 order 3 acc 2 t 1.5 dsm 1.53149e-05 dsm_est 0.0194753 nsteps 472 + rtol 0.0001 rk_type 1 order 3 acc 2 t 2 dsm 3.24266e-05 dsm_est 0.018749 nsteps 461 + rtol 0.0001 rk_type 1 order 3 acc 2 t 2.5 dsm 5.5484e-05 dsm_est 0.019394 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 2 t 3 dsm 6.02254e-05 dsm_est 0.01956 nsteps 477 + rtol 0.0001 rk_type 1 order 3 acc 2 t 3.5 dsm 9.22476e-05 dsm_est 0.0193791 nsteps 471 + rtol 0.0001 rk_type 1 order 3 acc 2 t 4 dsm 4.83579e-05 dsm_est 0.0195175 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 2 t 4.5 dsm 7.40207e-05 dsm_est 0.0190476 nsteps 470 + rtol 0.0001 rk_type 1 order 3 acc 2 t 5 dsm 2.21361e-07 dsm_est 0.0187313 nsteps 469 + rtol 0.0001 rk_type 1 order 3 acc 2 t 5.5 dsm 1.83244e-05 dsm_est 0.0193446 nsteps 468 + rtol 0.0001 rk_type 1 order 3 acc 2 t 6 dsm 1.80189e-05 dsm_est 0.0167981 nsteps 475 + rtol 0.0001 rk_type 1 order 3 acc 2 t 6.5 dsm 0.000126547 dsm_est 0.016047 nsteps 484 + rtol 0.0001 rk_type 1 order 3 acc 2 t 7 dsm 4.42502e-05 dsm_est 0.018985 nsteps 466 + rtol 0.0001 rk_type 1 order 3 acc 2 t 7.5 dsm 1.91838e-06 dsm_est 0.0188279 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 2 t 8 dsm 0.000133797 dsm_est 0.019646 nsteps 476 + rtol 0.0001 rk_type 1 order 3 acc 2 t 8.5 dsm 7.65072e-05 dsm_est 0.0215507 nsteps 479 + rtol 0.0001 rk_type 1 order 3 acc 2 t 9 dsm 2.1003e-05 dsm_est 0.0192609 nsteps 473 + rtol 0.0001 rk_type 1 order 3 acc 2 t 9.5 dsm 5.76125e-05 dsm_est 0.0194902 nsteps 481 + rtol 0.0001 rk_type 1 order 3 acc 2 t 10 dsm 4.81566e-05 dsm_est 0.0194896 nsteps 476 rtol 0.0001 rk_type 1 order 3 acc 3 t 0.5 dsm 4.52215e-05 dsm_est 4.27945e-05 nsteps 501 - rtol 0.0001 rk_type 1 order 3 acc 3 t 1 dsm 1.81631e-05 dsm_est 4.18953e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 3 t 1.5 dsm 2.77186e-05 dsm_est 4.01946e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 3 t 2 dsm 1.52803e-05 dsm_est 4.11232e-05 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 3 t 2.5 dsm 4.78098e-05 dsm_est 4.02797e-05 nsteps 464 - rtol 0.0001 rk_type 1 order 3 acc 3 t 3 dsm 2.25476e-05 dsm_est 4.21717e-05 nsteps 465 - rtol 0.0001 rk_type 1 order 3 acc 3 t 3.5 dsm 5.07755e-05 dsm_est 4.02733e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 3 t 4 dsm 2.29469e-05 dsm_est 4.06438e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 3 t 4.5 dsm 3.88359e-05 dsm_est 4.00905e-05 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 3 t 5 dsm 1.51443e-05 dsm_est 4.10729e-05 nsteps 469 - rtol 0.0001 rk_type 1 order 3 acc 3 t 5.5 dsm 1.12906e-05 dsm_est 4.00276e-05 nsteps 470 - rtol 0.0001 rk_type 1 order 3 acc 3 t 6 dsm 2.05734e-05 dsm_est 4.01607e-05 nsteps 474 - rtol 0.0001 rk_type 1 order 3 acc 3 t 6.5 dsm 2.51686e-05 dsm_est 4.12268e-05 nsteps 481 - rtol 0.0001 rk_type 1 order 3 acc 3 t 7 dsm 6.45125e-05 dsm_est 4.17595e-05 nsteps 481 - rtol 0.0001 rk_type 1 order 3 acc 3 t 7.5 dsm 6.30239e-05 dsm_est 3.85507e-05 nsteps 475 - rtol 0.0001 rk_type 1 order 3 acc 3 t 8 dsm 2.85855e-05 dsm_est 4.15334e-05 nsteps 478 - rtol 0.0001 rk_type 1 order 3 acc 3 t 8.5 dsm 4.15619e-05 dsm_est 4.13654e-05 nsteps 480 - rtol 0.0001 rk_type 1 order 3 acc 3 t 9 dsm 9.3894e-06 dsm_est 4.17504e-05 nsteps 475 - rtol 0.0001 rk_type 1 order 3 acc 3 t 9.5 dsm 1.95141e-05 dsm_est 4.05915e-05 nsteps 482 - rtol 0.0001 rk_type 1 order 3 acc 3 t 10 dsm 2.83938e-05 dsm_est 4.15708e-05 nsteps 479 - rtol 1e-06 rk_type 1 order 3 acc 1 t 0.5 dsm 6.49367e-08 dsm_est 9.89086e-07 nsteps 550 - rtol 1e-06 rk_type 1 order 3 acc 1 t 1 dsm 5.83524e-07 dsm_est 9.4678e-07 nsteps 488 - rtol 1e-06 rk_type 1 order 3 acc 1 t 1.5 dsm 2.01442e-08 dsm_est 9.47358e-07 nsteps 491 - rtol 1e-06 rk_type 1 order 3 acc 1 t 2 dsm 6.89174e-08 dsm_est 9.48104e-07 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 1 t 2.5 dsm 3.25214e-07 dsm_est 9.49113e-07 nsteps 463 - rtol 1e-06 rk_type 1 order 3 acc 1 t 3 dsm 3.48745e-07 dsm_est 9.48334e-07 nsteps 481 - rtol 1e-06 rk_type 1 order 3 acc 1 t 3.5 dsm 1.27971e-06 dsm_est 9.46641e-07 nsteps 484 - rtol 1e-06 rk_type 1 order 3 acc 1 t 4 dsm 5.22124e-07 dsm_est 9.49243e-07 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 1 t 4.5 dsm 6.25795e-07 dsm_est 9.48421e-07 nsteps 486 - rtol 1e-06 rk_type 1 order 3 acc 1 t 5 dsm 5.82624e-07 dsm_est 9.48091e-07 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 1 t 5.5 dsm 5.29296e-07 dsm_est 9.82269e-07 nsteps 483 - rtol 1e-06 rk_type 1 order 3 acc 1 t 6 dsm 3.47222e-07 dsm_est 9.87002e-07 nsteps 484 - rtol 1e-06 rk_type 1 order 3 acc 1 t 6.5 dsm 8.05504e-07 dsm_est 9.48638e-07 nsteps 477 - rtol 1e-06 rk_type 1 order 3 acc 1 t 7 dsm 4.05624e-08 dsm_est 9.61095e-07 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 1 t 7.5 dsm 7.28832e-08 dsm_est 9.4602e-07 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 1 t 8 dsm 9.01356e-07 dsm_est 9.48084e-07 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 1 t 8.5 dsm 9.82212e-07 dsm_est 9.4573e-07 nsteps 489 - rtol 1e-06 rk_type 1 order 3 acc 1 t 9 dsm 2.03978e-07 dsm_est 9.47478e-07 nsteps 468 - rtol 1e-06 rk_type 1 order 3 acc 1 t 9.5 dsm 2.77163e-07 dsm_est 9.49943e-07 nsteps 475 - rtol 1e-06 rk_type 1 order 3 acc 1 t 10 dsm 4.2482e-07 dsm_est 9.47165e-07 nsteps 476 - rtol 1e-06 rk_type 1 order 3 acc 2 t 0.5 dsm 6.49367e-08 dsm_est 0.000190015 nsteps 550 - rtol 1e-06 rk_type 1 order 3 acc 2 t 1 dsm 5.83524e-07 dsm_est 0.000191707 nsteps 488 - rtol 1e-06 rk_type 1 order 3 acc 2 t 1.5 dsm 2.01442e-08 dsm_est 0.000154747 nsteps 491 - rtol 1e-06 rk_type 1 order 3 acc 2 t 2 dsm 6.89174e-08 dsm_est 0.000191171 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 2 t 2.5 dsm 3.25214e-07 dsm_est 0.000189145 nsteps 463 - rtol 1e-06 rk_type 1 order 3 acc 2 t 3 dsm 3.48745e-07 dsm_est 0.000193684 nsteps 481 - rtol 1e-06 rk_type 1 order 3 acc 2 t 3.5 dsm 1.27971e-06 dsm_est 0.000198922 nsteps 484 - rtol 1e-06 rk_type 1 order 3 acc 2 t 4 dsm 5.22124e-07 dsm_est 0.000197072 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 2 t 4.5 dsm 6.25795e-07 dsm_est 0.000191436 nsteps 486 - rtol 1e-06 rk_type 1 order 3 acc 2 t 5 dsm 5.82624e-07 dsm_est 0.000196185 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 2 t 5.5 dsm 5.29296e-07 dsm_est 0.000199124 nsteps 483 - rtol 1e-06 rk_type 1 order 3 acc 2 t 6 dsm 3.47222e-07 dsm_est 0.000199936 nsteps 484 - rtol 1e-06 rk_type 1 order 3 acc 2 t 6.5 dsm 8.05504e-07 dsm_est 0.000193196 nsteps 477 - rtol 1e-06 rk_type 1 order 3 acc 2 t 7 dsm 4.05624e-08 dsm_est 0.000198041 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 2 t 7.5 dsm 7.28832e-08 dsm_est 0.000199497 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 2 t 8 dsm 9.01356e-07 dsm_est 0.000197732 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 2 t 8.5 dsm 9.82212e-07 dsm_est 0.000189126 nsteps 489 - rtol 1e-06 rk_type 1 order 3 acc 2 t 9 dsm 2.03978e-07 dsm_est 0.000189873 nsteps 468 - rtol 1e-06 rk_type 1 order 3 acc 2 t 9.5 dsm 2.77163e-07 dsm_est 0.000192779 nsteps 475 - rtol 1e-06 rk_type 1 order 3 acc 2 t 10 dsm 4.2482e-07 dsm_est 0.000186705 nsteps 476 - rtol 1e-06 rk_type 1 order 3 acc 3 t 0.5 dsm 6.49367e-08 dsm_est 3.76189e-07 nsteps 550 - rtol 1e-06 rk_type 1 order 3 acc 3 t 1 dsm 5.83524e-07 dsm_est 4.03986e-07 nsteps 488 - rtol 1e-06 rk_type 1 order 3 acc 3 t 1.5 dsm 2.01442e-08 dsm_est 3.17531e-07 nsteps 491 - rtol 1e-06 rk_type 1 order 3 acc 3 t 2 dsm 6.89174e-08 dsm_est 4.03334e-07 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 3 t 2.5 dsm 3.25214e-07 dsm_est 4.26069e-07 nsteps 463 - rtol 1e-06 rk_type 1 order 3 acc 3 t 3 dsm 3.48745e-07 dsm_est 4.13425e-07 nsteps 481 - rtol 1e-06 rk_type 1 order 3 acc 3 t 3.5 dsm 1.27971e-06 dsm_est 4.2656e-07 nsteps 484 - rtol 1e-06 rk_type 1 order 3 acc 3 t 4 dsm 5.22124e-07 dsm_est 4.19481e-07 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 3 t 4.5 dsm 6.25795e-07 dsm_est 4.03617e-07 nsteps 486 - rtol 1e-06 rk_type 1 order 3 acc 3 t 5 dsm 5.82624e-07 dsm_est 4.13815e-07 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 3 t 5.5 dsm 5.29296e-07 dsm_est 4.27331e-07 nsteps 483 - rtol 1e-06 rk_type 1 order 3 acc 3 t 6 dsm 3.47222e-07 dsm_est 4.28557e-07 nsteps 484 - rtol 1e-06 rk_type 1 order 3 acc 3 t 6.5 dsm 8.05504e-07 dsm_est 4.16753e-07 nsteps 477 - rtol 1e-06 rk_type 1 order 3 acc 3 t 7 dsm 4.05624e-08 dsm_est 4.18718e-07 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 3 t 7.5 dsm 7.28832e-08 dsm_est 4.22063e-07 nsteps 487 - rtol 1e-06 rk_type 1 order 3 acc 3 t 8 dsm 9.01356e-07 dsm_est 4.22563e-07 nsteps 485 - rtol 1e-06 rk_type 1 order 3 acc 3 t 8.5 dsm 9.82212e-07 dsm_est 3.97686e-07 nsteps 489 - rtol 1e-06 rk_type 1 order 3 acc 3 t 9 dsm 2.03978e-07 dsm_est 4.06169e-07 nsteps 468 - rtol 1e-06 rk_type 1 order 3 acc 3 t 9.5 dsm 2.77163e-07 dsm_est 4.12601e-07 nsteps 475 - rtol 1e-06 rk_type 1 order 3 acc 3 t 10 dsm 4.2482e-07 dsm_est 3.9924e-07 nsteps 476 + rtol 0.0001 rk_type 1 order 3 acc 3 t 1 dsm 3.99241e-05 dsm_est 4.01135e-05 nsteps 472 + rtol 0.0001 rk_type 1 order 3 acc 3 t 1.5 dsm 1.53149e-05 dsm_est 4.22745e-05 nsteps 472 + rtol 0.0001 rk_type 1 order 3 acc 3 t 2 dsm 3.24266e-05 dsm_est 4.00912e-05 nsteps 461 + rtol 0.0001 rk_type 1 order 3 acc 3 t 2.5 dsm 5.5484e-05 dsm_est 4.09838e-05 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 3 t 3 dsm 6.02254e-05 dsm_est 4.16907e-05 nsteps 477 + rtol 0.0001 rk_type 1 order 3 acc 3 t 3.5 dsm 9.22476e-05 dsm_est 4.23018e-05 nsteps 471 + rtol 0.0001 rk_type 1 order 3 acc 3 t 4 dsm 4.83579e-05 dsm_est 4.17279e-05 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 3 t 4.5 dsm 7.40207e-05 dsm_est 4.02222e-05 nsteps 470 + rtol 0.0001 rk_type 1 order 3 acc 3 t 5 dsm 2.21361e-07 dsm_est 3.95825e-05 nsteps 469 + rtol 0.0001 rk_type 1 order 3 acc 3 t 5.5 dsm 1.83244e-05 dsm_est 4.09798e-05 nsteps 468 + rtol 0.0001 rk_type 1 order 3 acc 3 t 6 dsm 1.80189e-05 dsm_est 3.60597e-05 nsteps 475 + rtol 0.0001 rk_type 1 order 3 acc 3 t 6.5 dsm 0.000126547 dsm_est 3.31885e-05 nsteps 484 + rtol 0.0001 rk_type 1 order 3 acc 3 t 7 dsm 4.42502e-05 dsm_est 4.15116e-05 nsteps 466 + rtol 0.0001 rk_type 1 order 3 acc 3 t 7.5 dsm 1.91838e-06 dsm_est 4.03483e-05 nsteps 474 + rtol 0.0001 rk_type 1 order 3 acc 3 t 8 dsm 0.000133797 dsm_est 4.20563e-05 nsteps 476 + rtol 0.0001 rk_type 1 order 3 acc 3 t 8.5 dsm 7.65072e-05 dsm_est 4.42925e-05 nsteps 479 + rtol 0.0001 rk_type 1 order 3 acc 3 t 9 dsm 2.1003e-05 dsm_est 4.09156e-05 nsteps 473 + rtol 0.0001 rk_type 1 order 3 acc 3 t 9.5 dsm 5.76125e-05 dsm_est 4.12459e-05 nsteps 481 + rtol 0.0001 rk_type 1 order 3 acc 3 t 10 dsm 4.81566e-05 dsm_est 4.12051e-05 nsteps 476 + rtol 1e-06 rk_type 1 order 3 acc 1 t 0.5 dsm 6.49122e-08 dsm_est 9.89086e-07 nsteps 550 + rtol 1e-06 rk_type 1 order 3 acc 1 t 1 dsm 1.27628e-06 dsm_est 9.49113e-07 nsteps 482 + rtol 1e-06 rk_type 1 order 3 acc 1 t 1.5 dsm 8.17753e-08 dsm_est 5.18875e-07 nsteps 492 + rtol 1e-06 rk_type 1 order 3 acc 1 t 2 dsm 3.82421e-07 dsm_est 9.48791e-07 nsteps 451 + rtol 1e-06 rk_type 1 order 3 acc 1 t 2.5 dsm 1.68038e-07 dsm_est 9.49612e-07 nsteps 490 + rtol 1e-06 rk_type 1 order 3 acc 1 t 3 dsm 4.12466e-07 dsm_est 9.434e-07 nsteps 490 + rtol 1e-06 rk_type 1 order 3 acc 1 t 3.5 dsm 1.97295e-08 dsm_est 9.47224e-07 nsteps 484 + rtol 1e-06 rk_type 1 order 3 acc 1 t 4 dsm 1.00774e-06 dsm_est 9.47879e-07 nsteps 488 + rtol 1e-06 rk_type 1 order 3 acc 1 t 4.5 dsm 8.69323e-07 dsm_est 9.45072e-07 nsteps 487 + rtol 1e-06 rk_type 1 order 3 acc 1 t 5 dsm 2.68657e-08 dsm_est 9.49983e-07 nsteps 487 + rtol 1e-06 rk_type 1 order 3 acc 1 t 5.5 dsm 1.03533e-07 dsm_est 9.47692e-07 nsteps 484 + rtol 1e-06 rk_type 1 order 3 acc 1 t 6 dsm 4.13867e-08 dsm_est 9.48869e-07 nsteps 489 + rtol 1e-06 rk_type 1 order 3 acc 1 t 6.5 dsm 5.69954e-07 dsm_est 9.50081e-07 nsteps 478 + rtol 1e-06 rk_type 1 order 3 acc 1 t 7 dsm 1.02584e-07 dsm_est 9.58693e-07 nsteps 486 + rtol 1e-06 rk_type 1 order 3 acc 1 t 7.5 dsm 2.25716e-07 dsm_est 9.44682e-07 nsteps 488 + rtol 1e-06 rk_type 1 order 3 acc 1 t 8 dsm 4.634e-07 dsm_est 9.6527e-07 nsteps 467 + rtol 1e-06 rk_type 1 order 3 acc 1 t 8.5 dsm 8.12817e-08 dsm_est 9.49176e-07 nsteps 465 + rtol 1e-06 rk_type 1 order 3 acc 1 t 9 dsm 2.73757e-07 dsm_est 9.46798e-07 nsteps 469 + rtol 1e-06 rk_type 1 order 3 acc 1 t 9.5 dsm 2.38469e-07 dsm_est 9.49217e-07 nsteps 476 + rtol 1e-06 rk_type 1 order 3 acc 1 t 10 dsm 5.40338e-08 dsm_est 9.44032e-07 nsteps 476 + rtol 1e-06 rk_type 1 order 3 acc 2 t 0.5 dsm 6.49122e-08 dsm_est 0.000190015 nsteps 550 + rtol 1e-06 rk_type 1 order 3 acc 2 t 1 dsm 1.27628e-06 dsm_est 0.00019127 nsteps 482 + rtol 1e-06 rk_type 1 order 3 acc 2 t 1.5 dsm 8.17753e-08 dsm_est 0.000166868 nsteps 492 + rtol 1e-06 rk_type 1 order 3 acc 2 t 2 dsm 3.82421e-07 dsm_est 0.000184507 nsteps 451 + rtol 1e-06 rk_type 1 order 3 acc 2 t 2.5 dsm 1.68038e-07 dsm_est 0.000164672 nsteps 490 + rtol 1e-06 rk_type 1 order 3 acc 2 t 3 dsm 4.12466e-07 dsm_est 0.00016048 nsteps 490 + rtol 1e-06 rk_type 1 order 3 acc 2 t 3.5 dsm 1.97295e-08 dsm_est 0.000188261 nsteps 484 + rtol 1e-06 rk_type 1 order 3 acc 2 t 4 dsm 1.00774e-06 dsm_est 0.000194637 nsteps 488 + rtol 1e-06 rk_type 1 order 3 acc 2 t 4.5 dsm 8.69323e-07 dsm_est 0.000194712 nsteps 487 + rtol 1e-06 rk_type 1 order 3 acc 2 t 5 dsm 2.68657e-08 dsm_est 0.000196283 nsteps 487 + rtol 1e-06 rk_type 1 order 3 acc 2 t 5.5 dsm 1.03533e-07 dsm_est 0.000188256 nsteps 484 + rtol 1e-06 rk_type 1 order 3 acc 2 t 6 dsm 4.13867e-08 dsm_est 0.000158674 nsteps 489 + rtol 1e-06 rk_type 1 order 3 acc 2 t 6.5 dsm 5.69954e-07 dsm_est 0.000187973 nsteps 478 + rtol 1e-06 rk_type 1 order 3 acc 2 t 7 dsm 1.02584e-07 dsm_est 0.000199188 nsteps 486 + rtol 1e-06 rk_type 1 order 3 acc 2 t 7.5 dsm 2.25716e-07 dsm_est 0.000199534 nsteps 488 + rtol 1e-06 rk_type 1 order 3 acc 2 t 8 dsm 4.634e-07 dsm_est 0.000190718 nsteps 467 + rtol 1e-06 rk_type 1 order 3 acc 2 t 8.5 dsm 8.12817e-08 dsm_est 0.000188435 nsteps 465 + rtol 1e-06 rk_type 1 order 3 acc 2 t 9 dsm 2.73757e-07 dsm_est 0.000186868 nsteps 469 + rtol 1e-06 rk_type 1 order 3 acc 2 t 9.5 dsm 2.38469e-07 dsm_est 0.000192472 nsteps 476 + rtol 1e-06 rk_type 1 order 3 acc 2 t 10 dsm 5.40338e-08 dsm_est 0.000184705 nsteps 476 + rtol 1e-06 rk_type 1 order 3 acc 3 t 0.5 dsm 6.49122e-08 dsm_est 3.76189e-07 nsteps 550 + rtol 1e-06 rk_type 1 order 3 acc 3 t 1 dsm 1.27628e-06 dsm_est 4.04839e-07 nsteps 482 + rtol 1e-06 rk_type 1 order 3 acc 3 t 1.5 dsm 8.17753e-08 dsm_est 3.37786e-07 nsteps 492 + rtol 1e-06 rk_type 1 order 3 acc 3 t 2 dsm 3.82421e-07 dsm_est 4.30499e-07 nsteps 451 + rtol 1e-06 rk_type 1 order 3 acc 3 t 2.5 dsm 1.68038e-07 dsm_est 3.40908e-07 nsteps 490 + rtol 1e-06 rk_type 1 order 3 acc 3 t 3 dsm 4.12466e-07 dsm_est 3.31033e-07 nsteps 490 + rtol 1e-06 rk_type 1 order 3 acc 3 t 3.5 dsm 1.97295e-08 dsm_est 3.97564e-07 nsteps 484 + rtol 1e-06 rk_type 1 order 3 acc 3 t 4 dsm 1.00774e-06 dsm_est 4.10428e-07 nsteps 488 + rtol 1e-06 rk_type 1 order 3 acc 3 t 4.5 dsm 8.69323e-07 dsm_est 4.10709e-07 nsteps 487 + rtol 1e-06 rk_type 1 order 3 acc 3 t 5 dsm 2.68657e-08 dsm_est 4.14037e-07 nsteps 487 + rtol 1e-06 rk_type 1 order 3 acc 3 t 5.5 dsm 1.03533e-07 dsm_est 3.97097e-07 nsteps 484 + rtol 1e-06 rk_type 1 order 3 acc 3 t 6 dsm 4.13867e-08 dsm_est 3.27737e-07 nsteps 489 + rtol 1e-06 rk_type 1 order 3 acc 3 t 6.5 dsm 5.69954e-07 dsm_est 4.01481e-07 nsteps 478 + rtol 1e-06 rk_type 1 order 3 acc 3 t 7 dsm 1.02584e-07 dsm_est 4.21459e-07 nsteps 486 + rtol 1e-06 rk_type 1 order 3 acc 3 t 7.5 dsm 2.25716e-07 dsm_est 4.21639e-07 nsteps 488 + rtol 1e-06 rk_type 1 order 3 acc 3 t 8 dsm 4.634e-07 dsm_est 4.46331e-07 nsteps 467 + rtol 1e-06 rk_type 1 order 3 acc 3 t 8.5 dsm 8.12817e-08 dsm_est 4.25211e-07 nsteps 465 + rtol 1e-06 rk_type 1 order 3 acc 3 t 9 dsm 2.73757e-07 dsm_est 4.03395e-07 nsteps 469 + rtol 1e-06 rk_type 1 order 3 acc 3 t 9.5 dsm 2.38469e-07 dsm_est 4.11664e-07 nsteps 476 + rtol 1e-06 rk_type 1 order 3 acc 3 t 10 dsm 5.40338e-08 dsm_est 3.9215e-07 nsteps 476 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_5_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_5_0.out index 36b63bfbfd..a74b6f3b38 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_5_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_brusselator_20_5_0.out @@ -7,183 +7,183 @@ Accumulated error estimation test (stiff Brusselator ODE problem): DIRK solver, order = 5 Adaptive-step runs: - rtol 0.01 rk_type 0 order 5 acc 1 t 0.5 dsm 7.48644e-05 dsm_est 3.4373e-05 nsteps 9 - rtol 0.01 rk_type 0 order 5 acc 1 t 1 dsm 0.000110257 dsm_est 2.23308e-06 nsteps 5 - rtol 0.01 rk_type 0 order 5 acc 1 t 1.5 dsm 0.00132404 dsm_est 2.08137e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 2 dsm 0.00110273 dsm_est 6.3665e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 2.5 dsm 6.10485e-05 dsm_est 1.85399e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 3 dsm 0.000275174 dsm_est 6.46876e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 3.5 dsm 0.00032811 dsm_est 1.68426e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 4 dsm 7.35974e-05 dsm_est 4.88814e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 4.5 dsm 0.000394423 dsm_est 1.74045e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 5 dsm 4.44693e-05 dsm_est 4.77027e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 5.5 dsm 0.000153383 dsm_est 6.89334e-07 nsteps 5 - rtol 0.01 rk_type 0 order 5 acc 1 t 6 dsm 0.00039377 dsm_est 3.77896e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 6.5 dsm 0.000506258 dsm_est 1.01998e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 7 dsm 0.00148699 dsm_est 4.63864e-05 nsteps 12 - rtol 0.01 rk_type 0 order 5 acc 1 t 7.5 dsm 0.000435975 dsm_est 0.000225656 nsteps 4 - rtol 0.01 rk_type 0 order 5 acc 1 t 8 dsm 0.000824606 dsm_est 1.36787e-05 nsteps 7 - rtol 0.01 rk_type 0 order 5 acc 1 t 8.5 dsm 0.00100819 dsm_est 1.09309e-05 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 9 dsm 0.00058073 dsm_est 4.52926e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 9.5 dsm 6.70214e-05 dsm_est 2.50118e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 1 t 10 dsm 0.000490488 dsm_est 4.64334e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 0.5 dsm 7.48644e-05 dsm_est 5.4592e-05 nsteps 9 - rtol 0.01 rk_type 0 order 5 acc 2 t 1 dsm 0.000110257 dsm_est 2.23312e-06 nsteps 5 - rtol 0.01 rk_type 0 order 5 acc 2 t 1.5 dsm 0.00132404 dsm_est 2.37777e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 2 dsm 0.00110273 dsm_est 8.17396e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 2.5 dsm 6.10485e-05 dsm_est 3.28054e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 3 dsm 0.000275174 dsm_est 6.76339e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 3.5 dsm 0.00032811 dsm_est 1.69526e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 4 dsm 7.35974e-05 dsm_est 4.93897e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 4.5 dsm 0.000394423 dsm_est 1.74465e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 5 dsm 4.44693e-05 dsm_est 4.91596e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 5.5 dsm 0.000153383 dsm_est 6.90221e-07 nsteps 5 - rtol 0.01 rk_type 0 order 5 acc 2 t 6 dsm 0.00039377 dsm_est 4.6301e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 6.5 dsm 0.000506258 dsm_est 1.7875e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 7 dsm 0.00148699 dsm_est 7.28369e-05 nsteps 12 - rtol 0.01 rk_type 0 order 5 acc 2 t 7.5 dsm 0.000435975 dsm_est 0.000234031 nsteps 4 - rtol 0.01 rk_type 0 order 5 acc 2 t 8 dsm 0.000824606 dsm_est 2.56036e-05 nsteps 7 - rtol 0.01 rk_type 0 order 5 acc 2 t 8.5 dsm 0.00100819 dsm_est 1.09812e-05 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 9 dsm 0.00058073 dsm_est 4.93642e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 9.5 dsm 6.70214e-05 dsm_est 2.55332e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 2 t 10 dsm 0.000490488 dsm_est 4.66143e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 0.5 dsm 7.48644e-05 dsm_est 8.43563e-06 nsteps 9 - rtol 0.01 rk_type 0 order 5 acc 3 t 1 dsm 0.000110257 dsm_est 1.92448e-06 nsteps 5 - rtol 0.01 rk_type 0 order 5 acc 3 t 1.5 dsm 0.00132404 dsm_est 1.36392e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 2 dsm 0.00110273 dsm_est 3.97765e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 2.5 dsm 6.10485e-05 dsm_est 1.42453e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 3 dsm 0.000275174 dsm_est 3.75126e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 3.5 dsm 0.00032811 dsm_est 1.23035e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 4 dsm 7.35974e-05 dsm_est 3.49622e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 4.5 dsm 0.000394423 dsm_est 1.33208e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 5 dsm 4.44693e-05 dsm_est 3.3167e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 5.5 dsm 0.000153383 dsm_est 5.43622e-07 nsteps 5 - rtol 0.01 rk_type 0 order 5 acc 3 t 6 dsm 0.00039377 dsm_est 1.51647e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 6.5 dsm 0.000506258 dsm_est 6.62913e-07 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 7 dsm 0.00148699 dsm_est 1.33552e-05 nsteps 12 - rtol 0.01 rk_type 0 order 5 acc 3 t 7.5 dsm 0.000435975 dsm_est 0.000128373 nsteps 4 - rtol 0.01 rk_type 0 order 5 acc 3 t 8 dsm 0.000824606 dsm_est 9.87403e-06 nsteps 7 - rtol 0.01 rk_type 0 order 5 acc 3 t 8.5 dsm 0.00100819 dsm_est 5.15624e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 9 dsm 0.00058073 dsm_est 2.61771e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 9.5 dsm 6.70214e-05 dsm_est 1.42911e-06 nsteps 6 - rtol 0.01 rk_type 0 order 5 acc 3 t 10 dsm 0.000490488 dsm_est 3.46267e-06 nsteps 6 - rtol 0.0001 rk_type 0 order 5 acc 1 t 0.5 dsm 1.9124e-05 dsm_est 4.10549e-06 nsteps 13 - rtol 0.0001 rk_type 0 order 5 acc 1 t 1 dsm 1.46639e-06 dsm_est 2.99051e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 1.5 dsm 1.49779e-06 dsm_est 2.8794e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 2 dsm 2.48711e-06 dsm_est 5.23997e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 2.5 dsm 8.68487e-07 dsm_est 8.11031e-09 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 3 dsm 4.6854e-06 dsm_est 3.54429e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 1 t 3.5 dsm 4.86491e-06 dsm_est 1.27286e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 1 t 4 dsm 9.38226e-06 dsm_est 6.18062e-10 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 4.5 dsm 3.64804e-06 dsm_est 5.92484e-10 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 5 dsm 1.20837e-06 dsm_est 1.11283e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 5.5 dsm 1.96373e-05 dsm_est 1.16786e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 1 t 6 dsm 6.78601e-06 dsm_est 5.56249e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 1 t 6.5 dsm 3.28653e-05 dsm_est 5.49255e-08 nsteps 8 - rtol 0.0001 rk_type 0 order 5 acc 1 t 7 dsm 1.0851e-05 dsm_est 2.95421e-06 nsteps 17 - rtol 0.0001 rk_type 0 order 5 acc 1 t 7.5 dsm 8.11463e-06 dsm_est 7.59043e-08 nsteps 13 - rtol 0.0001 rk_type 0 order 5 acc 1 t 8 dsm 1.12113e-05 dsm_est 6.59216e-08 nsteps 7 - rtol 0.0001 rk_type 0 order 5 acc 1 t 8.5 dsm 7.59151e-06 dsm_est 8.65901e-08 nsteps 5 - rtol 0.0001 rk_type 0 order 5 acc 1 t 9 dsm 1.10466e-05 dsm_est 2.02617e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 1 t 9.5 dsm 1.12334e-05 dsm_est 1.10517e-07 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 1 t 10 dsm 9.05222e-07 dsm_est 1.64841e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 2 t 0.5 dsm 1.9124e-05 dsm_est 5.71969e-06 nsteps 13 - rtol 0.0001 rk_type 0 order 5 acc 2 t 1 dsm 1.46639e-06 dsm_est 2.99989e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 1.5 dsm 1.49779e-06 dsm_est 2.89735e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 2 dsm 2.48711e-06 dsm_est 5.35748e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 2.5 dsm 8.68487e-07 dsm_est 1.05987e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 3 dsm 4.6854e-06 dsm_est 3.58967e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 2 t 3.5 dsm 4.86491e-06 dsm_est 1.53193e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 2 t 4 dsm 9.38226e-06 dsm_est 1.14771e-09 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 4.5 dsm 3.64804e-06 dsm_est 8.14332e-10 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 5 dsm 1.20837e-06 dsm_est 1.18132e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 5.5 dsm 1.96373e-05 dsm_est 1.51402e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 2 t 6 dsm 6.78601e-06 dsm_est 8.14402e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 2 t 6.5 dsm 3.28653e-05 dsm_est 1.13828e-07 nsteps 8 - rtol 0.0001 rk_type 0 order 5 acc 2 t 7 dsm 1.0851e-05 dsm_est 4.33597e-06 nsteps 17 - rtol 0.0001 rk_type 0 order 5 acc 2 t 7.5 dsm 8.11463e-06 dsm_est 2.04239e-07 nsteps 13 - rtol 0.0001 rk_type 0 order 5 acc 2 t 8 dsm 1.12113e-05 dsm_est 6.62221e-08 nsteps 7 - rtol 0.0001 rk_type 0 order 5 acc 2 t 8.5 dsm 7.59151e-06 dsm_est 8.67008e-08 nsteps 5 - rtol 0.0001 rk_type 0 order 5 acc 2 t 9 dsm 1.10466e-05 dsm_est 3.06823e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 2 t 9.5 dsm 1.12334e-05 dsm_est 1.36785e-07 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 2 t 10 dsm 9.05222e-07 dsm_est 3.2806e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 3 t 0.5 dsm 1.9124e-05 dsm_est 8.037e-08 nsteps 13 - rtol 0.0001 rk_type 0 order 5 acc 3 t 1 dsm 1.46639e-06 dsm_est 1.96624e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 1.5 dsm 1.49779e-06 dsm_est 1.97143e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 2 dsm 2.48711e-06 dsm_est 3.32323e-08 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 2.5 dsm 8.68487e-07 dsm_est 5.8804e-09 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 3 dsm 4.6854e-06 dsm_est 2.06494e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 3 t 3.5 dsm 4.86491e-06 dsm_est 7.91268e-09 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 3 t 4 dsm 9.38226e-06 dsm_est 5.58758e-10 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 4.5 dsm 3.64804e-06 dsm_est 4.12749e-10 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 5 dsm 1.20837e-06 dsm_est 6.31634e-09 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 5.5 dsm 1.96373e-05 dsm_est 7.63049e-09 nsteps 3 - rtol 0.0001 rk_type 0 order 5 acc 3 t 6 dsm 6.78601e-06 dsm_est 3.45501e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 3 t 6.5 dsm 3.28653e-05 dsm_est 2.5131e-08 nsteps 8 - rtol 0.0001 rk_type 0 order 5 acc 3 t 7 dsm 1.0851e-05 dsm_est 4.68539e-07 nsteps 17 - rtol 0.0001 rk_type 0 order 5 acc 3 t 7.5 dsm 8.11463e-06 dsm_est 1.75019e-08 nsteps 13 - rtol 0.0001 rk_type 0 order 5 acc 3 t 8 dsm 1.12113e-05 dsm_est 2.06416e-08 nsteps 7 - rtol 0.0001 rk_type 0 order 5 acc 3 t 8.5 dsm 7.59151e-06 dsm_est 4.50463e-08 nsteps 5 - rtol 0.0001 rk_type 0 order 5 acc 3 t 9 dsm 1.10466e-05 dsm_est 1.18403e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 3 t 9.5 dsm 1.12334e-05 dsm_est 6.19359e-08 nsteps 4 - rtol 0.0001 rk_type 0 order 5 acc 3 t 10 dsm 9.05222e-07 dsm_est 1.24356e-08 nsteps 4 - rtol 1e-06 rk_type 0 order 5 acc 1 t 0.5 dsm 1.88136e-07 dsm_est 1.26411e-07 nsteps 20 - rtol 1e-06 rk_type 0 order 5 acc 1 t 1 dsm 3.6815e-08 dsm_est 2.79712e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 1 t 1.5 dsm 3.46973e-08 dsm_est 3.51635e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 1 t 2 dsm 2.15722e-07 dsm_est 6.11647e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 1 t 2.5 dsm 9.55646e-08 dsm_est 1.88588e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 1 t 3 dsm 1.61192e-07 dsm_est 1.2608e-08 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 1 t 3.5 dsm 4.89781e-08 dsm_est 3.86937e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 1 t 4 dsm 2.89671e-09 dsm_est 1.89611e-10 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 1 t 4.5 dsm 1.33856e-07 dsm_est 1.34787e-10 nsteps 4 - rtol 1e-06 rk_type 0 order 5 acc 1 t 5 dsm 1.14768e-07 dsm_est 3.89832e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 1 t 5.5 dsm 3.35877e-07 dsm_est 5.30354e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 1 t 6 dsm 3.66079e-07 dsm_est 3.68188e-09 nsteps 9 - rtol 1e-06 rk_type 0 order 5 acc 1 t 6.5 dsm 1.18284e-06 dsm_est 5.36543e-09 nsteps 13 - rtol 1e-06 rk_type 0 order 5 acc 1 t 7 dsm 6.15151e-07 dsm_est 1.3137e-07 nsteps 32 - rtol 1e-06 rk_type 0 order 5 acc 1 t 7.5 dsm 7.6586e-08 dsm_est 5.37386e-09 nsteps 17 - rtol 1e-06 rk_type 0 order 5 acc 1 t 8 dsm 4.14322e-07 dsm_est 7.83969e-10 nsteps 13 - rtol 1e-06 rk_type 0 order 5 acc 1 t 8.5 dsm 2.50606e-07 dsm_est 1.87037e-08 nsteps 9 - rtol 1e-06 rk_type 0 order 5 acc 1 t 9 dsm 1.33343e-07 dsm_est 8.70204e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 1 t 9.5 dsm 1.44237e-07 dsm_est 1.59014e-08 nsteps 6 - rtol 1e-06 rk_type 0 order 5 acc 1 t 10 dsm 1.34853e-07 dsm_est 2.74315e-08 nsteps 6 - rtol 1e-06 rk_type 0 order 5 acc 2 t 0.5 dsm 1.88136e-07 dsm_est 3.10757e-07 nsteps 20 - rtol 1e-06 rk_type 0 order 5 acc 2 t 1 dsm 3.6815e-08 dsm_est 2.85172e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 2 t 1.5 dsm 3.46973e-08 dsm_est 3.53495e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 2 t 2 dsm 2.15722e-07 dsm_est 6.21173e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 2 t 2.5 dsm 9.55646e-08 dsm_est 1.95849e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 2 t 3 dsm 1.61192e-07 dsm_est 1.42375e-08 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 2 t 3.5 dsm 4.89781e-08 dsm_est 5.44995e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 2 t 4 dsm 2.89671e-09 dsm_est 2.05845e-10 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 2 t 4.5 dsm 1.33856e-07 dsm_est 1.4524e-10 nsteps 4 - rtol 1e-06 rk_type 0 order 5 acc 2 t 5 dsm 1.14768e-07 dsm_est 3.97399e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 2 t 5.5 dsm 3.35877e-07 dsm_est 5.39098e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 2 t 6 dsm 3.66079e-07 dsm_est 4.54425e-09 nsteps 9 - rtol 1e-06 rk_type 0 order 5 acc 2 t 6.5 dsm 1.18284e-06 dsm_est 1.43453e-08 nsteps 13 - rtol 1e-06 rk_type 0 order 5 acc 2 t 7 dsm 6.15151e-07 dsm_est 3.71172e-07 nsteps 32 - rtol 1e-06 rk_type 0 order 5 acc 2 t 7.5 dsm 7.6586e-08 dsm_est 1.05078e-08 nsteps 17 - rtol 1e-06 rk_type 0 order 5 acc 2 t 8 dsm 4.14322e-07 dsm_est 1.80819e-09 nsteps 13 - rtol 1e-06 rk_type 0 order 5 acc 2 t 8.5 dsm 2.50606e-07 dsm_est 1.87833e-08 nsteps 9 - rtol 1e-06 rk_type 0 order 5 acc 2 t 9 dsm 1.33343e-07 dsm_est 1.22048e-08 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 2 t 9.5 dsm 1.44237e-07 dsm_est 3.40516e-08 nsteps 6 - rtol 1e-06 rk_type 0 order 5 acc 2 t 10 dsm 1.34853e-07 dsm_est 3.35247e-08 nsteps 6 - rtol 1e-06 rk_type 0 order 5 acc 3 t 0.5 dsm 1.88136e-07 dsm_est 1.26851e-08 nsteps 20 - rtol 1e-06 rk_type 0 order 5 acc 3 t 1 dsm 3.6815e-08 dsm_est 1.6608e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 3 t 1.5 dsm 3.46973e-08 dsm_est 1.70095e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 3 t 2 dsm 2.15722e-07 dsm_est 2.55077e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 3 t 2.5 dsm 9.55646e-08 dsm_est 8.55183e-10 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 3 t 3 dsm 1.61192e-07 dsm_est 6.55528e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 3 t 3.5 dsm 4.89781e-08 dsm_est 2.24419e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 3 t 4 dsm 2.89671e-09 dsm_est 1.14512e-10 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 3 t 4.5 dsm 1.33856e-07 dsm_est 9.42445e-11 nsteps 4 - rtol 1e-06 rk_type 0 order 5 acc 3 t 5 dsm 1.14768e-07 dsm_est 2.14148e-09 nsteps 5 - rtol 1e-06 rk_type 0 order 5 acc 3 t 5.5 dsm 3.35877e-07 dsm_est 2.26456e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 3 t 6 dsm 3.66079e-07 dsm_est 1.25374e-09 nsteps 9 - rtol 1e-06 rk_type 0 order 5 acc 3 t 6.5 dsm 1.18284e-06 dsm_est 2.39129e-09 nsteps 13 - rtol 1e-06 rk_type 0 order 5 acc 3 t 7 dsm 6.15151e-07 dsm_est 2.56642e-08 nsteps 32 - rtol 1e-06 rk_type 0 order 5 acc 3 t 7.5 dsm 7.6586e-08 dsm_est 1.02588e-09 nsteps 17 - rtol 1e-06 rk_type 0 order 5 acc 3 t 8 dsm 4.14322e-07 dsm_est 2.56944e-10 nsteps 13 - rtol 1e-06 rk_type 0 order 5 acc 3 t 8.5 dsm 2.50606e-07 dsm_est 7.50375e-09 nsteps 9 - rtol 1e-06 rk_type 0 order 5 acc 3 t 9 dsm 1.33343e-07 dsm_est 3.79527e-09 nsteps 7 - rtol 1e-06 rk_type 0 order 5 acc 3 t 9.5 dsm 1.44237e-07 dsm_est 1.06042e-08 nsteps 6 - rtol 1e-06 rk_type 0 order 5 acc 3 t 10 dsm 1.34853e-07 dsm_est 1.51614e-08 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 0.5 dsm 7.98768e-05 dsm_est 2.22531e-05 nsteps 9 + rtol 0.01 rk_type 0 order 5 acc 1 t 1 dsm 0.000650302 dsm_est 4.64139e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 1.5 dsm 0.000645633 dsm_est 1.73203e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 2 dsm 0.00163274 dsm_est 8.3517e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 2.5 dsm 9.48133e-05 dsm_est 1.12858e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 3 dsm 0.000306592 dsm_est 2.0357e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 3.5 dsm 0.000424263 dsm_est 8.56626e-06 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 1 t 4 dsm 6.69615e-05 dsm_est 6.44433e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 4.5 dsm 0.000299505 dsm_est 7.74897e-08 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 5 dsm 0.000620601 dsm_est 6.31819e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 5.5 dsm 0.00015286 dsm_est 2.45365e-06 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 1 t 6 dsm 0.000217772 dsm_est 1.6978e-05 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 6.5 dsm 0.00275128 dsm_est 0.000586825 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 7 dsm 0.00228645 dsm_est 0.000652765 nsteps 10 + rtol 0.01 rk_type 0 order 5 acc 1 t 7.5 dsm 0.00251017 dsm_est 0.000301873 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 1 t 8 dsm 0.00056424 dsm_est 0.000102525 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 8.5 dsm 0.000443759 dsm_est 1.06346e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 9 dsm 0.00175183 dsm_est 9.83141e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 9.5 dsm 0.00180274 dsm_est 2.71038e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 1 t 10 dsm 0.000411736 dsm_est 1.98189e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 0.5 dsm 7.98768e-05 dsm_est 5.49368e-05 nsteps 9 + rtol 0.01 rk_type 0 order 5 acc 2 t 1 dsm 0.000650302 dsm_est 6.08047e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 1.5 dsm 0.000645633 dsm_est 1.81868e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 2 dsm 0.00163274 dsm_est 1.13957e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 2.5 dsm 9.48133e-05 dsm_est 1.27279e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 3 dsm 0.000306592 dsm_est 2.06443e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 3.5 dsm 0.000424263 dsm_est 8.56653e-06 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 2 t 4 dsm 6.69615e-05 dsm_est 6.7448e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 4.5 dsm 0.000299505 dsm_est 1.05334e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 5 dsm 0.000620601 dsm_est 7.75337e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 5.5 dsm 0.00015286 dsm_est 2.4579e-06 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 2 t 6 dsm 0.000217772 dsm_est 1.87083e-05 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 6.5 dsm 0.00275128 dsm_est 0.000609938 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 7 dsm 0.00228645 dsm_est 0.000849037 nsteps 10 + rtol 0.01 rk_type 0 order 5 acc 2 t 7.5 dsm 0.00251017 dsm_est 0.000311139 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 2 t 8 dsm 0.00056424 dsm_est 0.000103189 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 8.5 dsm 0.000443759 dsm_est 1.41745e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 9 dsm 0.00175183 dsm_est 1.21876e-05 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 9.5 dsm 0.00180274 dsm_est 4.21296e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 2 t 10 dsm 0.000411736 dsm_est 2.04853e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 0.5 dsm 7.98768e-05 dsm_est 7.05663e-06 nsteps 9 + rtol 0.01 rk_type 0 order 5 acc 3 t 1 dsm 0.000650302 dsm_est 3.40867e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 1.5 dsm 0.000645633 dsm_est 7.40614e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 2 dsm 0.00163274 dsm_est 5.77037e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 2.5 dsm 9.48133e-05 dsm_est 7.67808e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 3 dsm 0.000306592 dsm_est 1.28093e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 3.5 dsm 0.000424263 dsm_est 6.9471e-06 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 3 t 4 dsm 6.69615e-05 dsm_est 4.06475e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 4.5 dsm 0.000299505 dsm_est 5.72635e-08 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 5 dsm 0.000620601 dsm_est 4.12126e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 5.5 dsm 0.00015286 dsm_est 1.93521e-06 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 3 t 6 dsm 0.000217772 dsm_est 5.08703e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 6.5 dsm 0.00275128 dsm_est 0.000274241 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 7 dsm 0.00228645 dsm_est 0.000259853 nsteps 10 + rtol 0.01 rk_type 0 order 5 acc 3 t 7.5 dsm 0.00251017 dsm_est 0.000168616 nsteps 5 + rtol 0.01 rk_type 0 order 5 acc 3 t 8 dsm 0.00056424 dsm_est 6.28744e-05 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 8.5 dsm 0.000443759 dsm_est 6.44898e-07 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 9 dsm 0.00175183 dsm_est 5.46786e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 9.5 dsm 0.00180274 dsm_est 1.74338e-06 nsteps 6 + rtol 0.01 rk_type 0 order 5 acc 3 t 10 dsm 0.000411736 dsm_est 1.35505e-06 nsteps 6 + rtol 0.0001 rk_type 0 order 5 acc 1 t 0.5 dsm 2.02186e-05 dsm_est 3.31002e-06 nsteps 15 + rtol 0.0001 rk_type 0 order 5 acc 1 t 1 dsm 3.84832e-06 dsm_est 7.05294e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 1.5 dsm 1.83168e-05 dsm_est 7.41758e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 2 dsm 3.5025e-05 dsm_est 2.66413e-07 nsteps 3 + rtol 0.0001 rk_type 0 order 5 acc 1 t 2.5 dsm 3.87148e-06 dsm_est 1.95403e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 3 dsm 1.47188e-06 dsm_est 1.33664e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 3.5 dsm 3.76716e-07 dsm_est 1.82172e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 4 dsm 2.20388e-07 dsm_est 8.1804e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 4.5 dsm 9.49746e-07 dsm_est 5.22306e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 5 dsm 1.16038e-05 dsm_est 9.06165e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 5.5 dsm 4.27083e-06 dsm_est 6.78908e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 6 dsm 1.29425e-05 dsm_est 2.9701e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 6.5 dsm 6.03429e-05 dsm_est 2.9153e-05 nsteps 8 + rtol 0.0001 rk_type 0 order 5 acc 1 t 7 dsm 4.74175e-06 dsm_est 1.44487e-05 nsteps 16 + rtol 0.0001 rk_type 0 order 5 acc 1 t 7.5 dsm 7.99333e-06 dsm_est 2.13506e-06 nsteps 10 + rtol 0.0001 rk_type 0 order 5 acc 1 t 8 dsm 1.3397e-06 dsm_est 8.96349e-07 nsteps 6 + rtol 0.0001 rk_type 0 order 5 acc 1 t 8.5 dsm 1.27669e-05 dsm_est 3.25384e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 9 dsm 3.28771e-05 dsm_est 1.81542e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 9.5 dsm 8.015e-06 dsm_est 5.18124e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 1 t 10 dsm 2.55469e-06 dsm_est 3.16299e-06 nsteps 5 + rtol 0.0001 rk_type 0 order 5 acc 2 t 0.5 dsm 2.02186e-05 dsm_est 9.9918e-06 nsteps 15 + rtol 0.0001 rk_type 0 order 5 acc 2 t 1 dsm 3.84832e-06 dsm_est 8.8403e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 1.5 dsm 1.83168e-05 dsm_est 7.49615e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 2 dsm 3.5025e-05 dsm_est 2.93854e-07 nsteps 3 + rtol 0.0001 rk_type 0 order 5 acc 2 t 2.5 dsm 3.87148e-06 dsm_est 2.79402e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 3 dsm 1.47188e-06 dsm_est 2.02131e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 3.5 dsm 3.76716e-07 dsm_est 4.25698e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 4 dsm 2.20388e-07 dsm_est 9.02773e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 4.5 dsm 9.49746e-07 dsm_est 7.78177e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 5 dsm 1.16038e-05 dsm_est 1.02197e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 5.5 dsm 4.27083e-06 dsm_est 6.83416e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 6 dsm 1.29425e-05 dsm_est 3.09448e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 6.5 dsm 6.03429e-05 dsm_est 3.11648e-05 nsteps 8 + rtol 0.0001 rk_type 0 order 5 acc 2 t 7 dsm 4.74175e-06 dsm_est 3.86613e-05 nsteps 16 + rtol 0.0001 rk_type 0 order 5 acc 2 t 7.5 dsm 7.99333e-06 dsm_est 2.41669e-06 nsteps 10 + rtol 0.0001 rk_type 0 order 5 acc 2 t 8 dsm 1.3397e-06 dsm_est 1.74741e-06 nsteps 6 + rtol 0.0001 rk_type 0 order 5 acc 2 t 8.5 dsm 1.27669e-05 dsm_est 5.42749e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 9 dsm 3.28771e-05 dsm_est 2.07999e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 9.5 dsm 8.015e-06 dsm_est 5.3318e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 2 t 10 dsm 2.55469e-06 dsm_est 3.38482e-06 nsteps 5 + rtol 0.0001 rk_type 0 order 5 acc 3 t 0.5 dsm 2.02186e-05 dsm_est 2.11974e-07 nsteps 15 + rtol 0.0001 rk_type 0 order 5 acc 3 t 1 dsm 3.84832e-06 dsm_est 3.43391e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 1.5 dsm 1.83168e-05 dsm_est 4.30856e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 2 dsm 3.5025e-05 dsm_est 1.66088e-07 nsteps 3 + rtol 0.0001 rk_type 0 order 5 acc 3 t 2.5 dsm 3.87148e-06 dsm_est 1.21204e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 3 dsm 1.47188e-06 dsm_est 7.95969e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 3.5 dsm 3.76716e-07 dsm_est 1.39876e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 4 dsm 2.20388e-07 dsm_est 4.04779e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 4.5 dsm 9.49746e-07 dsm_est 2.76667e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 5 dsm 1.16038e-05 dsm_est 5.19616e-08 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 5.5 dsm 4.27083e-06 dsm_est 4.10909e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 6 dsm 1.29425e-05 dsm_est 1.32554e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 6.5 dsm 6.03429e-05 dsm_est 1.13087e-05 nsteps 8 + rtol 0.0001 rk_type 0 order 5 acc 3 t 7 dsm 4.74175e-06 dsm_est 3.81677e-06 nsteps 16 + rtol 0.0001 rk_type 0 order 5 acc 3 t 7.5 dsm 7.99333e-06 dsm_est 3.90995e-07 nsteps 10 + rtol 0.0001 rk_type 0 order 5 acc 3 t 8 dsm 1.3397e-06 dsm_est 4.65509e-07 nsteps 6 + rtol 0.0001 rk_type 0 order 5 acc 3 t 8.5 dsm 1.27669e-05 dsm_est 1.98321e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 9 dsm 3.28771e-05 dsm_est 8.73859e-07 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 9.5 dsm 8.015e-06 dsm_est 2.98094e-06 nsteps 4 + rtol 0.0001 rk_type 0 order 5 acc 3 t 10 dsm 2.55469e-06 dsm_est 8.56055e-07 nsteps 5 + rtol 1e-06 rk_type 0 order 5 acc 1 t 0.5 dsm 2.24279e-07 dsm_est 1.59028e-07 nsteps 25 + rtol 1e-06 rk_type 0 order 5 acc 1 t 1 dsm 4.39759e-09 dsm_est 1.8726e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 1 t 1.5 dsm 2.00645e-08 dsm_est 9.07775e-08 nsteps 5 + rtol 1e-06 rk_type 0 order 5 acc 1 t 2 dsm 5.23215e-08 dsm_est 3.07869e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 1 t 2.5 dsm 4.67177e-08 dsm_est 2.7652e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 1 t 3 dsm 7.91241e-08 dsm_est 8.85356e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 1 t 3.5 dsm 3.09953e-09 dsm_est 1.38807e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 1 t 4 dsm 2.68687e-07 dsm_est 1.06913e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 1 t 4.5 dsm 1.51813e-07 dsm_est 1.0149e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 1 t 5 dsm 6.212e-08 dsm_est 6.83515e-08 nsteps 5 + rtol 1e-06 rk_type 0 order 5 acc 1 t 5.5 dsm 1.56261e-07 dsm_est 2.03831e-08 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 1 t 6 dsm 2.21408e-07 dsm_est 9.42045e-08 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 1 t 6.5 dsm 1.24324e-06 dsm_est 9.22656e-07 nsteps 12 + rtol 1e-06 rk_type 0 order 5 acc 1 t 7 dsm 1.73215e-08 dsm_est 8.36258e-07 nsteps 34 + rtol 1e-06 rk_type 0 order 5 acc 1 t 7.5 dsm 1.06673e-07 dsm_est 1.64317e-07 nsteps 15 + rtol 1e-06 rk_type 0 order 5 acc 1 t 8 dsm 2.16484e-07 dsm_est 9.32389e-09 nsteps 13 + rtol 1e-06 rk_type 0 order 5 acc 1 t 8.5 dsm 3.44934e-08 dsm_est 1.19181e-07 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 1 t 9 dsm 7.09217e-08 dsm_est 8.8248e-08 nsteps 8 + rtol 1e-06 rk_type 0 order 5 acc 1 t 9.5 dsm 2.39149e-08 dsm_est 8.25418e-08 nsteps 8 + rtol 1e-06 rk_type 0 order 5 acc 1 t 10 dsm 2.03783e-09 dsm_est 9.33568e-08 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 2 t 0.5 dsm 2.24279e-07 dsm_est 6.33695e-07 nsteps 25 + rtol 1e-06 rk_type 0 order 5 acc 2 t 1 dsm 4.39759e-09 dsm_est 3.45858e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 2 t 1.5 dsm 2.00645e-08 dsm_est 9.62052e-08 nsteps 5 + rtol 1e-06 rk_type 0 order 5 acc 2 t 2 dsm 5.23215e-08 dsm_est 5.11283e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 2 t 2.5 dsm 4.67177e-08 dsm_est 2.91647e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 2 t 3 dsm 7.91241e-08 dsm_est 1.16808e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 2 t 3.5 dsm 3.09953e-09 dsm_est 1.95598e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 2 t 4 dsm 2.68687e-07 dsm_est 1.1206e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 2 t 4.5 dsm 1.51813e-07 dsm_est 1.11269e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 2 t 5 dsm 6.212e-08 dsm_est 7.67719e-08 nsteps 5 + rtol 1e-06 rk_type 0 order 5 acc 2 t 5.5 dsm 1.56261e-07 dsm_est 3.15734e-08 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 2 t 6 dsm 2.21408e-07 dsm_est 2.18432e-07 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 2 t 6.5 dsm 1.24324e-06 dsm_est 1.69565e-06 nsteps 12 + rtol 1e-06 rk_type 0 order 5 acc 2 t 7 dsm 1.73215e-08 dsm_est 2.98474e-06 nsteps 34 + rtol 1e-06 rk_type 0 order 5 acc 2 t 7.5 dsm 1.06673e-07 dsm_est 3.48344e-07 nsteps 15 + rtol 1e-06 rk_type 0 order 5 acc 2 t 8 dsm 2.16484e-07 dsm_est 3.65574e-08 nsteps 13 + rtol 1e-06 rk_type 0 order 5 acc 2 t 8.5 dsm 3.44934e-08 dsm_est 1.51565e-07 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 2 t 9 dsm 7.09217e-08 dsm_est 2.56424e-07 nsteps 8 + rtol 1e-06 rk_type 0 order 5 acc 2 t 9.5 dsm 2.39149e-08 dsm_est 2.14271e-07 nsteps 8 + rtol 1e-06 rk_type 0 order 5 acc 2 t 10 dsm 2.03783e-09 dsm_est 1.24967e-07 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 3 t 0.5 dsm 2.24279e-07 dsm_est 3.21927e-08 nsteps 25 + rtol 1e-06 rk_type 0 order 5 acc 3 t 1 dsm 4.39759e-09 dsm_est 1.05767e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 3 t 1.5 dsm 2.00645e-08 dsm_est 4.59751e-08 nsteps 5 + rtol 1e-06 rk_type 0 order 5 acc 3 t 2 dsm 5.23215e-08 dsm_est 1.93469e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 3 t 2.5 dsm 4.67177e-08 dsm_est 1.34592e-07 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 3 t 3 dsm 7.91241e-08 dsm_est 4.06787e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 3 t 3.5 dsm 3.09953e-09 dsm_est 8.19699e-09 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 3 t 4 dsm 2.68687e-07 dsm_est 5.34642e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 3 t 4.5 dsm 1.51813e-07 dsm_est 5.33112e-08 nsteps 6 + rtol 1e-06 rk_type 0 order 5 acc 3 t 5 dsm 6.212e-08 dsm_est 3.71014e-08 nsteps 5 + rtol 1e-06 rk_type 0 order 5 acc 3 t 5.5 dsm 1.56261e-07 dsm_est 9.36704e-09 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 3 t 6 dsm 2.21408e-07 dsm_est 4.76094e-08 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 3 t 6.5 dsm 1.24324e-06 dsm_est 3.04812e-07 nsteps 12 + rtol 1e-06 rk_type 0 order 5 acc 3 t 7 dsm 1.73215e-08 dsm_est 2.11892e-07 nsteps 34 + rtol 1e-06 rk_type 0 order 5 acc 3 t 7.5 dsm 1.06673e-07 dsm_est 3.16665e-08 nsteps 15 + rtol 1e-06 rk_type 0 order 5 acc 3 t 8 dsm 2.16484e-07 dsm_est 4.75561e-09 nsteps 13 + rtol 1e-06 rk_type 0 order 5 acc 3 t 8.5 dsm 3.44934e-08 dsm_est 4.60631e-08 nsteps 7 + rtol 1e-06 rk_type 0 order 5 acc 3 t 9 dsm 7.09217e-08 dsm_est 5.63609e-08 nsteps 8 + rtol 1e-06 rk_type 0 order 5 acc 3 t 9.5 dsm 2.39149e-08 dsm_est 4.60578e-08 nsteps 8 + rtol 1e-06 rk_type 0 order 5 acc 3 t 10 dsm 2.03783e-09 dsm_est 4.21957e-08 nsteps 7 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_-4_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_-4_1.out index 0ddc51a414..800d69fce1 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_-4_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_-4_1.out @@ -8,323 +8,323 @@ Accumulated error estimation test (Nonlinear Kvaerno-Prothero-Robinson problem): ERK solver, order = 4 Fixed-step runs: - h 0.005 rk_type 1 order 4 acc 1 t 0.25 dsm 5.99625e-11 dsm_est 2.97934e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 0.5 dsm 1.42974e-10 dsm_est 1.09464e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 0.75 dsm 2.42719e-10 dsm_est 4.48851e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 1 dsm 6.83162e-10 dsm_est 2.52438e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 1.25 dsm 3.14281e-09 dsm_est 6.51615e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 1.5 dsm 4.52762e-09 dsm_est 3.9027e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 1.75 dsm 4.7305e-10 dsm_est 1.03348e-06 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 2 dsm 1.22724e-09 dsm_est 2.15168e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 2.25 dsm 2.1725e-10 dsm_est 4.54458e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 2.5 dsm 1.44845e-10 dsm_est 1.64155e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 2.75 dsm 1.45894e-10 dsm_est 1.12159e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 3 dsm 2.11123e-10 dsm_est 1.10902e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 3.25 dsm 2.34671e-10 dsm_est 3.64366e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 3.5 dsm 1.99557e-10 dsm_est 7.94986e-10 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 3.75 dsm 1.51624e-10 dsm_est 7.64317e-10 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 4 dsm 9.7978e-11 dsm_est 1.84333e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 4.25 dsm 3.36113e-11 dsm_est 3.03774e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 4.5 dsm 7.15711e-11 dsm_est 1.1807e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 4.75 dsm 3.79788e-11 dsm_est 3.66885e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 1 t 5 dsm 4.13058e-11 dsm_est 1.68612e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 0.25 dsm 5.99625e-11 dsm_est 6.92498e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 0.5 dsm 1.42974e-10 dsm_est 3.44716e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 0.75 dsm 2.42719e-10 dsm_est 1.11167e-06 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 1 dsm 6.83162e-10 dsm_est 3.96873e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 1.25 dsm 3.14281e-09 dsm_est 9.51778e-06 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 1.5 dsm 4.52762e-09 dsm_est 4.8884e-06 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 1.75 dsm 4.7305e-10 dsm_est 1.58084e-05 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 2 dsm 1.22724e-09 dsm_est 3.22447e-06 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 2.25 dsm 2.1725e-10 dsm_est 1.37158e-06 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 2.5 dsm 1.44845e-10 dsm_est 5.71622e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 2.75 dsm 1.45894e-10 dsm_est 2.89412e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 3 dsm 2.11123e-10 dsm_est 2.24322e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 3.25 dsm 2.34671e-10 dsm_est 1.10202e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 3.5 dsm 1.99557e-10 dsm_est 2.70653e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 3.75 dsm 1.51624e-10 dsm_est 2.01726e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 4 dsm 9.7978e-11 dsm_est 4.76316e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 4.25 dsm 3.36113e-11 dsm_est 1.20904e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 4.5 dsm 7.15711e-11 dsm_est 3.7071e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 4.75 dsm 3.79788e-11 dsm_est 8.7779e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 5 dsm 4.13058e-11 dsm_est 6.13145e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 0.25 dsm 5.99625e-11 dsm_est 1.385e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 0.5 dsm 1.42974e-10 dsm_est 6.89431e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 0.75 dsm 2.42719e-10 dsm_est 2.22335e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 1 dsm 6.83162e-10 dsm_est 7.93747e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 1.25 dsm 3.14281e-09 dsm_est 1.90356e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 1.5 dsm 4.52762e-09 dsm_est 9.7768e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 1.75 dsm 4.7305e-10 dsm_est 3.16168e-07 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 2 dsm 1.22724e-09 dsm_est 6.44894e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 2.25 dsm 2.1725e-10 dsm_est 2.74317e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 2.5 dsm 1.44845e-10 dsm_est 1.14324e-08 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 2.75 dsm 1.45894e-10 dsm_est 5.78824e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 3 dsm 2.11123e-10 dsm_est 4.48643e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 3.25 dsm 2.34671e-10 dsm_est 2.20404e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 3.5 dsm 1.99557e-10 dsm_est 5.41306e-10 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 3.75 dsm 1.51624e-10 dsm_est 4.03452e-10 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 4 dsm 9.7978e-11 dsm_est 9.52633e-10 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 4.25 dsm 3.36113e-11 dsm_est 2.41808e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 4.5 dsm 7.15711e-11 dsm_est 7.4142e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 4.75 dsm 3.79788e-11 dsm_est 1.75558e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 3 t 5 dsm 4.13058e-11 dsm_est 1.22629e-09 nsteps 50 - h 0.005 rk_type 1 order 4 acc 2 t 0.25 dsm 5.99625e-11 dsm_est 9.19534e-10 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 0.5 dsm 1.42974e-10 dsm_est 2.10629e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 0.75 dsm 2.42719e-10 dsm_est 3.82746e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 1 dsm 6.83162e-10 dsm_est 1.03061e-08 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 1.25 dsm 3.14281e-09 dsm_est 4.33257e-08 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 1.5 dsm 4.52762e-09 dsm_est 6.98227e-08 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 1.75 dsm 4.7305e-10 dsm_est 3.66571e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 2 dsm 1.22724e-09 dsm_est 1.87356e-08 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 2.25 dsm 2.1725e-10 dsm_est 3.03702e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 2.5 dsm 1.44845e-10 dsm_est 2.22121e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 2.75 dsm 1.45894e-10 dsm_est 2.22678e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 3 dsm 2.11123e-10 dsm_est 3.23991e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 3.25 dsm 2.34671e-10 dsm_est 3.61593e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 3.5 dsm 1.99557e-10 dsm_est 3.07907e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 3.75 dsm 1.51624e-10 dsm_est 2.34121e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 4 dsm 9.7978e-11 dsm_est 1.51474e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 4.25 dsm 3.36113e-11 dsm_est 5.09945e-10 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 4.5 dsm 7.15711e-11 dsm_est 1.10419e-09 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 4.75 dsm 3.79788e-11 dsm_est 5.88316e-10 nsteps 75 - h 0.005 rk_type 1 order 4 acc 2 t 5 dsm 4.13058e-11 dsm_est 6.25891e-10 nsteps 75 - h 0.00125 rk_type 1 order 4 acc 1 t 0.25 dsm 2.30499e-13 dsm_est 1.18706e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 0.5 dsm 5.68219e-13 dsm_est 4.29143e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 0.75 dsm 9.09327e-13 dsm_est 1.75788e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 1 dsm 2.66412e-12 dsm_est 1.00941e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 1.25 dsm 1.30178e-11 dsm_est 2.55862e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 1.5 dsm 1.73534e-11 dsm_est 1.64905e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 1.75 dsm 3.44384e-12 dsm_est 4.05424e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 2 dsm 4.73982e-12 dsm_est 8.44242e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 2.25 dsm 8.24836e-13 dsm_est 1.78198e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 2.5 dsm 5.58183e-13 dsm_est 6.41367e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 2.75 dsm 5.66294e-13 dsm_est 4.38146e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 3 dsm 8.06614e-13 dsm_est 4.34752e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 3.25 dsm 8.98387e-13 dsm_est 1.416e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 3.5 dsm 7.63217e-13 dsm_est 3.10184e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 3.75 dsm 5.78309e-13 dsm_est 2.99367e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 4 dsm 3.75531e-13 dsm_est 7.27428e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 4.25 dsm 1.33194e-13 dsm_est 1.19044e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 4.5 dsm 2.44986e-13 dsm_est 4.62152e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 4.75 dsm 1.41286e-13 dsm_est 1.51237e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 1 t 5 dsm 1.73009e-13 dsm_est 6.57848e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 0.25 dsm 2.30499e-13 dsm_est 1.08204e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 0.5 dsm 5.68219e-13 dsm_est 5.40888e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 0.75 dsm 9.09327e-13 dsm_est 1.7413e-08 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 1 dsm 2.66412e-12 dsm_est 6.10198e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 1.25 dsm 1.30178e-11 dsm_est 1.49252e-07 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 1.5 dsm 1.73534e-11 dsm_est 7.5991e-08 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 1.75 dsm 3.44384e-12 dsm_est 2.47716e-07 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 2 dsm 4.73982e-12 dsm_est 4.99807e-08 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 2.25 dsm 8.24836e-13 dsm_est 2.14752e-08 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 2.5 dsm 5.58183e-13 dsm_est 8.93029e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 2.75 dsm 5.66294e-13 dsm_est 4.52416e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 3 dsm 8.06614e-13 dsm_est 3.502e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 3.25 dsm 8.98387e-13 dsm_est 1.71624e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 3.5 dsm 7.63217e-13 dsm_est 4.19654e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 3.75 dsm 5.78309e-13 dsm_est 3.14069e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 4 dsm 3.75531e-13 dsm_est 7.43405e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 4.25 dsm 1.33194e-13 dsm_est 1.89465e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 4.5 dsm 2.44986e-13 dsm_est 5.80293e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.41286e-13 dsm_est 1.36602e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 5 dsm 1.73009e-13 dsm_est 9.5065e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 0.25 dsm 2.30499e-13 dsm_est 5.41022e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 0.5 dsm 5.68219e-13 dsm_est 2.70444e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 0.75 dsm 9.09327e-13 dsm_est 8.70648e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 1 dsm 2.66412e-12 dsm_est 3.05099e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 1.25 dsm 1.30178e-11 dsm_est 7.46262e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 1.5 dsm 1.73534e-11 dsm_est 3.79955e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 1.75 dsm 3.44384e-12 dsm_est 1.23858e-09 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 2 dsm 4.73982e-12 dsm_est 2.49903e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 2.25 dsm 8.24836e-13 dsm_est 1.07376e-10 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 2.5 dsm 5.58183e-13 dsm_est 4.46515e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 2.75 dsm 5.66294e-13 dsm_est 2.26208e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 3 dsm 8.06614e-13 dsm_est 1.751e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 3.25 dsm 8.98387e-13 dsm_est 8.58119e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 3.5 dsm 7.63217e-13 dsm_est 2.09827e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 3.75 dsm 5.78309e-13 dsm_est 1.57035e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 4 dsm 3.75531e-13 dsm_est 3.71703e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 4.25 dsm 1.33194e-13 dsm_est 9.47327e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 4.5 dsm 2.44986e-13 dsm_est 2.90146e-11 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 4.75 dsm 1.41286e-13 dsm_est 6.83008e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 3 t 5 dsm 1.73009e-13 dsm_est 4.75325e-12 nsteps 200 - h 0.00125 rk_type 1 order 4 acc 2 t 0.25 dsm 2.30499e-13 dsm_est 3.47846e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 0.5 dsm 5.68219e-13 dsm_est 8.44621e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 0.75 dsm 9.09327e-13 dsm_est 1.38911e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 1 dsm 2.66412e-12 dsm_est 3.99292e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 1.25 dsm 1.30178e-11 dsm_est 1.91091e-10 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 1.5 dsm 1.73534e-11 dsm_est 2.61959e-10 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 1.75 dsm 3.44384e-12 dsm_est 4.28383e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 2 dsm 4.73982e-12 dsm_est 7.1306e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 2.25 dsm 8.24836e-13 dsm_est 1.31816e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 2.5 dsm 5.58183e-13 dsm_est 8.4007e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 2.75 dsm 5.66294e-13 dsm_est 8.47988e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 3 dsm 8.06614e-13 dsm_est 1.22473e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 3.25 dsm 8.98387e-13 dsm_est 1.35837e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 3.5 dsm 7.63217e-13 dsm_est 1.15437e-11 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 3.75 dsm 5.78309e-13 dsm_est 8.76917e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 4 dsm 3.75531e-13 dsm_est 5.66133e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 4.25 dsm 1.33194e-13 dsm_est 1.9304e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 4.5 dsm 2.44986e-13 dsm_est 4.1717e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.41286e-13 dsm_est 2.17896e-12 nsteps 300 - h 0.00125 rk_type 1 order 4 acc 2 t 5 dsm 1.73009e-13 dsm_est 2.38734e-12 nsteps 300 - h 0.0003125 rk_type 1 order 4 acc 1 t 0.25 dsm 9.97977e-16 dsm_est 4.66004e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 0.5 dsm 7.34738e-15 dsm_est 1.67783e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 0.75 dsm 1.89479e-14 dsm_est 6.87079e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 1 dsm 6.41345e-15 dsm_est 3.96662e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 1.25 dsm 1.49538e-13 dsm_est 1.00006e-11 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 1 t 1.5 dsm 1.0257e-13 dsm_est 6.56125e-12 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 1 t 1.75 dsm 4.74681e-14 dsm_est 1.58483e-11 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 1 t 2 dsm 3.28771e-14 dsm_est 3.30065e-12 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 1 t 2.25 dsm 2.08777e-13 dsm_est 6.96642e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 2.5 dsm 1.03256e-14 dsm_est 2.50524e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 2.75 dsm 1.44079e-14 dsm_est 1.71146e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 3 dsm 6.86653e-14 dsm_est 1.69952e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 3.25 dsm 4.56716e-14 dsm_est 5.52408e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 3.5 dsm 1.14798e-14 dsm_est 1.21147e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 3.75 dsm 1.10427e-14 dsm_est 1.17036e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 4 dsm 5.31806e-14 dsm_est 2.84886e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 1 t 4.25 dsm 2.08119e-13 dsm_est 4.65384e-14 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 1 t 4.5 dsm 1.57233e-14 dsm_est 1.80608e-13 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 1 t 4.75 dsm 1.39902e-13 dsm_est 5.98529e-14 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 1 t 5 dsm 7.63042e-14 dsm_est 2.56897e-14 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 0.25 dsm 9.97977e-16 dsm_est 1.6907e-11 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 0.5 dsm 7.34738e-15 dsm_est 8.45809e-11 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 0.75 dsm 1.89479e-14 dsm_est 2.72242e-10 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 1 dsm 6.41345e-15 dsm_est 9.49565e-11 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 1.25 dsm 1.49538e-13 dsm_est 2.33397e-09 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 1.5 dsm 1.0257e-13 dsm_est 1.18555e-09 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 1.75 dsm 4.74681e-14 dsm_est 3.87341e-09 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 2 dsm 3.28771e-14 dsm_est 7.79395e-10 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 2.25 dsm 2.08777e-13 dsm_est 3.3572e-10 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 2.5 dsm 1.03256e-14 dsm_est 1.39527e-10 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 2.75 dsm 1.44079e-14 dsm_est 7.06925e-11 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 3 dsm 6.86653e-14 dsm_est 5.47055e-11 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 3.25 dsm 4.56716e-14 dsm_est 2.67951e-11 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 3.5 dsm 1.14798e-14 dsm_est 6.54805e-12 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 3.75 dsm 1.10427e-14 dsm_est 4.9065e-12 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 4 dsm 5.31806e-14 dsm_est 1.16127e-11 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 2 t 4.25 dsm 2.08119e-13 dsm_est 2.96268e-11 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 4.5 dsm 1.57233e-14 dsm_est 9.07089e-11 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39902e-13 dsm_est 2.13237e-11 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 5 dsm 7.63042e-14 dsm_est 1.48242e-11 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 0.25 dsm 9.97977e-16 dsm_est 2.11337e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 0.5 dsm 7.34738e-15 dsm_est 1.05726e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 0.75 dsm 1.89479e-14 dsm_est 3.40303e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 1 dsm 6.41345e-15 dsm_est 1.18696e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 1.25 dsm 1.49538e-13 dsm_est 2.91746e-12 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 1.5 dsm 1.0257e-13 dsm_est 1.48193e-12 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 1.75 dsm 4.74681e-14 dsm_est 4.84176e-12 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 2 dsm 3.28771e-14 dsm_est 9.74244e-13 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 2.25 dsm 2.08777e-13 dsm_est 4.1965e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 2.5 dsm 1.03256e-14 dsm_est 1.74409e-13 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 2.75 dsm 1.44079e-14 dsm_est 8.83656e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 3 dsm 6.86653e-14 dsm_est 6.83819e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 3.25 dsm 4.56716e-14 dsm_est 3.34939e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 3.5 dsm 1.14798e-14 dsm_est 8.18506e-15 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 3.75 dsm 1.10427e-14 dsm_est 6.13312e-15 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 4 dsm 5.31806e-14 dsm_est 1.45159e-14 nsteps 800 - h 0.0003125 rk_type 1 order 4 acc 3 t 4.25 dsm 2.08119e-13 dsm_est 3.70335e-14 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 4.5 dsm 1.57233e-14 dsm_est 1.13386e-13 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 4.75 dsm 1.39902e-13 dsm_est 2.66546e-14 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 3 t 5 dsm 7.63042e-14 dsm_est 1.85303e-14 nsteps 801 - h 0.0003125 rk_type 1 order 4 acc 2 t 0.25 dsm 9.97977e-16 dsm_est 1.35296e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 0.5 dsm 7.34738e-15 dsm_est 3.14131e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 0.75 dsm 1.89479e-14 dsm_est 6.96153e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 1 dsm 6.41345e-15 dsm_est 1.77682e-13 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 1.25 dsm 1.49538e-13 dsm_est 5.92376e-13 nsteps 1201 - h 0.0003125 rk_type 1 order 4 acc 2 t 1.5 dsm 1.0257e-13 dsm_est 9.50139e-13 nsteps 1201 - h 0.0003125 rk_type 1 order 4 acc 2 t 1.75 dsm 4.74681e-14 dsm_est 1.5963e-13 nsteps 1201 - h 0.0003125 rk_type 1 order 4 acc 2 t 2 dsm 3.28771e-14 dsm_est 2.52198e-13 nsteps 1201 - h 0.0003125 rk_type 1 order 4 acc 2 t 2.25 dsm 2.08777e-13 dsm_est 3.31346e-13 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 2.5 dsm 1.03256e-14 dsm_est 3.26259e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 2.75 dsm 1.44079e-14 dsm_est 3.69706e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 3 dsm 6.86653e-14 dsm_est 8.29842e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 3.25 dsm 4.56716e-14 dsm_est 7.57076e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 3.5 dsm 1.14798e-14 dsm_est 4.72639e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 3.75 dsm 1.10427e-14 dsm_est 3.43678e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 4 dsm 5.31806e-14 dsm_est 4.43107e-14 nsteps 1200 - h 0.0003125 rk_type 1 order 4 acc 2 t 4.25 dsm 2.08119e-13 dsm_est 3.19466e-13 nsteps 1201 - h 0.0003125 rk_type 1 order 4 acc 2 t 4.5 dsm 1.57233e-14 dsm_est 3.54399e-14 nsteps 1201 - h 0.0003125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39902e-13 dsm_est 2.1045e-13 nsteps 1201 - h 0.0003125 rk_type 1 order 4 acc 2 t 5 dsm 7.63042e-14 dsm_est 1.1047e-13 nsteps 1201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 0.25 dsm 1.20076e-14 dsm_est 1.82253e-16 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 0.5 dsm 6.92895e-14 dsm_est 6.55669e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 0.75 dsm 7.1887e-14 dsm_est 2.68471e-15 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 1 dsm 5.29714e-14 dsm_est 1.55185e-15 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 1.25 dsm 4.54758e-13 dsm_est 3.90711e-14 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 1.5 dsm 1.61784e-13 dsm_est 2.57413e-14 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 1.75 dsm 1.4649e-13 dsm_est 6.1914e-14 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 2 dsm 6.85301e-14 dsm_est 1.28969e-14 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 2.25 dsm 3.74507e-13 dsm_est 2.72291e-15 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 2.5 dsm 1.92671e-14 dsm_est 9.81217e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 2.75 dsm 1.93516e-14 dsm_est 6.71729e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 3 dsm 1.23711e-13 dsm_est 6.65622e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 3.25 dsm 8.16997e-14 dsm_est 2.16207e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 3.5 dsm 1.95956e-14 dsm_est 4.74185e-17 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 3.75 dsm 2.16401e-14 dsm_est 4.58122e-17 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 4 dsm 9.37664e-14 dsm_est 1.11469e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 4.25 dsm 2.10442e-13 dsm_est 1.82276e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 4.5 dsm 1.64627e-14 dsm_est 7.11037e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 4.75 dsm 1.39177e-13 dsm_est 2.35957e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 1 t 5 dsm 7.51104e-14 dsm_est 1.00425e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.25 dsm 1.20076e-14 dsm_est 2.64165e-13 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.5 dsm 6.92895e-14 dsm_est 1.32181e-12 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.75 dsm 7.1887e-14 dsm_est 4.25372e-12 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1 dsm 5.29714e-14 dsm_est 1.48185e-12 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.25 dsm 4.54758e-13 dsm_est 3.64743e-11 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.5 dsm 1.61784e-13 dsm_est 1.85159e-11 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.75 dsm 1.4649e-13 dsm_est 6.05314e-11 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 2 dsm 6.85301e-14 dsm_est 1.2171e-11 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.25 dsm 3.74507e-13 dsm_est 5.24549e-12 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.5 dsm 1.92671e-14 dsm_est 2.18076e-12 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.75 dsm 1.93516e-14 dsm_est 1.10503e-12 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 3 dsm 1.23711e-13 dsm_est 8.55102e-13 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.25 dsm 8.16997e-14 dsm_est 4.18589e-13 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.5 dsm 1.95956e-14 dsm_est 1.02298e-13 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.75 dsm 2.16401e-14 dsm_est 7.6628e-14 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 4 dsm 9.37664e-14 dsm_est 1.81659e-13 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.25 dsm 2.10442e-13 dsm_est 4.62687e-13 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.5 dsm 1.64627e-14 dsm_est 1.42144e-12 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39177e-13 dsm_est 3.32669e-13 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 5 dsm 7.51104e-14 dsm_est 2.32583e-13 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 0.25 dsm 1.20076e-14 dsm_est 8.25514e-17 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 0.5 dsm 6.92895e-14 dsm_est 4.13064e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 0.75 dsm 7.1887e-14 dsm_est 1.32929e-15 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 1 dsm 5.29714e-14 dsm_est 4.63079e-16 nsteps 3200 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 1.25 dsm 4.54758e-13 dsm_est 1.13982e-14 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 1.5 dsm 1.61784e-13 dsm_est 5.78623e-15 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 1.75 dsm 1.4649e-13 dsm_est 1.89161e-14 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 2 dsm 6.85301e-14 dsm_est 3.80343e-15 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 2.25 dsm 3.74507e-13 dsm_est 1.63922e-15 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 2.5 dsm 1.92671e-14 dsm_est 6.81488e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 2.75 dsm 1.93516e-14 dsm_est 3.45321e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 3 dsm 1.23711e-13 dsm_est 2.67219e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 3.25 dsm 8.16997e-14 dsm_est 1.30809e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 3.5 dsm 1.95956e-14 dsm_est 3.19683e-17 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 3.75 dsm 2.16401e-14 dsm_est 2.39462e-17 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 4 dsm 9.37664e-14 dsm_est 5.67685e-17 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 4.25 dsm 2.10442e-13 dsm_est 1.4459e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 4.5 dsm 1.64627e-14 dsm_est 4.44199e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 4.75 dsm 1.39177e-13 dsm_est 1.03959e-16 nsteps 3201 - h 7.8125e-05 rk_type 1 order 4 acc 3 t 5 dsm 7.51104e-14 dsm_est 7.26822e-17 nsteps 3201 + h 0.005 rk_type 1 order 4 acc 1 t 0.25 dsm 5.21403e-11 dsm_est 9.81864e-11 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 0.5 dsm 8.09196e-11 dsm_est 6.72903e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 0.75 dsm 2.67748e-10 dsm_est 2.41282e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 1 dsm 6.30262e-10 dsm_est 6.79473e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 1.25 dsm 1.52409e-09 dsm_est 2.9495e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 1.5 dsm 3.99035e-09 dsm_est 2.09292e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 1.75 dsm 8.44085e-10 dsm_est 4.47572e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 2 dsm 1.18794e-09 dsm_est 6.20571e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 2.25 dsm 1.32821e-11 dsm_est 1.30104e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 2.5 dsm 1.21144e-10 dsm_est 3.14498e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 2.75 dsm 1.16523e-10 dsm_est 4.75906e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 3 dsm 1.68934e-10 dsm_est 4.73361e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 3.25 dsm 1.88708e-10 dsm_est 4.04088e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 3.5 dsm 1.62516e-10 dsm_est 3.85204e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 3.75 dsm 1.24035e-10 dsm_est 3.15295e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 4 dsm 8.20401e-11 dsm_est 2.34866e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 4.25 dsm 2.51534e-11 dsm_est 1.38411e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 4.5 dsm 8.35906e-11 dsm_est 6.02326e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 4.75 dsm 4.42196e-11 dsm_est 3.27209e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 1 t 5 dsm 3.85102e-11 dsm_est 1.11005e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 0.25 dsm 5.21403e-11 dsm_est 4.72239e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 0.5 dsm 8.09196e-11 dsm_est 9.8588e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 0.75 dsm 2.67748e-10 dsm_est 6.70832e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 1 dsm 6.30262e-10 dsm_est 1.89978e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 1.25 dsm 1.52409e-09 dsm_est 3.65441e-07 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 1.5 dsm 3.99035e-09 dsm_est 1.84343e-07 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 1.75 dsm 8.44085e-10 dsm_est 6.32285e-07 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 2 dsm 1.18794e-09 dsm_est 7.82439e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 2.25 dsm 1.32821e-11 dsm_est 3.21993e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 2.5 dsm 1.21144e-10 dsm_est 1.17773e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 2.75 dsm 1.16523e-10 dsm_est 1.48012e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 3 dsm 1.68934e-10 dsm_est 1.80714e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 3.25 dsm 1.88708e-10 dsm_est 1.99409e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 3.5 dsm 1.62516e-10 dsm_est 1.76515e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 3.75 dsm 1.24035e-10 dsm_est 1.38186e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 4 dsm 8.20401e-11 dsm_est 9.48915e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 4.25 dsm 2.51534e-11 dsm_est 4.22822e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 4.5 dsm 8.35906e-11 dsm_est 2.05025e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 4.75 dsm 4.42196e-11 dsm_est 6.10519e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 5 dsm 3.85102e-11 dsm_est 3.38535e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 0.25 dsm 5.21403e-11 dsm_est 9.44479e-11 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 0.5 dsm 8.09196e-11 dsm_est 1.97176e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 0.75 dsm 2.67748e-10 dsm_est 1.34166e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 1 dsm 6.30262e-10 dsm_est 3.79957e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 1.25 dsm 1.52409e-09 dsm_est 7.30883e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 1.5 dsm 3.99035e-09 dsm_est 3.68685e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 1.75 dsm 8.44085e-10 dsm_est 1.26457e-08 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 2 dsm 1.18794e-09 dsm_est 1.56488e-09 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 2.25 dsm 1.32821e-11 dsm_est 6.43986e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 2.5 dsm 1.21144e-10 dsm_est 2.35547e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 2.75 dsm 1.16523e-10 dsm_est 2.96024e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 3 dsm 1.68934e-10 dsm_est 3.61428e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 3.25 dsm 1.88708e-10 dsm_est 3.98818e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 3.5 dsm 1.62516e-10 dsm_est 3.5303e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 3.75 dsm 1.24035e-10 dsm_est 2.76372e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 4 dsm 8.20401e-11 dsm_est 1.89783e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 4.25 dsm 2.51534e-11 dsm_est 8.45643e-11 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 4.5 dsm 8.35906e-11 dsm_est 4.10049e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 4.75 dsm 4.42196e-11 dsm_est 1.22104e-10 nsteps 50 + h 0.005 rk_type 1 order 4 acc 3 t 5 dsm 3.85102e-11 dsm_est 6.7707e-11 nsteps 50 + h 0.005 rk_type 1 order 4 acc 2 t 0.25 dsm 5.21403e-11 dsm_est 7.95692e-10 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 0.5 dsm 8.09196e-11 dsm_est 1.23285e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 0.75 dsm 2.67748e-10 dsm_est 4.09757e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 1 dsm 6.30262e-10 dsm_est 9.39893e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 1.25 dsm 1.52409e-09 dsm_est 2.40573e-08 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 1.5 dsm 3.99035e-09 dsm_est 5.97728e-08 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 1.75 dsm 8.44085e-10 dsm_est 1.29796e-08 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 2 dsm 1.18794e-09 dsm_est 1.73495e-08 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 2.25 dsm 1.32821e-11 dsm_est 3.10253e-10 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 2.5 dsm 1.21144e-10 dsm_est 1.83189e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 2.75 dsm 1.16523e-10 dsm_est 1.7867e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 3 dsm 1.68934e-10 dsm_est 2.58689e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 3.25 dsm 1.88708e-10 dsm_est 2.90753e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 3.5 dsm 1.62516e-10 dsm_est 2.50802e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 3.75 dsm 1.24035e-10 dsm_est 1.91556e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 4 dsm 8.20401e-11 dsm_est 1.26804e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 4.25 dsm 2.51534e-11 dsm_est 3.93895e-10 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 4.5 dsm 8.35906e-11 dsm_est 1.26361e-09 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 4.75 dsm 4.42196e-11 dsm_est 6.74967e-10 nsteps 75 + h 0.005 rk_type 1 order 4 acc 2 t 5 dsm 3.85102e-11 dsm_est 5.81114e-10 nsteps 75 + h 0.00125 rk_type 1 order 4 acc 1 t 0.25 dsm 2.01841e-13 dsm_est 3.77538e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 0.5 dsm 3.13517e-13 dsm_est 2.77175e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 0.75 dsm 1.02653e-12 dsm_est 9.3722e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 1 dsm 2.47773e-12 dsm_est 2.64908e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 1.25 dsm 5.77542e-12 dsm_est 1.14642e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 1.5 dsm 1.56154e-11 dsm_est 8.48462e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 1.75 dsm 3.22217e-12 dsm_est 1.74828e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 2 dsm 4.72964e-12 dsm_est 2.48513e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 2.25 dsm 3.87824e-14 dsm_est 5.096e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 2.5 dsm 4.72459e-13 dsm_est 1.33152e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 2.75 dsm 4.51167e-13 dsm_est 1.84806e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 3 dsm 6.43596e-13 dsm_est 1.84115e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 3.25 dsm 7.22211e-13 dsm_est 1.55201e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 3.5 dsm 6.20784e-13 dsm_est 1.47698e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 3.75 dsm 4.72627e-13 dsm_est 1.2088e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 4 dsm 3.14855e-13 dsm_est 9.00589e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 4.25 dsm 9.3368e-14 dsm_est 5.31262e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 4.5 dsm 2.91921e-13 dsm_est 2.34297e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 4.75 dsm 1.6573e-13 dsm_est 1.29403e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 1 t 5 dsm 1.6271e-13 dsm_est 4.37334e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 0.25 dsm 2.01841e-13 dsm_est 7.25486e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 0.5 dsm 3.13517e-13 dsm_est 1.52973e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 0.75 dsm 1.02653e-12 dsm_est 1.03934e-09 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 1 dsm 2.47773e-12 dsm_est 2.97835e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 1.25 dsm 5.77542e-12 dsm_est 5.68887e-09 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 1.5 dsm 1.56154e-11 dsm_est 2.86996e-09 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 1.75 dsm 3.22217e-12 dsm_est 9.84613e-09 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 2 dsm 4.72964e-12 dsm_est 1.23678e-09 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 2.25 dsm 3.87824e-14 dsm_est 5.03625e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 2.5 dsm 4.72459e-13 dsm_est 1.83655e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 2.75 dsm 4.51167e-13 dsm_est 2.28914e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 3 dsm 6.43596e-13 dsm_est 2.789e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 3.25 dsm 7.22211e-13 dsm_est 3.06134e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 3.5 dsm 6.20784e-13 dsm_est 2.70304e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 3.75 dsm 4.72627e-13 dsm_est 2.11458e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 4 dsm 3.14855e-13 dsm_est 1.4504e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 4.25 dsm 9.3368e-14 dsm_est 6.4594e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 4.5 dsm 2.91921e-13 dsm_est 3.18737e-10 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.6573e-13 dsm_est 9.47331e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 5 dsm 1.6271e-13 dsm_est 5.28886e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 0.25 dsm 2.01841e-13 dsm_est 3.62743e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 0.5 dsm 3.13517e-13 dsm_est 7.64866e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 0.75 dsm 1.02653e-12 dsm_est 5.1967e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 1 dsm 2.47773e-12 dsm_est 1.48917e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 1.25 dsm 5.77542e-12 dsm_est 2.84443e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 1.5 dsm 1.56154e-11 dsm_est 1.43498e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 1.75 dsm 3.22217e-12 dsm_est 4.92307e-11 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 2 dsm 4.72964e-12 dsm_est 6.18389e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 2.25 dsm 3.87824e-14 dsm_est 2.51813e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 2.5 dsm 4.72459e-13 dsm_est 9.18276e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 2.75 dsm 4.51167e-13 dsm_est 1.14457e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 3 dsm 6.43596e-13 dsm_est 1.3945e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 3.25 dsm 7.22211e-13 dsm_est 1.53067e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 3.5 dsm 6.20784e-13 dsm_est 1.35152e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 3.75 dsm 4.72627e-13 dsm_est 1.05729e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 4 dsm 3.14855e-13 dsm_est 7.25201e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 4.25 dsm 9.3368e-14 dsm_est 3.2297e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 4.5 dsm 2.91921e-13 dsm_est 1.59369e-12 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 4.75 dsm 1.6573e-13 dsm_est 4.73665e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 3 t 5 dsm 1.6271e-13 dsm_est 2.64443e-13 nsteps 200 + h 0.00125 rk_type 1 order 4 acc 2 t 0.25 dsm 2.01841e-13 dsm_est 3.03062e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 0.5 dsm 3.13517e-13 dsm_est 4.70726e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 0.75 dsm 1.02653e-12 dsm_est 1.55443e-11 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 1 dsm 2.47773e-12 dsm_est 3.7027e-11 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 1.25 dsm 5.77542e-12 dsm_est 8.7363e-11 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 1.5 dsm 1.56154e-11 dsm_est 2.33971e-10 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 1.75 dsm 3.22217e-12 dsm_est 4.89015e-11 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 2 dsm 4.72964e-12 dsm_est 7.03903e-11 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 2.25 dsm 3.87824e-14 dsm_est 6.46593e-13 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 2.5 dsm 4.72459e-13 dsm_est 7.07095e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 2.75 dsm 4.51167e-13 dsm_est 6.75808e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 3 dsm 6.43596e-13 dsm_est 9.81246e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 3.25 dsm 7.22211e-13 dsm_est 1.09236e-11 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 3.5 dsm 6.20784e-13 dsm_est 9.401e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 3.75 dsm 4.72627e-13 dsm_est 7.17317e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 4 dsm 3.14855e-13 dsm_est 4.74071e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 4.25 dsm 9.3368e-14 dsm_est 1.43094e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 4.5 dsm 2.91921e-13 dsm_est 4.91609e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.6573e-13 dsm_est 2.55493e-12 nsteps 300 + h 0.00125 rk_type 1 order 4 acc 2 t 5 dsm 1.6271e-13 dsm_est 2.22709e-12 nsteps 300 + h 0.0003125 rk_type 1 order 4 acc 1 t 0.25 dsm 1.00763e-15 dsm_est 1.46895e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 0.5 dsm 5.38587e-15 dsm_est 1.0969e-14 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 0.75 dsm 1.80125e-14 dsm_est 3.65508e-14 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 1 dsm 7.40963e-15 dsm_est 1.03425e-14 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 1.25 dsm 1.21381e-13 dsm_est 4.47231e-13 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 1 t 1.5 dsm 9.5723e-14 dsm_est 3.34348e-13 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 1 t 1.75 dsm 2.05257e-14 dsm_est 6.82389e-13 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 1 t 2 dsm 3.25875e-14 dsm_est 9.76371e-14 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 1 t 2.25 dsm 2.12339e-13 dsm_est 1.9918e-14 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 2.5 dsm 9.89627e-15 dsm_est 5.3034e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 2.75 dsm 1.38911e-14 dsm_est 7.20829e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 3 dsm 6.84966e-14 dsm_est 7.18382e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 3.25 dsm 4.56408e-14 dsm_est 6.03712e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 3.5 dsm 1.15732e-14 dsm_est 5.74258e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 3.75 dsm 1.10555e-14 dsm_est 4.69975e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 4 dsm 5.31108e-14 dsm_est 3.50156e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 1 t 4.25 dsm 2.07975e-13 dsm_est 2.06615e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 1 t 4.5 dsm 1.58453e-14 dsm_est 9.14174e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 1 t 4.75 dsm 1.39914e-13 dsm_est 5.07035e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 1 t 5 dsm 7.65011e-14 dsm_est 1.71195e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 0.25 dsm 1.00763e-15 dsm_est 1.12877e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 0.5 dsm 5.38587e-15 dsm_est 2.38589e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 0.75 dsm 1.80125e-14 dsm_est 1.6205e-11 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 1 dsm 7.40963e-15 dsm_est 4.6576e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 1.25 dsm 1.21381e-13 dsm_est 8.87942e-11 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 1.5 dsm 9.5723e-14 dsm_est 4.47928e-11 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 1.75 dsm 2.05257e-14 dsm_est 1.53692e-10 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 2 dsm 3.25875e-14 dsm_est 1.93805e-11 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 2.25 dsm 2.12339e-13 dsm_est 7.87079e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 2.5 dsm 9.89627e-15 dsm_est 2.86806e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 2.75 dsm 1.38911e-14 dsm_est 3.56762e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 3 dsm 6.84966e-14 dsm_est 4.34432e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 3.25 dsm 4.56408e-14 dsm_est 4.76226e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 3.5 dsm 1.15732e-14 dsm_est 4.20219e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 3.75 dsm 1.10555e-14 dsm_est 3.28678e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 4 dsm 5.31108e-14 dsm_est 2.25377e-12 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 2 t 4.25 dsm 2.07975e-13 dsm_est 1.00362e-12 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 4.5 dsm 1.58453e-14 dsm_est 4.97393e-12 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39914e-13 dsm_est 1.47765e-12 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 5 dsm 7.65011e-14 dsm_est 8.2636e-13 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 0.25 dsm 1.00763e-15 dsm_est 1.41096e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 0.5 dsm 5.38587e-15 dsm_est 2.98236e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 0.75 dsm 1.80125e-14 dsm_est 2.02563e-14 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 1 dsm 7.40963e-15 dsm_est 5.822e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 1.25 dsm 1.21381e-13 dsm_est 1.10993e-13 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 1.5 dsm 9.5723e-14 dsm_est 5.5991e-14 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 1.75 dsm 2.05257e-14 dsm_est 1.92115e-13 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 2 dsm 3.25875e-14 dsm_est 2.42256e-14 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 2.25 dsm 2.12339e-13 dsm_est 9.83849e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 2.5 dsm 9.89627e-15 dsm_est 3.58508e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 2.75 dsm 1.38911e-14 dsm_est 4.45952e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 3 dsm 6.84966e-14 dsm_est 5.4304e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 3.25 dsm 4.56408e-14 dsm_est 5.95283e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 3.5 dsm 1.15732e-14 dsm_est 5.25274e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 3.75 dsm 1.10555e-14 dsm_est 4.10848e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 4 dsm 5.31108e-14 dsm_est 2.81721e-15 nsteps 800 + h 0.0003125 rk_type 1 order 4 acc 3 t 4.25 dsm 2.07975e-13 dsm_est 1.25453e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 4.5 dsm 1.58453e-14 dsm_est 6.21742e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 4.75 dsm 1.39914e-13 dsm_est 1.84706e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 3 t 5 dsm 7.65011e-14 dsm_est 1.03295e-15 nsteps 801 + h 0.0003125 rk_type 1 order 4 acc 2 t 0.25 dsm 1.00763e-15 dsm_est 1.15985e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 0.5 dsm 5.38587e-15 dsm_est 1.74342e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 0.75 dsm 1.80125e-14 dsm_est 7.61331e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 1 dsm 7.40963e-15 dsm_est 1.67703e-13 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 1.25 dsm 1.21381e-13 dsm_est 1.58952e-13 nsteps 1201 + h 0.0003125 rk_type 1 order 4 acc 2 t 1.5 dsm 9.5723e-14 dsm_est 8.52684e-13 nsteps 1201 + h 0.0003125 rk_type 1 order 4 acc 2 t 1.75 dsm 2.05257e-14 dsm_est 2.41889e-13 nsteps 1201 + h 0.0003125 rk_type 1 order 4 acc 2 t 2 dsm 3.25875e-14 dsm_est 2.52056e-13 nsteps 1201 + h 0.0003125 rk_type 1 order 4 acc 2 t 2.25 dsm 2.12339e-13 dsm_est 2.83725e-13 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 2.5 dsm 9.89627e-15 dsm_est 2.7977e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 2.75 dsm 1.38911e-14 dsm_est 3.09377e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 3 dsm 6.84966e-14 dsm_est 7.87663e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 3.25 dsm 4.56408e-14 dsm_est 6.91436e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 3.5 dsm 1.15732e-14 dsm_est 3.89232e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 3.75 dsm 1.10555e-14 dsm_est 2.80329e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 4 dsm 5.31108e-14 dsm_est 4.23597e-14 nsteps 1200 + h 0.0003125 rk_type 1 order 4 acc 2 t 4.25 dsm 2.07975e-13 dsm_est 3.23808e-13 nsteps 1201 + h 0.0003125 rk_type 1 order 4 acc 2 t 4.5 dsm 1.58453e-14 dsm_est 3.58036e-14 nsteps 1201 + h 0.0003125 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39914e-13 dsm_est 2.07845e-13 nsteps 1201 + h 0.0003125 rk_type 1 order 4 acc 2 t 5 dsm 7.65011e-14 dsm_est 1.10623e-13 nsteps 1201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 0.25 dsm 1.20076e-14 dsm_est 5.74637e-18 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 0.5 dsm 6.92912e-14 dsm_est 4.29826e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 0.75 dsm 7.1887e-14 dsm_est 1.42723e-16 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 1 dsm 5.28787e-14 dsm_est 4.0408e-17 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 1.25 dsm 4.54607e-13 dsm_est 1.74639e-15 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 1.5 dsm 1.61594e-13 dsm_est 1.30892e-15 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 1.75 dsm 1.4649e-13 dsm_est 2.66509e-15 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 2 dsm 6.84316e-14 dsm_est 3.81922e-16 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 2.25 dsm 3.74663e-13 dsm_est 7.78091e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 2.5 dsm 1.92671e-14 dsm_est 2.08064e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 2.75 dsm 1.94635e-14 dsm_est 2.81692e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 3 dsm 1.23711e-13 dsm_est 2.80567e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 3.25 dsm 8.16997e-14 dsm_est 2.35815e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 3.5 dsm 1.95956e-14 dsm_est 2.24148e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 3.75 dsm 2.16401e-14 dsm_est 1.83454e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 4 dsm 9.37664e-14 dsm_est 1.36572e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 4.25 dsm 2.10442e-13 dsm_est 8.05623e-18 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 4.5 dsm 1.64627e-14 dsm_est 3.57146e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 4.75 dsm 1.39282e-13 dsm_est 1.9826e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 1 t 5 dsm 7.51999e-14 dsm_est 6.68925e-18 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.25 dsm 1.20076e-14 dsm_est 1.76175e-14 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.5 dsm 6.92912e-14 dsm_est 3.72672e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.75 dsm 7.1887e-14 dsm_est 2.53064e-13 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1 dsm 5.28787e-14 dsm_est 7.27859e-14 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.25 dsm 4.54607e-13 dsm_est 1.38704e-12 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.5 dsm 1.61594e-13 dsm_est 6.99679e-13 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.75 dsm 1.4649e-13 dsm_est 2.40083e-12 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 2 dsm 6.84316e-14 dsm_est 3.03029e-13 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.25 dsm 3.74663e-13 dsm_est 1.22933e-13 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.5 dsm 1.92671e-14 dsm_est 4.4809e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.75 dsm 1.94635e-14 dsm_est 5.57001e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 3 dsm 1.23711e-13 dsm_est 6.78213e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.25 dsm 8.16997e-14 dsm_est 7.43249e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.5 dsm 1.95956e-14 dsm_est 6.55709e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.75 dsm 2.16401e-14 dsm_est 5.128e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 4 dsm 9.37664e-14 dsm_est 3.51557e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.25 dsm 2.10442e-13 dsm_est 1.56532e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.5 dsm 1.64627e-14 dsm_est 7.76538e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39282e-13 dsm_est 2.30748e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 5 dsm 7.51999e-14 dsm_est 1.29057e-14 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 0.25 dsm 1.20076e-14 dsm_est 5.50547e-18 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 0.5 dsm 6.92912e-14 dsm_est 1.1646e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 0.75 dsm 7.1887e-14 dsm_est 7.90824e-17 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 1 dsm 5.28787e-14 dsm_est 2.27456e-17 nsteps 3200 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 1.25 dsm 4.54607e-13 dsm_est 4.33451e-16 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 1.5 dsm 1.61594e-13 dsm_est 2.1865e-16 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 1.75 dsm 1.4649e-13 dsm_est 7.5026e-16 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 2 dsm 6.84316e-14 dsm_est 9.46965e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 2.25 dsm 3.74663e-13 dsm_est 3.84166e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 2.5 dsm 1.92671e-14 dsm_est 1.40028e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 2.75 dsm 1.94635e-14 dsm_est 1.74063e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 3 dsm 1.23711e-13 dsm_est 2.11941e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 3.25 dsm 8.16997e-14 dsm_est 2.32265e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 3.5 dsm 1.95956e-14 dsm_est 2.04909e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 3.75 dsm 2.16401e-14 dsm_est 1.6025e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 4 dsm 9.37664e-14 dsm_est 1.09862e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 4.25 dsm 2.10442e-13 dsm_est 4.89163e-18 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 4.5 dsm 1.64627e-14 dsm_est 2.42668e-17 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 4.75 dsm 1.39282e-13 dsm_est 7.21088e-18 nsteps 3201 + h 7.8125e-05 rk_type 1 order 4 acc 3 t 5 dsm 7.51999e-14 dsm_est 4.03302e-18 nsteps 3201 h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.25 dsm 1.20076e-14 dsm_est 9.70841e-15 nsteps 4800 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.5 dsm 6.92895e-14 dsm_est 1.22494e-13 nsteps 4801 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.75 dsm 7.1887e-14 dsm_est 1.01008e-13 nsteps 4801 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1 dsm 5.29714e-14 dsm_est 7.31368e-14 nsteps 4801 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.25 dsm 4.54758e-13 dsm_est 7.05734e-13 nsteps 4801 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.5 dsm 1.61784e-13 dsm_est 2.49851e-13 nsteps 4801 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.75 dsm 1.4649e-13 dsm_est 2.2764e-13 nsteps 4801 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 2 dsm 6.85301e-14 dsm_est 1.06912e-13 nsteps 4801 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.25 dsm 3.74507e-13 dsm_est 1.85903e-15 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.5 dsm 6.92912e-14 dsm_est 1.22647e-13 nsteps 4801 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 0.75 dsm 7.1887e-14 dsm_est 1.00892e-13 nsteps 4801 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1 dsm 5.28787e-14 dsm_est 7.30441e-14 nsteps 4801 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.25 dsm 4.54607e-13 dsm_est 7.08003e-13 nsteps 4801 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.5 dsm 1.61594e-13 dsm_est 2.50033e-13 nsteps 4801 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 1.75 dsm 1.4649e-13 dsm_est 2.29073e-13 nsteps 4801 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 2 dsm 6.84316e-14 dsm_est 1.07305e-13 nsteps 4801 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.25 dsm 3.74663e-13 dsm_est 1.80276e-15 nsteps 4802 h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.5 dsm 1.92671e-14 dsm_est 4.28748e-15 nsteps 4802 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.75 dsm 1.93516e-14 dsm_est 3.17803e-15 nsteps 4802 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 3 dsm 1.23711e-13 dsm_est 2.14064e-15 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 2.75 dsm 1.94635e-14 dsm_est 3.11659e-15 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 3 dsm 1.23711e-13 dsm_est 1.92417e-15 nsteps 4802 h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.25 dsm 8.16997e-14 dsm_est 9.8125e-16 nsteps 4802 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.5 dsm 1.95956e-14 dsm_est 1.42241e-15 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.5 dsm 1.95956e-14 dsm_est 1.43034e-15 nsteps 4802 h 7.8125e-05 rk_type 1 order 4 acc 2 t 3.75 dsm 2.16401e-14 dsm_est 9.52702e-16 nsteps 4802 h 7.8125e-05 rk_type 1 order 4 acc 2 t 4 dsm 9.37664e-14 dsm_est 1.67292e-15 nsteps 4802 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.25 dsm 2.10442e-13 dsm_est 5.74872e-16 nsteps 4802 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.5 dsm 1.64627e-14 dsm_est 2.39534e-15 nsteps 4802 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39177e-13 dsm_est 1.10424e-15 nsteps 4802 - h 7.8125e-05 rk_type 1 order 4 acc 2 t 5 dsm 7.51104e-14 dsm_est 1.21712e-15 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.25 dsm 2.10442e-13 dsm_est 4.04267e-16 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.5 dsm 1.64627e-14 dsm_est 2.45278e-15 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 4.75 dsm 1.39282e-13 dsm_est 1.11935e-15 nsteps 4802 + h 7.8125e-05 rk_type 1 order 4 acc 2 t 5 dsm 7.51999e-14 dsm_est 1.26682e-15 nsteps 4802 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_2_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_2_0.out index 8809b5e0a0..c359181d73 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_2_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_accumerror_kpr_20_2_0.out @@ -8,183 +8,183 @@ Accumulated error estimation test (Nonlinear Kvaerno-Prothero-Robinson problem): DIRK solver, order = 2 Adaptive-step runs: - rtol 0.01 rk_type 0 order 2 acc 1 t 0.25 dsm 5.77245e-05 dsm_est 0.00686971 nsteps 9 - rtol 0.01 rk_type 0 order 2 acc 1 t 0.5 dsm 0.00372257 dsm_est 0.00877859 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 1 t 0.75 dsm 0.000232425 dsm_est 0.0066976 nsteps 13 - rtol 0.01 rk_type 0 order 2 acc 1 t 1 dsm 0.00327055 dsm_est 0.00759421 nsteps 9 - rtol 0.01 rk_type 0 order 2 acc 1 t 1.25 dsm 0.00363058 dsm_est 0.00633487 nsteps 16 - rtol 0.01 rk_type 0 order 2 acc 1 t 1.5 dsm 0.00267076 dsm_est 0.00679482 nsteps 12 - rtol 0.01 rk_type 0 order 2 acc 1 t 1.75 dsm 0.00971976 dsm_est 0.00698823 nsteps 16 - rtol 0.01 rk_type 0 order 2 acc 1 t 2 dsm 0.000918207 dsm_est 0.00684032 nsteps 14 - rtol 0.01 rk_type 0 order 2 acc 1 t 2.25 dsm 0.0016944 dsm_est 0.00722321 nsteps 10 - rtol 0.01 rk_type 0 order 2 acc 1 t 2.5 dsm 0.0056199 dsm_est 0.00390805 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 1 t 2.75 dsm 0.00855479 dsm_est 0.00899318 nsteps 6 - rtol 0.01 rk_type 0 order 2 acc 1 t 3 dsm 0.0023308 dsm_est 0.00881185 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 1 t 3.25 dsm 0.000539467 dsm_est 0.00351937 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 1 t 3.5 dsm 0.000312605 dsm_est 0.00446438 nsteps 6 - rtol 0.01 rk_type 0 order 2 acc 1 t 3.75 dsm 0.00144605 dsm_est 0.00759178 nsteps 4 - rtol 0.01 rk_type 0 order 2 acc 1 t 4 dsm 0.00023147 dsm_est 0.0031488 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 1 t 4.25 dsm 0.00806953 dsm_est 0.00741572 nsteps 4 - rtol 0.01 rk_type 0 order 2 acc 1 t 4.5 dsm 0.000322019 dsm_est 0.00679423 nsteps 11 - rtol 0.01 rk_type 0 order 2 acc 1 t 4.75 dsm 0.00405487 dsm_est 0.00313156 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 1 t 5 dsm 0.000699178 dsm_est 0.0036148 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 2 t 0.25 dsm 5.77245e-05 dsm_est 0.0164981 nsteps 9 - rtol 0.01 rk_type 0 order 2 acc 2 t 0.5 dsm 0.00372257 dsm_est 0.0210208 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 2 t 0.75 dsm 0.000232425 dsm_est 0.0308702 nsteps 13 - rtol 0.01 rk_type 0 order 2 acc 2 t 1 dsm 0.00327055 dsm_est 0.0340018 nsteps 9 - rtol 0.01 rk_type 0 order 2 acc 2 t 1.25 dsm 0.00363058 dsm_est 0.045914 nsteps 16 - rtol 0.01 rk_type 0 order 2 acc 2 t 1.5 dsm 0.00267076 dsm_est 0.0507535 nsteps 12 - rtol 0.01 rk_type 0 order 2 acc 2 t 1.75 dsm 0.00971976 dsm_est 0.05629 nsteps 16 - rtol 0.01 rk_type 0 order 2 acc 2 t 2 dsm 0.000918207 dsm_est 0.0375381 nsteps 14 - rtol 0.01 rk_type 0 order 2 acc 2 t 2.25 dsm 0.0016944 dsm_est 0.031166 nsteps 10 - rtol 0.01 rk_type 0 order 2 acc 2 t 2.5 dsm 0.0056199 dsm_est 0.00967058 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 2 t 2.75 dsm 0.00855479 dsm_est 0.0140582 nsteps 6 - rtol 0.01 rk_type 0 order 2 acc 2 t 3 dsm 0.0023308 dsm_est 0.014547 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 2 t 3.25 dsm 0.000539467 dsm_est 0.0111796 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 2 t 3.5 dsm 0.000312605 dsm_est 0.00770553 nsteps 6 - rtol 0.01 rk_type 0 order 2 acc 2 t 3.75 dsm 0.00144605 dsm_est 0.00972643 nsteps 4 - rtol 0.01 rk_type 0 order 2 acc 2 t 4 dsm 0.00023147 dsm_est 0.00981914 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 2 t 4.25 dsm 0.00806953 dsm_est 0.0118304 nsteps 4 - rtol 0.01 rk_type 0 order 2 acc 2 t 4.5 dsm 0.000322019 dsm_est 0.0262973 nsteps 11 - rtol 0.01 rk_type 0 order 2 acc 2 t 4.75 dsm 0.00405487 dsm_est 0.00626689 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 2 t 5 dsm 0.000699178 dsm_est 0.0128716 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 3 t 0.25 dsm 5.77245e-05 dsm_est 0.00353036 nsteps 9 - rtol 0.01 rk_type 0 order 2 acc 3 t 0.5 dsm 0.00372257 dsm_est 0.00558255 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 3 t 0.75 dsm 0.000232425 dsm_est 0.00326237 nsteps 13 - rtol 0.01 rk_type 0 order 2 acc 3 t 1 dsm 0.00327055 dsm_est 0.00560468 nsteps 9 - rtol 0.01 rk_type 0 order 2 acc 3 t 1.25 dsm 0.00363058 dsm_est 0.00326167 nsteps 16 - rtol 0.01 rk_type 0 order 2 acc 3 t 1.5 dsm 0.00267076 dsm_est 0.00448671 nsteps 12 - rtol 0.01 rk_type 0 order 2 acc 3 t 1.75 dsm 0.00971976 dsm_est 0.00430156 nsteps 16 - rtol 0.01 rk_type 0 order 2 acc 3 t 2 dsm 0.000918207 dsm_est 0.00360429 nsteps 14 - rtol 0.01 rk_type 0 order 2 acc 3 t 2.25 dsm 0.0016944 dsm_est 0.00427241 nsteps 10 - rtol 0.01 rk_type 0 order 2 acc 3 t 2.5 dsm 0.0056199 dsm_est 0.0029018 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 3 t 2.75 dsm 0.00855479 dsm_est 0.00614645 nsteps 6 - rtol 0.01 rk_type 0 order 2 acc 3 t 3 dsm 0.0023308 dsm_est 0.00499894 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 3 t 3.25 dsm 0.000539467 dsm_est 0.00271774 nsteps 8 - rtol 0.01 rk_type 0 order 2 acc 3 t 3.5 dsm 0.000312605 dsm_est 0.0029728 nsteps 6 - rtol 0.01 rk_type 0 order 2 acc 3 t 3.75 dsm 0.00144605 dsm_est 0.00565195 nsteps 4 - rtol 0.01 rk_type 0 order 2 acc 3 t 4 dsm 0.00023147 dsm_est 0.00239782 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 3 t 4.25 dsm 0.00806953 dsm_est 0.00616552 nsteps 4 - rtol 0.01 rk_type 0 order 2 acc 3 t 4.5 dsm 0.000322019 dsm_est 0.00389097 nsteps 11 - rtol 0.01 rk_type 0 order 2 acc 3 t 4.75 dsm 0.00405487 dsm_est 0.00155112 nsteps 7 - rtol 0.01 rk_type 0 order 2 acc 3 t 5 dsm 0.000699178 dsm_est 0.00252209 nsteps 8 - rtol 0.0001 rk_type 0 order 2 acc 1 t 0.25 dsm 7.46709e-07 dsm_est 7.18663e-05 nsteps 49 - rtol 0.0001 rk_type 0 order 2 acc 1 t 0.5 dsm 6.50352e-05 dsm_est 7.49302e-05 nsteps 42 - rtol 0.0001 rk_type 0 order 2 acc 1 t 0.75 dsm 4.48379e-06 dsm_est 7.39118e-05 nsteps 84 - rtol 0.0001 rk_type 0 order 2 acc 1 t 1 dsm 3.76158e-05 dsm_est 7.93376e-05 nsteps 61 - rtol 0.0001 rk_type 0 order 2 acc 1 t 1.25 dsm 6.82164e-05 dsm_est 9.03489e-05 nsteps 110 - rtol 0.0001 rk_type 0 order 2 acc 1 t 1.5 dsm 3.68171e-05 dsm_est 8.51313e-05 nsteps 109 - rtol 0.0001 rk_type 0 order 2 acc 1 t 1.75 dsm 2.35133e-05 dsm_est 8.17961e-05 nsteps 136 - rtol 0.0001 rk_type 0 order 2 acc 1 t 2 dsm 1.61655e-05 dsm_est 6.74799e-05 nsteps 91 - rtol 0.0001 rk_type 0 order 2 acc 1 t 2.25 dsm 6.22229e-05 dsm_est 8.55795e-05 nsteps 65 - rtol 0.0001 rk_type 0 order 2 acc 1 t 2.5 dsm 4.95459e-05 dsm_est 9.95948e-05 nsteps 38 - rtol 0.0001 rk_type 0 order 2 acc 1 t 2.75 dsm 4.09894e-05 dsm_est 7.97659e-05 nsteps 35 - rtol 0.0001 rk_type 0 order 2 acc 1 t 3 dsm 3.51226e-05 dsm_est 9.83341e-05 nsteps 41 - rtol 0.0001 rk_type 0 order 2 acc 1 t 3.25 dsm 9.918e-06 dsm_est 7.80442e-05 nsteps 34 - rtol 0.0001 rk_type 0 order 2 acc 1 t 3.5 dsm 6.68205e-06 dsm_est 6.93297e-05 nsteps 29 - rtol 0.0001 rk_type 0 order 2 acc 1 t 3.75 dsm 1.12533e-05 dsm_est 7.07769e-05 nsteps 22 - rtol 0.0001 rk_type 0 order 2 acc 1 t 4 dsm 4.18856e-06 dsm_est 7.35665e-05 nsteps 31 - rtol 0.0001 rk_type 0 order 2 acc 1 t 4.25 dsm 5.65033e-05 dsm_est 9.50758e-05 nsteps 27 - rtol 0.0001 rk_type 0 order 2 acc 1 t 4.5 dsm 8.06381e-06 dsm_est 7.57142e-05 nsteps 60 - rtol 0.0001 rk_type 0 order 2 acc 1 t 4.75 dsm 3.08146e-05 dsm_est 7.53944e-05 nsteps 36 - rtol 0.0001 rk_type 0 order 2 acc 1 t 5 dsm 1.43844e-05 dsm_est 7.56604e-05 nsteps 37 - rtol 0.0001 rk_type 0 order 2 acc 2 t 0.25 dsm 7.46709e-07 dsm_est 0.00190862 nsteps 49 - rtol 0.0001 rk_type 0 order 2 acc 2 t 0.5 dsm 6.50352e-05 dsm_est 0.00204717 nsteps 42 - rtol 0.0001 rk_type 0 order 2 acc 2 t 0.75 dsm 4.48379e-06 dsm_est 0.00379996 nsteps 84 - rtol 0.0001 rk_type 0 order 2 acc 2 t 1 dsm 3.76158e-05 dsm_est 0.00364205 nsteps 61 - rtol 0.0001 rk_type 0 order 2 acc 2 t 1.25 dsm 6.82164e-05 dsm_est 0.00560546 nsteps 110 - rtol 0.0001 rk_type 0 order 2 acc 2 t 1.5 dsm 3.68171e-05 dsm_est 0.00560365 nsteps 109 - rtol 0.0001 rk_type 0 order 2 acc 2 t 1.75 dsm 2.35133e-05 dsm_est 0.00647595 nsteps 136 - rtol 0.0001 rk_type 0 order 2 acc 2 t 2 dsm 1.61655e-05 dsm_est 0.00463485 nsteps 91 - rtol 0.0001 rk_type 0 order 2 acc 2 t 2.25 dsm 6.22229e-05 dsm_est 0.00349003 nsteps 65 - rtol 0.0001 rk_type 0 order 2 acc 2 t 2.5 dsm 4.95459e-05 dsm_est 0.00168906 nsteps 38 - rtol 0.0001 rk_type 0 order 2 acc 2 t 2.75 dsm 4.09894e-05 dsm_est 0.00204891 nsteps 35 - rtol 0.0001 rk_type 0 order 2 acc 2 t 3 dsm 3.51226e-05 dsm_est 0.00157108 nsteps 41 - rtol 0.0001 rk_type 0 order 2 acc 2 t 3.25 dsm 9.918e-06 dsm_est 0.00168635 nsteps 34 - rtol 0.0001 rk_type 0 order 2 acc 2 t 3.5 dsm 6.68205e-06 dsm_est 0.00104605 nsteps 29 - rtol 0.0001 rk_type 0 order 2 acc 2 t 3.75 dsm 1.12533e-05 dsm_est 0.00113201 nsteps 22 - rtol 0.0001 rk_type 0 order 2 acc 2 t 4 dsm 4.18856e-06 dsm_est 0.00148082 nsteps 31 - rtol 0.0001 rk_type 0 order 2 acc 2 t 4.25 dsm 5.65033e-05 dsm_est 0.0013283 nsteps 27 - rtol 0.0001 rk_type 0 order 2 acc 2 t 4.5 dsm 8.06381e-06 dsm_est 0.00333997 nsteps 60 - rtol 0.0001 rk_type 0 order 2 acc 2 t 4.75 dsm 3.08146e-05 dsm_est 0.00136969 nsteps 36 - rtol 0.0001 rk_type 0 order 2 acc 2 t 5 dsm 1.43844e-05 dsm_est 0.00206727 nsteps 37 - rtol 0.0001 rk_type 0 order 2 acc 3 t 0.25 dsm 7.46709e-07 dsm_est 3.95038e-05 nsteps 49 - rtol 0.0001 rk_type 0 order 2 acc 3 t 0.5 dsm 6.50352e-05 dsm_est 4.6374e-05 nsteps 42 - rtol 0.0001 rk_type 0 order 2 acc 3 t 0.75 dsm 4.48379e-06 dsm_est 4.43011e-05 nsteps 84 - rtol 0.0001 rk_type 0 order 2 acc 3 t 1 dsm 3.76158e-05 dsm_est 5.97518e-05 nsteps 61 - rtol 0.0001 rk_type 0 order 2 acc 3 t 1.25 dsm 6.82164e-05 dsm_est 4.87769e-05 nsteps 110 - rtol 0.0001 rk_type 0 order 2 acc 3 t 1.5 dsm 3.68171e-05 dsm_est 5.35469e-05 nsteps 109 - rtol 0.0001 rk_type 0 order 2 acc 3 t 1.75 dsm 2.35133e-05 dsm_est 4.62728e-05 nsteps 136 - rtol 0.0001 rk_type 0 order 2 acc 3 t 2 dsm 1.61655e-05 dsm_est 5.09881e-05 nsteps 91 - rtol 0.0001 rk_type 0 order 2 acc 3 t 2.25 dsm 6.22229e-05 dsm_est 5.36889e-05 nsteps 65 - rtol 0.0001 rk_type 0 order 2 acc 3 t 2.5 dsm 4.95459e-05 dsm_est 5.23304e-05 nsteps 38 - rtol 0.0001 rk_type 0 order 2 acc 3 t 2.75 dsm 4.09894e-05 dsm_est 5.62503e-05 nsteps 35 - rtol 0.0001 rk_type 0 order 2 acc 3 t 3 dsm 3.51226e-05 dsm_est 4.33776e-05 nsteps 41 - rtol 0.0001 rk_type 0 order 2 acc 3 t 3.25 dsm 9.918e-06 dsm_est 5.1345e-05 nsteps 34 - rtol 0.0001 rk_type 0 order 2 acc 3 t 3.5 dsm 6.68205e-06 dsm_est 3.84131e-05 nsteps 29 - rtol 0.0001 rk_type 0 order 2 acc 3 t 3.75 dsm 1.12533e-05 dsm_est 5.1961e-05 nsteps 22 - rtol 0.0001 rk_type 0 order 2 acc 3 t 4 dsm 4.18856e-06 dsm_est 4.8569e-05 nsteps 31 - rtol 0.0001 rk_type 0 order 2 acc 3 t 4.25 dsm 5.65033e-05 dsm_est 4.99955e-05 nsteps 27 - rtol 0.0001 rk_type 0 order 2 acc 3 t 4.5 dsm 8.06381e-06 dsm_est 5.6039e-05 nsteps 60 - rtol 0.0001 rk_type 0 order 2 acc 3 t 4.75 dsm 3.08146e-05 dsm_est 3.95264e-05 nsteps 36 - rtol 0.0001 rk_type 0 order 2 acc 3 t 5 dsm 1.43844e-05 dsm_est 5.62992e-05 nsteps 37 - rtol 1e-06 rk_type 0 order 2 acc 1 t 0.25 dsm 5.66725e-09 dsm_est 7.18787e-07 nsteps 488 - rtol 1e-06 rk_type 0 order 2 acc 1 t 0.5 dsm 9.92276e-07 dsm_est 8.1602e-07 nsteps 403 - rtol 1e-06 rk_type 0 order 2 acc 1 t 0.75 dsm 8.0717e-08 dsm_est 7.2088e-07 nsteps 823 - rtol 1e-06 rk_type 0 order 2 acc 1 t 1 dsm 5.67858e-07 dsm_est 9.90249e-07 nsteps 596 - rtol 1e-06 rk_type 0 order 2 acc 1 t 1.25 dsm 1.03484e-06 dsm_est 7.69939e-07 nsteps 1091 - rtol 1e-06 rk_type 0 order 2 acc 1 t 1.5 dsm 5.45182e-07 dsm_est 9.21351e-07 nsteps 1080 - rtol 1e-06 rk_type 0 order 2 acc 1 t 1.75 dsm 3.61096e-07 dsm_est 8.11495e-07 nsteps 1337 - rtol 1e-06 rk_type 0 order 2 acc 1 t 2 dsm 2.2003e-07 dsm_est 6.89881e-07 nsteps 898 - rtol 1e-06 rk_type 0 order 2 acc 1 t 2.25 dsm 9.38782e-07 dsm_est 7.22168e-07 nsteps 635 - rtol 1e-06 rk_type 0 order 2 acc 1 t 2.5 dsm 5.20042e-07 dsm_est 7.8752e-07 nsteps 372 - rtol 1e-06 rk_type 0 order 2 acc 1 t 2.75 dsm 4.66825e-07 dsm_est 7.09276e-07 nsteps 354 - rtol 1e-06 rk_type 0 order 2 acc 1 t 3 dsm 3.30086e-07 dsm_est 7.18289e-07 nsteps 409 - rtol 1e-06 rk_type 0 order 2 acc 1 t 3.25 dsm 1.19548e-07 dsm_est 7.25689e-07 nsteps 320 - rtol 1e-06 rk_type 0 order 2 acc 1 t 3.5 dsm 4.13474e-08 dsm_est 7.16259e-07 nsteps 288 - rtol 1e-06 rk_type 0 order 2 acc 1 t 3.75 dsm 1.02293e-07 dsm_est 7.17021e-07 nsteps 225 - rtol 1e-06 rk_type 0 order 2 acc 1 t 4 dsm 3.98477e-08 dsm_est 7.20467e-07 nsteps 304 - rtol 1e-06 rk_type 0 order 2 acc 1 t 4.25 dsm 7.93335e-07 dsm_est 7.48243e-07 nsteps 268 - rtol 1e-06 rk_type 0 order 2 acc 1 t 4.5 dsm 7.4366e-08 dsm_est 7.22713e-07 nsteps 597 - rtol 1e-06 rk_type 0 order 2 acc 1 t 4.75 dsm 5.08713e-07 dsm_est 8.6505e-07 nsteps 347 - rtol 1e-06 rk_type 0 order 2 acc 1 t 5 dsm 1.42752e-07 dsm_est 7.22893e-07 nsteps 366 - rtol 1e-06 rk_type 0 order 2 acc 2 t 0.25 dsm 5.66725e-09 dsm_est 0.000191192 nsteps 488 - rtol 1e-06 rk_type 0 order 2 acc 2 t 0.5 dsm 9.92276e-07 dsm_est 0.000207431 nsteps 403 - rtol 1e-06 rk_type 0 order 2 acc 2 t 0.75 dsm 8.0717e-08 dsm_est 0.00038834 nsteps 823 - rtol 1e-06 rk_type 0 order 2 acc 2 t 1 dsm 5.67858e-07 dsm_est 0.000365552 nsteps 596 - rtol 1e-06 rk_type 0 order 2 acc 2 t 1.25 dsm 1.03484e-06 dsm_est 0.000558232 nsteps 1091 - rtol 1e-06 rk_type 0 order 2 acc 2 t 1.5 dsm 5.45182e-07 dsm_est 0.000561123 nsteps 1080 - rtol 1e-06 rk_type 0 order 2 acc 2 t 1.75 dsm 3.61096e-07 dsm_est 0.000646341 nsteps 1337 - rtol 1e-06 rk_type 0 order 2 acc 2 t 2 dsm 2.2003e-07 dsm_est 0.000468686 nsteps 898 - rtol 1e-06 rk_type 0 order 2 acc 2 t 2.25 dsm 9.38782e-07 dsm_est 0.00034842 nsteps 635 - rtol 1e-06 rk_type 0 order 2 acc 2 t 2.5 dsm 5.20042e-07 dsm_est 0.000167351 nsteps 372 - rtol 1e-06 rk_type 0 order 2 acc 2 t 2.75 dsm 4.66825e-07 dsm_est 0.000203788 nsteps 354 - rtol 1e-06 rk_type 0 order 2 acc 2 t 3 dsm 3.30086e-07 dsm_est 0.000158918 nsteps 409 - rtol 1e-06 rk_type 0 order 2 acc 2 t 3.25 dsm 1.19548e-07 dsm_est 0.000177948 nsteps 320 - rtol 1e-06 rk_type 0 order 2 acc 2 t 3.5 dsm 4.13474e-08 dsm_est 0.0001041 nsteps 288 - rtol 1e-06 rk_type 0 order 2 acc 2 t 3.75 dsm 1.02293e-07 dsm_est 0.000113361 nsteps 225 - rtol 1e-06 rk_type 0 order 2 acc 2 t 4 dsm 3.98477e-08 dsm_est 0.000151291 nsteps 304 - rtol 1e-06 rk_type 0 order 2 acc 2 t 4.25 dsm 7.93335e-07 dsm_est 0.000130015 nsteps 268 - rtol 1e-06 rk_type 0 order 2 acc 2 t 4.5 dsm 7.4366e-08 dsm_est 0.000335997 nsteps 597 - rtol 1e-06 rk_type 0 order 2 acc 2 t 4.75 dsm 5.08713e-07 dsm_est 0.000143029 nsteps 347 - rtol 1e-06 rk_type 0 order 2 acc 2 t 5 dsm 1.42752e-07 dsm_est 0.000210843 nsteps 366 - rtol 1e-06 rk_type 0 order 2 acc 3 t 0.25 dsm 5.66725e-09 dsm_est 3.9261e-07 nsteps 488 - rtol 1e-06 rk_type 0 order 2 acc 3 t 0.5 dsm 9.92276e-07 dsm_est 5.09315e-07 nsteps 403 - rtol 1e-06 rk_type 0 order 2 acc 3 t 0.75 dsm 8.0717e-08 dsm_est 4.63477e-07 nsteps 823 - rtol 1e-06 rk_type 0 order 2 acc 3 t 1 dsm 5.67858e-07 dsm_est 6.16216e-07 nsteps 596 - rtol 1e-06 rk_type 0 order 2 acc 3 t 1.25 dsm 1.03484e-06 dsm_est 4.92364e-07 nsteps 1091 - rtol 1e-06 rk_type 0 order 2 acc 3 t 1.5 dsm 5.45182e-07 dsm_est 5.41053e-07 nsteps 1080 - rtol 1e-06 rk_type 0 order 2 acc 3 t 1.75 dsm 3.61096e-07 dsm_est 4.72477e-07 nsteps 1337 - rtol 1e-06 rk_type 0 order 2 acc 3 t 2 dsm 2.2003e-07 dsm_est 5.24929e-07 nsteps 898 - rtol 1e-06 rk_type 0 order 2 acc 3 t 2.25 dsm 9.38782e-07 dsm_est 5.42556e-07 nsteps 635 - rtol 1e-06 rk_type 0 order 2 acc 3 t 2.5 dsm 5.20042e-07 dsm_est 4.96892e-07 nsteps 372 - rtol 1e-06 rk_type 0 order 2 acc 3 t 2.75 dsm 4.66825e-07 dsm_est 5.60217e-07 nsteps 354 - rtol 1e-06 rk_type 0 order 2 acc 3 t 3 dsm 3.30086e-07 dsm_est 4.24795e-07 nsteps 409 - rtol 1e-06 rk_type 0 order 2 acc 3 t 3.25 dsm 1.19548e-07 dsm_est 5.56477e-07 nsteps 320 - rtol 1e-06 rk_type 0 order 2 acc 3 t 3.5 dsm 4.13474e-08 dsm_est 3.67781e-07 nsteps 288 - rtol 1e-06 rk_type 0 order 2 acc 3 t 3.75 dsm 1.02293e-07 dsm_est 5.03214e-07 nsteps 225 - rtol 1e-06 rk_type 0 order 2 acc 3 t 4 dsm 3.98477e-08 dsm_est 4.99206e-07 nsteps 304 - rtol 1e-06 rk_type 0 order 2 acc 3 t 4.25 dsm 7.93335e-07 dsm_est 4.93361e-07 nsteps 268 - rtol 1e-06 rk_type 0 order 2 acc 3 t 4.5 dsm 7.4366e-08 dsm_est 5.62432e-07 nsteps 597 - rtol 1e-06 rk_type 0 order 2 acc 3 t 4.75 dsm 5.08713e-07 dsm_est 4.57462e-07 nsteps 347 - rtol 1e-06 rk_type 0 order 2 acc 3 t 5 dsm 1.42752e-07 dsm_est 5.75749e-07 nsteps 366 + rtol 0.01 rk_type 0 order 2 acc 1 t 0.25 dsm 0.00114218 dsm_est 0.00280175 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 0.5 dsm 0.0097582 dsm_est 0.00377638 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 0.75 dsm 0.00421706 dsm_est 0.00792893 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 1 dsm 0.00647292 dsm_est 0.00701625 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 1.25 dsm 0.0219543 dsm_est 0.00969681 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 1 t 1.5 dsm 0.00612961 dsm_est 0.00391335 nsteps 5 + rtol 0.01 rk_type 0 order 2 acc 1 t 1.75 dsm 0.0486524 dsm_est 0.00768615 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 1 t 2 dsm 0.0105588 dsm_est 0.00991716 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 1 t 2.25 dsm 0.0211198 dsm_est 0.00386276 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 2.5 dsm 0.00761315 dsm_est 0.00156584 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 2.75 dsm 0.00412193 dsm_est 0.00145145 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 3 dsm 0.002666 dsm_est 0.00349739 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 3.25 dsm 0.000713844 dsm_est 0.00235544 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 3.5 dsm 0.000748986 dsm_est 0.00127012 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 3.75 dsm 0.000331361 dsm_est 0.000902344 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 4 dsm 0.000385289 dsm_est 0.00178454 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 4.25 dsm 0.00400902 dsm_est 0.000392654 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 4.5 dsm 0.00387702 dsm_est 0.00840022 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 4.75 dsm 0.00419428 dsm_est 0.00251431 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 1 t 5 dsm 0.00163289 dsm_est 0.003757 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 0.25 dsm 0.00114218 dsm_est 0.00378285 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 0.5 dsm 0.0097582 dsm_est 0.00440036 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 0.75 dsm 0.00421706 dsm_est 0.0126321 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 1 dsm 0.00647292 dsm_est 0.0106573 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 1.25 dsm 0.0219543 dsm_est 0.0155798 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 2 t 1.5 dsm 0.00612961 dsm_est 0.0121902 nsteps 5 + rtol 0.01 rk_type 0 order 2 acc 2 t 1.75 dsm 0.0486524 dsm_est 0.0128523 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 2 t 2 dsm 0.0105588 dsm_est 0.0136133 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 2 t 2.25 dsm 0.0211198 dsm_est 0.00695706 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 2.5 dsm 0.00761315 dsm_est 0.00204617 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 2.75 dsm 0.00412193 dsm_est 0.00277716 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 3 dsm 0.002666 dsm_est 0.00368399 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 3.25 dsm 0.000713844 dsm_est 0.00275078 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 3.5 dsm 0.000748986 dsm_est 0.00140882 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 3.75 dsm 0.000331361 dsm_est 0.00110437 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 4 dsm 0.000385289 dsm_est 0.00204187 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 4.25 dsm 0.00400902 dsm_est 0.000792608 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 4.5 dsm 0.00387702 dsm_est 0.00932291 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 4.75 dsm 0.00419428 dsm_est 0.0026893 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 2 t 5 dsm 0.00163289 dsm_est 0.00411603 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 0.25 dsm 0.00114218 dsm_est 0.00207757 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 0.5 dsm 0.0097582 dsm_est 0.00233503 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 0.75 dsm 0.00421706 dsm_est 0.00591163 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 1 dsm 0.00647292 dsm_est 0.00501299 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 1.25 dsm 0.0219543 dsm_est 0.00530055 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 3 t 1.5 dsm 0.00612961 dsm_est 0.0029014 nsteps 5 + rtol 0.01 rk_type 0 order 2 acc 3 t 1.75 dsm 0.0486524 dsm_est 0.00496886 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 3 t 2 dsm 0.0105588 dsm_est 0.00632156 nsteps 6 + rtol 0.01 rk_type 0 order 2 acc 3 t 2.25 dsm 0.0211198 dsm_est 0.00333691 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 2.5 dsm 0.00761315 dsm_est 0.00110945 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 2.75 dsm 0.00412193 dsm_est 0.00131123 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 3 dsm 0.002666 dsm_est 0.00228793 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 3.25 dsm 0.000713844 dsm_est 0.00164218 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 3.5 dsm 0.000748986 dsm_est 0.000878861 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 3.75 dsm 0.000331361 dsm_est 0.000659252 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 4 dsm 0.000385289 dsm_est 0.00128448 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 4.25 dsm 0.00400902 dsm_est 0.000364072 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 4.5 dsm 0.00387702 dsm_est 0.00612907 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 4.75 dsm 0.00419428 dsm_est 0.00183739 nsteps 4 + rtol 0.01 rk_type 0 order 2 acc 3 t 5 dsm 0.00163289 dsm_est 0.00279411 nsteps 4 + rtol 0.0001 rk_type 0 order 2 acc 1 t 0.25 dsm 1.59241e-05 dsm_est 9.8521e-05 nsteps 15 + rtol 0.0001 rk_type 0 order 2 acc 1 t 0.5 dsm 0.00037233 dsm_est 9.3765e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 1 t 0.75 dsm 5.40392e-05 dsm_est 8.4716e-05 nsteps 27 + rtol 0.0001 rk_type 0 order 2 acc 1 t 1 dsm 0.000111226 dsm_est 7.24201e-05 nsteps 20 + rtol 0.0001 rk_type 0 order 2 acc 1 t 1.25 dsm 0.00029923 dsm_est 9.56458e-05 nsteps 34 + rtol 0.0001 rk_type 0 order 2 acc 1 t 1.5 dsm 0.000177312 dsm_est 8.53544e-05 nsteps 33 + rtol 0.0001 rk_type 0 order 2 acc 1 t 1.75 dsm 8.77292e-05 dsm_est 8.98437e-05 nsteps 41 + rtol 0.0001 rk_type 0 order 2 acc 1 t 2 dsm 2.21729e-05 dsm_est 8.87953e-05 nsteps 31 + rtol 0.0001 rk_type 0 order 2 acc 1 t 2.25 dsm 0.000200022 dsm_est 7.65072e-05 nsteps 21 + rtol 0.0001 rk_type 0 order 2 acc 1 t 2.5 dsm 0.000153011 dsm_est 9.21276e-05 nsteps 14 + rtol 0.0001 rk_type 0 order 2 acc 1 t 2.75 dsm 0.000158354 dsm_est 7.87131e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 1 t 3 dsm 0.000146058 dsm_est 8.77215e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 1 t 3.25 dsm 7.53306e-06 dsm_est 8.70833e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 1 t 3.5 dsm 2.83156e-05 dsm_est 9.68868e-05 nsteps 9 + rtol 0.0001 rk_type 0 order 2 acc 1 t 3.75 dsm 3.48396e-05 dsm_est 8.60715e-05 nsteps 8 + rtol 0.0001 rk_type 0 order 2 acc 1 t 4 dsm 3.589e-06 dsm_est 8.43051e-05 nsteps 11 + rtol 0.0001 rk_type 0 order 2 acc 1 t 4.25 dsm 0.000345769 dsm_est 9.19052e-05 nsteps 10 + rtol 0.0001 rk_type 0 order 2 acc 1 t 4.5 dsm 6.0266e-05 dsm_est 8.78182e-05 nsteps 20 + rtol 0.0001 rk_type 0 order 2 acc 1 t 4.75 dsm 0.000110261 dsm_est 9.66046e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 1 t 5 dsm 2.40623e-05 dsm_est 8.69678e-05 nsteps 14 + rtol 0.0001 rk_type 0 order 2 acc 2 t 0.25 dsm 1.59241e-05 dsm_est 0.000600488 nsteps 15 + rtol 0.0001 rk_type 0 order 2 acc 2 t 0.5 dsm 0.00037233 dsm_est 0.000605192 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 2 t 0.75 dsm 5.40392e-05 dsm_est 0.00106662 nsteps 27 + rtol 0.0001 rk_type 0 order 2 acc 2 t 1 dsm 0.000111226 dsm_est 0.00105504 nsteps 20 + rtol 0.0001 rk_type 0 order 2 acc 2 t 1.25 dsm 0.00029923 dsm_est 0.00165883 nsteps 34 + rtol 0.0001 rk_type 0 order 2 acc 2 t 1.5 dsm 0.000177312 dsm_est 0.00166797 nsteps 33 + rtol 0.0001 rk_type 0 order 2 acc 2 t 1.75 dsm 8.77292e-05 dsm_est 0.00191895 nsteps 41 + rtol 0.0001 rk_type 0 order 2 acc 2 t 2 dsm 2.21729e-05 dsm_est 0.00125393 nsteps 31 + rtol 0.0001 rk_type 0 order 2 acc 2 t 2.25 dsm 0.000200022 dsm_est 0.000990439 nsteps 21 + rtol 0.0001 rk_type 0 order 2 acc 2 t 2.5 dsm 0.000153011 dsm_est 0.000405714 nsteps 14 + rtol 0.0001 rk_type 0 order 2 acc 2 t 2.75 dsm 0.000158354 dsm_est 0.000575592 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 2 t 3 dsm 0.000146058 dsm_est 0.000472433 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 2 t 3.25 dsm 7.53306e-06 dsm_est 0.000450674 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 2 t 3.5 dsm 2.83156e-05 dsm_est 0.00032881 nsteps 9 + rtol 0.0001 rk_type 0 order 2 acc 2 t 3.75 dsm 3.48396e-05 dsm_est 0.000323206 nsteps 8 + rtol 0.0001 rk_type 0 order 2 acc 2 t 4 dsm 3.589e-06 dsm_est 0.000406042 nsteps 11 + rtol 0.0001 rk_type 0 order 2 acc 2 t 4.25 dsm 0.000345769 dsm_est 0.000358693 nsteps 10 + rtol 0.0001 rk_type 0 order 2 acc 2 t 4.5 dsm 6.0266e-05 dsm_est 0.000959479 nsteps 20 + rtol 0.0001 rk_type 0 order 2 acc 2 t 4.75 dsm 0.000110261 dsm_est 0.000405301 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 2 t 5 dsm 2.40623e-05 dsm_est 0.00055748 nsteps 14 + rtol 0.0001 rk_type 0 order 2 acc 3 t 0.25 dsm 1.59241e-05 dsm_est 4.85984e-05 nsteps 15 + rtol 0.0001 rk_type 0 order 2 acc 3 t 0.5 dsm 0.00037233 dsm_est 4.98754e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 3 t 0.75 dsm 5.40392e-05 dsm_est 4.08695e-05 nsteps 27 + rtol 0.0001 rk_type 0 order 2 acc 3 t 1 dsm 0.000111226 dsm_est 5.48726e-05 nsteps 20 + rtol 0.0001 rk_type 0 order 2 acc 3 t 1.25 dsm 0.00029923 dsm_est 5.07761e-05 nsteps 34 + rtol 0.0001 rk_type 0 order 2 acc 3 t 1.5 dsm 0.000177312 dsm_est 5.44893e-05 nsteps 33 + rtol 0.0001 rk_type 0 order 2 acc 3 t 1.75 dsm 8.77292e-05 dsm_est 4.75628e-05 nsteps 41 + rtol 0.0001 rk_type 0 order 2 acc 3 t 2 dsm 2.21729e-05 dsm_est 4.3758e-05 nsteps 31 + rtol 0.0001 rk_type 0 order 2 acc 3 t 2.25 dsm 0.000200022 dsm_est 5.03469e-05 nsteps 21 + rtol 0.0001 rk_type 0 order 2 acc 3 t 2.5 dsm 0.000153011 dsm_est 3.10721e-05 nsteps 14 + rtol 0.0001 rk_type 0 order 2 acc 3 t 2.75 dsm 0.000158354 dsm_est 5.04641e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 3 t 3 dsm 0.000146058 dsm_est 4.1531e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 3 t 3.25 dsm 7.53306e-06 dsm_est 4.35123e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 3 t 3.5 dsm 2.83156e-05 dsm_est 4.54284e-05 nsteps 9 + rtol 0.0001 rk_type 0 order 2 acc 3 t 3.75 dsm 3.48396e-05 dsm_est 5.09646e-05 nsteps 8 + rtol 0.0001 rk_type 0 order 2 acc 3 t 4 dsm 3.589e-06 dsm_est 4.50856e-05 nsteps 11 + rtol 0.0001 rk_type 0 order 2 acc 3 t 4.25 dsm 0.000345769 dsm_est 5.23958e-05 nsteps 10 + rtol 0.0001 rk_type 0 order 2 acc 3 t 4.5 dsm 6.0266e-05 dsm_est 5.47475e-05 nsteps 20 + rtol 0.0001 rk_type 0 order 2 acc 3 t 4.75 dsm 0.000110261 dsm_est 3.94068e-05 nsteps 13 + rtol 0.0001 rk_type 0 order 2 acc 3 t 5 dsm 2.40623e-05 dsm_est 4.87158e-05 nsteps 14 + rtol 1e-06 rk_type 0 order 2 acc 1 t 0.25 dsm 2.57072e-06 dsm_est 9.87958e-07 nsteps 136 + rtol 1e-06 rk_type 0 order 2 acc 1 t 0.5 dsm 4.1345e-06 dsm_est 9.71971e-07 nsteps 117 + rtol 1e-06 rk_type 0 order 2 acc 1 t 0.75 dsm 1.02095e-06 dsm_est 9.99403e-07 nsteps 238 + rtol 1e-06 rk_type 0 order 2 acc 1 t 1 dsm 1.37089e-06 dsm_est 9.50211e-07 nsteps 175 + rtol 1e-06 rk_type 0 order 2 acc 1 t 1.25 dsm 1.12185e-05 dsm_est 9.87204e-07 nsteps 316 + rtol 1e-06 rk_type 0 order 2 acc 1 t 1.5 dsm 6.29134e-07 dsm_est 9.78777e-07 nsteps 317 + rtol 1e-06 rk_type 0 order 2 acc 1 t 1.75 dsm 5.17586e-06 dsm_est 9.80805e-07 nsteps 391 + rtol 1e-06 rk_type 0 order 2 acc 1 t 2 dsm 1.27384e-06 dsm_est 9.90775e-07 nsteps 266 + rtol 1e-06 rk_type 0 order 2 acc 1 t 2.25 dsm 2.46294e-06 dsm_est 9.36272e-07 nsteps 186 + rtol 1e-06 rk_type 0 order 2 acc 1 t 2.5 dsm 2.51433e-06 dsm_est 9.67195e-07 nsteps 109 + rtol 1e-06 rk_type 0 order 2 acc 1 t 2.75 dsm 2.19174e-06 dsm_est 9.05805e-07 nsteps 103 + rtol 1e-06 rk_type 0 order 2 acc 1 t 3 dsm 0.00038115 dsm_est 9.84682e-07 nsteps 119 + rtol 1e-06 rk_type 0 order 2 acc 1 t 3.25 dsm 2.80754e-05 dsm_est 8.24259e-07 nsteps 95 + rtol 1e-06 rk_type 0 order 2 acc 1 t 3.5 dsm 1.7491e-05 dsm_est 9.73374e-07 nsteps 83 + rtol 1e-06 rk_type 0 order 2 acc 1 t 3.75 dsm 3.87881e-05 dsm_est 9.86661e-07 nsteps 64 + rtol 1e-06 rk_type 0 order 2 acc 1 t 4 dsm 3.1727e-06 dsm_est 9.98919e-07 nsteps 86 + rtol 1e-06 rk_type 0 order 2 acc 1 t 4.25 dsm 3.39424e-06 dsm_est 9.7028e-07 nsteps 78 + rtol 1e-06 rk_type 0 order 2 acc 1 t 4.5 dsm 9.21247e-07 dsm_est 8.15852e-07 nsteps 176 + rtol 1e-06 rk_type 0 order 2 acc 1 t 4.75 dsm 1.06512e-06 dsm_est 9.727e-07 nsteps 102 + rtol 1e-06 rk_type 0 order 2 acc 1 t 5 dsm 2.87412e-06 dsm_est 8.17617e-07 nsteps 108 + rtol 1e-06 rk_type 0 order 2 acc 2 t 0.25 dsm 2.57072e-06 dsm_est 5.97508e-05 nsteps 136 + rtol 1e-06 rk_type 0 order 2 acc 2 t 0.5 dsm 4.1345e-06 dsm_est 6.18961e-05 nsteps 117 + rtol 1e-06 rk_type 0 order 2 acc 2 t 0.75 dsm 1.02095e-06 dsm_est 0.00011639 nsteps 238 + rtol 1e-06 rk_type 0 order 2 acc 2 t 1 dsm 1.37089e-06 dsm_est 0.000107666 nsteps 175 + rtol 1e-06 rk_type 0 order 2 acc 2 t 1.25 dsm 1.12185e-05 dsm_est 0.000165957 nsteps 316 + rtol 1e-06 rk_type 0 order 2 acc 2 t 1.5 dsm 6.29134e-07 dsm_est 0.000165214 nsteps 317 + rtol 1e-06 rk_type 0 order 2 acc 2 t 1.75 dsm 5.17586e-06 dsm_est 0.000190441 nsteps 391 + rtol 1e-06 rk_type 0 order 2 acc 2 t 2 dsm 1.27384e-06 dsm_est 0.000137247 nsteps 266 + rtol 1e-06 rk_type 0 order 2 acc 2 t 2.25 dsm 2.46294e-06 dsm_est 0.000102705 nsteps 186 + rtol 1e-06 rk_type 0 order 2 acc 2 t 2.5 dsm 2.51433e-06 dsm_est 4.9879e-05 nsteps 109 + rtol 1e-06 rk_type 0 order 2 acc 2 t 2.75 dsm 2.19174e-06 dsm_est 6.07844e-05 nsteps 103 + rtol 1e-06 rk_type 0 order 2 acc 2 t 3 dsm 0.00038115 dsm_est 4.76239e-05 nsteps 119 + rtol 1e-06 rk_type 0 order 2 acc 2 t 3.25 dsm 2.80754e-05 dsm_est 5.22254e-05 nsteps 95 + rtol 1e-06 rk_type 0 order 2 acc 2 t 3.5 dsm 1.7491e-05 dsm_est 3.16316e-05 nsteps 83 + rtol 1e-06 rk_type 0 order 2 acc 2 t 3.75 dsm 3.87881e-05 dsm_est 3.4888e-05 nsteps 64 + rtol 1e-06 rk_type 0 order 2 acc 2 t 4 dsm 3.1727e-06 dsm_est 4.65462e-05 nsteps 86 + rtol 1e-06 rk_type 0 order 2 acc 2 t 4.25 dsm 3.39424e-06 dsm_est 3.92049e-05 nsteps 78 + rtol 1e-06 rk_type 0 order 2 acc 2 t 4.5 dsm 9.21247e-07 dsm_est 9.88384e-05 nsteps 176 + rtol 1e-06 rk_type 0 order 2 acc 2 t 4.75 dsm 1.06512e-06 dsm_est 4.27333e-05 nsteps 102 + rtol 1e-06 rk_type 0 order 2 acc 2 t 5 dsm 2.87412e-06 dsm_est 6.22029e-05 nsteps 108 + rtol 1e-06 rk_type 0 order 2 acc 3 t 0.25 dsm 2.57072e-06 dsm_est 4.49766e-07 nsteps 136 + rtol 1e-06 rk_type 0 order 2 acc 3 t 0.5 dsm 4.1345e-06 dsm_est 5.26944e-07 nsteps 117 + rtol 1e-06 rk_type 0 order 2 acc 3 t 0.75 dsm 1.02095e-06 dsm_est 4.83489e-07 nsteps 238 + rtol 1e-06 rk_type 0 order 2 acc 3 t 1 dsm 1.37089e-06 dsm_est 6.23053e-07 nsteps 175 + rtol 1e-06 rk_type 0 order 2 acc 3 t 1.25 dsm 1.12185e-05 dsm_est 5.07323e-07 nsteps 316 + rtol 1e-06 rk_type 0 order 2 acc 3 t 1.5 dsm 6.29134e-07 dsm_est 5.38115e-07 nsteps 317 + rtol 1e-06 rk_type 0 order 2 acc 3 t 1.75 dsm 5.17586e-06 dsm_est 4.73027e-07 nsteps 391 + rtol 1e-06 rk_type 0 order 2 acc 3 t 2 dsm 1.27384e-06 dsm_est 5.24324e-07 nsteps 266 + rtol 1e-06 rk_type 0 order 2 acc 3 t 2.25 dsm 2.46294e-06 dsm_est 5.52512e-07 nsteps 186 + rtol 1e-06 rk_type 0 order 2 acc 3 t 2.5 dsm 2.51433e-06 dsm_est 5.10304e-07 nsteps 109 + rtol 1e-06 rk_type 0 order 2 acc 3 t 2.75 dsm 2.19174e-06 dsm_est 5.93503e-07 nsteps 103 + rtol 1e-06 rk_type 0 order 2 acc 3 t 3 dsm 0.00038115 dsm_est 4.2781e-07 nsteps 119 + rtol 1e-06 rk_type 0 order 2 acc 3 t 3.25 dsm 2.80754e-05 dsm_est 5.59174e-07 nsteps 95 + rtol 1e-06 rk_type 0 order 2 acc 3 t 3.5 dsm 1.7491e-05 dsm_est 3.98113e-07 nsteps 83 + rtol 1e-06 rk_type 0 order 2 acc 3 t 3.75 dsm 3.87881e-05 dsm_est 5.60711e-07 nsteps 64 + rtol 1e-06 rk_type 0 order 2 acc 3 t 4 dsm 3.1727e-06 dsm_est 5.55167e-07 nsteps 86 + rtol 1e-06 rk_type 0 order 2 acc 3 t 4.25 dsm 3.39424e-06 dsm_est 5.20773e-07 nsteps 78 + rtol 1e-06 rk_type 0 order 2 acc 3 t 4.5 dsm 9.21247e-07 dsm_est 5.69138e-07 nsteps 176 + rtol 1e-06 rk_type 0 order 2 acc 3 t 4.75 dsm 1.06512e-06 dsm_est 4.66586e-07 nsteps 102 + rtol 1e-06 rk_type 0 order 2 acc 3 t 5 dsm 2.87412e-06 dsm_est 5.85662e-07 nsteps 108 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_brusselator_mriadapt_--rtol_0.000004_--scontrol_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_brusselator_mriadapt_--rtol_0.000004_--scontrol_0.out index 760c6d2b1d..80a6d6676e 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_brusselator_mriadapt_--rtol_0.000004_--scontrol_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_brusselator_mriadapt_--rtol_0.000004_--scontrol_0.out @@ -13,31 +13,31 @@ Adaptive multirate stiff Brusselator test problem: t u v w uerr verr werr ------------------------------------------------------------------------- 0.000000 1.200000 3.100000 3.000000 0.0e+00 0.0e+00 0.0e+00 - 0.500000 1.200613 2.996066 3.498311 1.2e-07 1.2e-07 8.6e-06 - 1.000000 1.107158 3.008131 3.498438 1.2e-07 1.2e-07 1.3e-05 - 1.500000 0.917798 3.188082 3.498698 1.0e-07 1.0e-07 1.7e-05 - 2.000000 0.691486 3.512327 3.499015 7.6e-08 7.6e-08 1.7e-05 - 2.500000 0.510160 3.896431 3.499274 5.5e-08 5.5e-08 1.2e-05 - 3.000000 0.410222 4.269502 3.499416 4.6e-08 4.6e-08 9.6e-06 - 3.500000 0.372044 4.614020 3.499469 3.0e-08 3.0e-08 9.8e-06 - 4.000000 0.367587 4.934562 3.499478 5.3e-08 5.3e-08 7.9e-06 - 4.500000 0.382205 5.233154 3.499474 3.2e-08 3.2e-08 9.1e-06 - 5.000000 0.412956 5.504352 3.499431 4.1e-08 4.1e-08 8.5e-06 - 5.500000 0.467990 5.730486 3.499356 5.5e-08 5.5e-08 1.1e-05 - 6.000000 0.585318 5.854262 3.499196 6.5e-08 6.6e-08 1.5e-05 - 6.500000 1.060808 5.503433 3.498555 5.4e-07 5.5e-07 3.8e-05 - 7.000000 4.794999 0.734608 3.493240 3.6e-06 3.6e-06 5.8e-05 - 7.500000 3.037708 1.057903 3.495704 2.0e-06 2.0e-06 4.7e-05 - 8.000000 1.833974 1.562357 3.497406 7.7e-07 7.8e-07 2.7e-05 - 8.500000 1.008519 2.191334 3.498570 2.5e-07 2.5e-07 1.8e-05 - 9.000000 0.534097 2.794912 3.499237 6.6e-08 6.7e-08 1.5e-05 - 9.500000 0.352784 3.263320 3.499486 4.3e-08 4.3e-08 2.0e-05 - 10.000000 0.305955 3.648439 3.499562 2.5e-08 2.5e-08 9.8e-06 + 0.500000 1.200682 2.995982 3.498135 4.4e-07 4.4e-07 1.8e-04 + 1.000000 1.107272 3.007954 3.498417 3.0e-07 3.1e-07 3.4e-05 + 1.500000 0.917917 3.187840 3.498678 1.8e-07 1.8e-07 3.7e-05 + 2.000000 0.691572 3.512064 3.498994 1.3e-07 1.3e-07 3.8e-05 + 2.500000 0.510203 3.896180 3.499252 1.4e-07 1.4e-07 3.4e-05 + 3.000000 0.410237 4.269265 3.499397 3.3e-07 3.3e-07 2.9e-05 + 3.500000 0.372050 4.613787 3.499468 6.0e-07 6.0e-07 1.1e-05 + 4.000000 0.367590 4.934331 3.499376 1.3e-07 1.3e-07 1.1e-04 + 4.500000 0.382204 5.232927 3.499420 2.8e-07 2.8e-07 4.5e-05 + 5.000000 0.412955 5.504125 3.499392 3.4e-07 3.4e-07 3.0e-05 + 5.500000 0.467966 5.730287 3.499374 3.9e-07 4.0e-07 2.9e-05 + 6.000000 0.585219 5.854164 3.499226 7.9e-08 8.0e-08 4.5e-05 + 6.500000 1.060077 5.504106 3.498570 5.4e-07 5.5e-07 5.2e-05 + 7.000000 4.796054 0.734672 3.493238 2.3e-06 2.3e-06 5.8e-05 + 7.500000 3.038559 1.057657 3.495701 1.6e-06 1.6e-06 4.9e-05 + 8.000000 1.834565 1.562015 3.497376 8.7e-07 8.8e-07 5.7e-05 + 8.500000 1.008920 2.190934 3.498527 5.5e-07 5.6e-07 6.0e-05 + 9.000000 0.534292 2.794570 3.499214 3.8e-07 3.8e-07 3.8e-05 + 9.500000 0.352845 3.263052 3.499460 1.1e-07 1.2e-07 4.6e-05 + 10.000000 0.305974 3.648197 3.499561 4.8e-07 4.9e-07 1.1e-05 ------------------------------------------------------------------------- Final Solver Statistics: Slow steps = 1000 (attempts = 1000, fails = 0) - Fast steps = 11777 (attempts = 16708, fails = 4931) - u error = 1.83324e-06, v error = 1.63119e-06, w error = 5.54867e-05, total error = 3.20666e-05 - Relative accuracy = 83.5081 - Total RHS evals: Fse = 5000, Fsi = 0, Ff = 79611 + Fast steps = 11155 (attempts = 14946, fails = 3791) + u error = 2.0172e-06, v error = 1.83162e-06, w error = 0.000103183, total error = 5.95935e-05 + Relative accuracy = 82.3755 + Total RHS evals: Fse = 5000, Fsi = 0, Ff = 60787 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out index e85f1cd69c..402f0ef7a1 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_-1.out @@ -883,7 +883,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -4.19176e-12 + Error = -5.01865e-12 Steps = 1 Fe evals = 6 Fi evals = 0 @@ -966,7 +966,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -3.58946e-12 + Error = -4.19764e-12 Steps = 1 Fe evals = 10 Fi evals = 0 @@ -1129,7 +1129,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.970446 y_n = 0.970446 - Error = -6.94172e-11 + Error = -6.94171e-11 Steps = 1 Fe evals = 6 Fi evals = 11 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out index 4bd33358e9..e3908e5074 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_0.out @@ -883,7 +883,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -4.19176e-12 + Error = -5.01865e-12 Steps = 1 Fe evals = 6 Fi evals = 0 @@ -966,7 +966,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -3.58946e-12 + Error = -4.19764e-12 Steps = 1 Fe evals = 10 Fi evals = 0 @@ -1129,7 +1129,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.970446 y_n = 0.970446 - Error = -6.94172e-11 + Error = -6.94171e-11 Steps = 1 Fe evals = 6 Fi evals = 11 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out index 44bf25b969..82b824863c 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri_1.out @@ -883,7 +883,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -4.19176e-12 + Error = -5.01865e-12 Steps = 1 Fe evals = 6 Fi evals = 0 @@ -966,7 +966,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.980199 y_n = 0.980199 - Error = -3.58946e-12 + Error = -4.19764e-12 Steps = 1 Fe evals = 10 Fi evals = 0 @@ -1129,7 +1129,7 @@ MRIStep Statistics: Time = 0.01 y(t) = 0.970446 y_n = 0.970446 - Error = -6.94172e-11 + Error = -6.94171e-11 Steps = 1 Fe evals = 6 Fi evals = 11 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_kpr_mriadapt_--hs_0.002_--rtol_0.000004_--scontrol_0.out b/test/unit_tests/arkode/CXX_serial/ark_test_kpr_mriadapt_--hs_0.002_--rtol_0.000004_--scontrol_0.out index 8e57f80640..8f03f1dd5d 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_kpr_mriadapt_--hs_0.002_--rtol_0.000004_--scontrol_0.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_kpr_mriadapt_--hs_0.002_--rtol_0.000004_--scontrol_0.out @@ -15,31 +15,31 @@ Adaptive multirate nonlinear Kvaerno-Prothero-Robinson test problem: t u v uerr verr ------------------------------------------------------ 0.000000 1.732051 1.732051 0.00e+00 0.00e+00 - 0.250000 1.723053 1.584050 5.10e-11 1.74e-10 - 0.500000 1.696344 1.512598 4.30e-11 2.73e-10 - 0.750000 1.652782 1.036015 4.02e-11 3.15e-09 - 1.000000 1.593833 1.458873 3.25e-11 2.89e-09 - 1.250000 1.521618 1.458201 3.35e-11 1.27e-08 - 1.500000 1.439006 1.011474 4.36e-11 6.25e-08 - 1.750000 1.349724 1.730452 3.65e-12 3.67e-09 - 2.000000 1.258512 1.214374 1.24e-11 5.83e-09 - 2.250000 1.171250 1.024071 2.70e-11 1.63e-10 - 2.500000 1.094923 1.471085 4.59e-11 3.37e-13 - 2.750000 1.037158 1.313348 6.43e-11 2.13e-11 - 3.000000 1.004991 1.274175 7.65e-11 2.92e-11 - 3.250000 1.002931 1.043458 7.96e-11 6.41e-12 - 3.500000 1.031282 1.053648 6.81e-11 1.65e-13 - 3.750000 1.086021 1.006374 5.10e-11 3.61e-12 - 4.000000 1.160326 1.571824 3.06e-11 1.90e-11 - 4.250000 1.246560 1.705136 7.61e-12 4.47e-11 - 4.500000 1.337611 1.431830 3.19e-12 5.54e-11 - 4.750000 1.427446 1.162908 1.55e-11 1.82e-10 - 5.000000 1.511179 1.070831 2.51e-11 3.35e-10 + 0.250000 1.723053 1.584050 4.64e-11 1.19e-10 + 0.500000 1.696344 1.512598 4.27e-11 2.12e-10 + 0.750000 1.652782 1.036015 4.01e-11 2.35e-09 + 1.000000 1.593833 1.458873 3.28e-11 2.19e-09 + 1.250000 1.521618 1.458201 3.13e-11 9.96e-09 + 1.500000 1.439006 1.011473 3.79e-11 4.81e-08 + 1.750000 1.349724 1.730452 3.78e-12 2.65e-09 + 2.000000 1.258512 1.214374 1.15e-11 4.26e-09 + 2.250000 1.171250 1.024071 2.67e-11 1.18e-10 + 2.500000 1.094923 1.471085 4.61e-11 4.04e-13 + 2.750000 1.037158 1.313347 6.45e-11 1.55e-11 + 3.000000 1.004991 1.274175 7.68e-11 2.66e-11 + 3.250000 1.002931 1.043458 7.83e-11 5.54e-12 + 3.500000 1.031282 1.053648 6.81e-11 1.80e-13 + 3.750000 1.086021 1.006374 5.08e-11 2.89e-12 + 4.000000 1.160326 1.571824 3.01e-11 1.33e-11 + 4.250000 1.246560 1.705136 9.02e-12 2.40e-11 + 4.500000 1.337611 1.431830 2.94e-12 4.25e-11 + 4.750000 1.427446 1.162908 1.54e-11 1.39e-10 + 5.000000 1.511179 1.070831 2.52e-11 2.46e-10 ------------------------------------------------------ Final Solver Statistics: Slow steps = 2500 (attempts = 2500, fails = 0) Fast steps = 12502 (attempts = 12502, fails = 0) - u error = 4.31846e-11, v error = 9.52053e-09, total error = 6.7321e-09 - Relative accuracy = 0.0160086 - Total RHS evals: Fse = 12500, Fsi = 0, Ff = 65012 + u error = 4.278e-11, v error = 7.12338e-09, total error = 5.03708e-09 + Relative accuracy = 0.0123146 + Total RHS evals: Fse = 12500, Fsi = 0, Ff = 52511 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_brusselator.out b/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_brusselator.out index 80f4ea9e89..a6b35a38a2 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_brusselator.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_brusselator.out @@ -6,105 +6,105 @@ Slow error estimation test (stiff Brusselator ODE problem): problem parameters: a = 1, b = 3.5, ep = 0.0004 MRI method: ARKODE_MRI_GARK_ERK33a (explicit) H 0.025 method ARKODE_MRI_GARK_ERK33a t 0.025 dsm 3.18615e+13 dsm_est 2.87651e+09 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 0.525 dsm 837.406 dsm_est 1222.98 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 1.025 dsm 2348.79 dsm_est 726.699 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 1.525 dsm 7973.51 dsm_est 2607.8 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 2.025 dsm 9623.78 dsm_est 2984.3 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 2.525 dsm 8578.19 dsm_est 2152.09 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 3.025 dsm 1758.42 dsm_est 2231.61 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 3.525 dsm 6231.49 dsm_est 2031.06 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 4.025 dsm 581.953 dsm_est 611.637 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 4.525 dsm 18745.1 dsm_est 4370.47 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 5.025 dsm 1260.35 dsm_est 475.824 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 5.525 dsm 883.239 dsm_est 2069.94 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 6.025 dsm 1948.31 dsm_est 14304.8 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 6.525 dsm 61433.5 dsm_est 330405 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 7.025 dsm 742189 dsm_est 1.51629e+06 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 7.525 dsm 9668.21 dsm_est 19961.4 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 8.025 dsm 893.005 dsm_est 6498.9 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 8.525 dsm 844.884 dsm_est 2277.18 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 9.025 dsm 810.509 dsm_est 10912.2 - H 0.025 method ARKODE_MRI_GARK_ERK33a t 9.525 dsm 1454.42 dsm_est 10680.6 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 0.525 dsm 15886 dsm_est 3892.97 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 1.025 dsm 1861.62 dsm_est 645.472 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 1.525 dsm 10555 dsm_est 3066.04 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 2.025 dsm 20139.3 dsm_est 5090.75 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 2.525 dsm 330.191 dsm_est 802.697 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 3.025 dsm 1712.16 dsm_est 2229.67 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 3.525 dsm 980.298 dsm_est 1439.73 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 4.025 dsm 2360.23 dsm_est 810.98 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 4.525 dsm 10236.6 dsm_est 2389.24 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 5.025 dsm 19570.3 dsm_est 4576.67 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 5.525 dsm 5947.35 dsm_est 2483.74 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 6.025 dsm 1013.7 dsm_est 14299.2 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 6.525 dsm 61445.9 dsm_est 330405 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 7.025 dsm 742207 dsm_est 1.51629e+06 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 7.525 dsm 6358.03 dsm_est 19885.4 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 8.025 dsm 603.153 dsm_est 6496.9 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 8.525 dsm 918.532 dsm_est 2278.74 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 9.025 dsm 3851.35 dsm_est 10946.5 + H 0.025 method ARKODE_MRI_GARK_ERK33a t 9.525 dsm 16985.2 dsm_est 11381.4 H 0.00625 method ARKODE_MRI_GARK_ERK33a t 0.00625 dsm 4.33933e+11 dsm_est 1.53179e+09 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 0.50625 dsm 12.1853 dsm_est 19.2231 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 1.00625 dsm 32.4451 dsm_est 11.3701 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 1.50625 dsm 109.586 dsm_est 40.659 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 2.00625 dsm 131.993 dsm_est 46.7335 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 2.50625 dsm 117.719 dsm_est 33.46 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 3.00625 dsm 24.1579 dsm_est 34.5477 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 3.50625 dsm 85.0006 dsm_est 31.747 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 4.00625 dsm 7.95919 dsm_est 9.62849 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 4.50625 dsm 255.567 dsm_est 68.3015 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 5.00625 dsm 17.322 dsm_est 7.33608 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 5.50625 dsm 12.3537 dsm_est 31.9016 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 6.00625 dsm 25.1474 dsm_est 221.476 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 6.50625 dsm 230.645 dsm_est 5222.75 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 7.00625 dsm 3236.88 dsm_est 24290.4 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 7.50625 dsm 116.715 dsm_est 305.487 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 8.00625 dsm 11.908 dsm_est 101.68 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 8.50625 dsm 13.9795 dsm_est 36.3543 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 9.00625 dsm 10.4298 dsm_est 164.536 - H 0.00625 method ARKODE_MRI_GARK_ERK33a t 9.50625 dsm 18.0339 dsm_est 165.001 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 0.50625 dsm 216.593 dsm_est 60.8783 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 1.00625 dsm 26.0228 dsm_est 10.0901 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 1.50625 dsm 144.242 dsm_est 47.8575 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 2.00625 dsm 274.803 dsm_est 79.667 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 2.50625 dsm 4.81016 dsm_est 11.9501 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 3.00625 dsm 23.7323 dsm_est 34.5171 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 3.50625 dsm 13.349 dsm_est 22.515 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 4.00625 dsm 32.4831 dsm_est 12.7268 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 4.50625 dsm 139.503 dsm_est 37.3465 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 5.00625 dsm 266.828 dsm_est 71.5233 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 5.50625 dsm 81.5404 dsm_est 38.473 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 6.00625 dsm 8.66114 dsm_est 221.381 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 6.50625 dsm 229.949 dsm_est 5222.74 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 7.00625 dsm 3237.42 dsm_est 24290.5 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 7.50625 dsm 58.904 dsm_est 304.236 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 8.00625 dsm 5.8227 dsm_est 101.639 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 8.50625 dsm 15.0625 dsm_est 36.3831 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 9.00625 dsm 53.1258 dsm_est 165.109 + H 0.00625 method ARKODE_MRI_GARK_ERK33a t 9.50625 dsm 231.344 dsm_est 176.072 H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 0.0015625 dsm 4.30937e+09 dsm_est 1.04109e+09 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 0.501563 dsm 0.124019 dsm_est 0.300808 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 1.00156 dsm 0.4016 dsm_est 0.177725 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 1.50156 dsm 1.08417 dsm_est 0.634969 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 2.00156 dsm 1.63593 dsm_est 0.730609 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 2.50156 dsm 1.21684 dsm_est 0.522198 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 3.00156 dsm 0.297567 dsm_est 0.53854 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 3.50156 dsm 0.843901 dsm_est 0.496086 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 4.00156 dsm 0.0984505 dsm_est 0.150722 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 4.50156 dsm 3.172 dsm_est 1.06726 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 5.00156 dsm 0.177227 dsm_est 0.114246 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 5.50156 dsm 0.153004 dsm_est 0.496739 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 6.00156 dsm 0.2503 dsm_est 3.45242 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 6.50156 dsm 0.94962 dsm_est 81.8018 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 7.00156 dsm 12.9921 dsm_est 381.512 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 7.50156 dsm 1.43794 dsm_est 4.74552 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 8.00156 dsm 0.120488 dsm_est 1.58917 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 8.50156 dsm 0.179682 dsm_est 0.571046 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 9.00156 dsm 0.118533 dsm_est 2.54788 - H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 9.50156 dsm 0.220342 dsm_est 2.57065 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 0.501563 dsm 2.14322 dsm_est 0.951422 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 1.00156 dsm 0.35066 dsm_est 0.157683 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 1.50156 dsm 1.44266 dsm_est 0.747593 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 2.00156 dsm 2.72425 dsm_est 1.24527 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 2.50156 dsm 0.047094 dsm_est 0.184443 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 3.00156 dsm 0.318323 dsm_est 0.53806 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 3.50156 dsm 0.138168 dsm_est 0.351863 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 4.00156 dsm 0.438837 dsm_est 0.19907 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 4.50156 dsm 1.38267 dsm_est 0.583596 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 5.00156 dsm 2.64438 dsm_est 1.1176 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 5.50156 dsm 1.10965 dsm_est 0.599835 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 6.00156 dsm 0.0825617 dsm_est 3.45091 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 6.50156 dsm 0.923042 dsm_est 81.8017 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 7.00156 dsm 13.0033 dsm_est 381.513 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 7.50156 dsm 0.766296 dsm_est 4.72572 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 8.00156 dsm 0.0579379 dsm_est 1.58849 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 8.50156 dsm 0.211744 dsm_est 0.571514 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 9.00156 dsm 0.53241 dsm_est 2.55698 + H 0.0015625 method ARKODE_MRI_GARK_ERK33a t 9.50156 dsm 3.15565 dsm_est 2.74412 H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 0.000390625 dsm 2.73843e+07 dsm_est 2.97866e+07 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 0.500391 dsm 0.00068624 dsm_est 0.00470174 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 1.00039 dsm 0.00193295 dsm_est 0.00277739 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 1.50039 dsm 0.00652841 dsm_est 0.00992044 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 2.00039 dsm 0.007873 dsm_est 0.0114169 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 2.50039 dsm 0.00699861 dsm_est 0.00815712 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 3.00039 dsm 0.00143196 dsm_est 0.00840977 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 3.50039 dsm 0.00507095 dsm_est 0.00775185 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 4.00039 dsm 0.000473415 dsm_est 0.00235627 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 4.50039 dsm 0.0152604 dsm_est 0.0166753 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 5.00039 dsm 0.00103306 dsm_est 0.00178339 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 5.50039 dsm 0.000737914 dsm_est 0.00775519 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 6.00039 dsm 0.00150366 dsm_est 0.0539128 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 6.50039 dsm 0.00386116 dsm_est 1.27888 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 7.00039 dsm 0.0511055 dsm_est 5.9684 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 7.50039 dsm 0.00692078 dsm_est 0.074038 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 8.00039 dsm 0.000733274 dsm_est 0.0248325 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 8.50039 dsm 0.000872554 dsm_est 0.00893449 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 9.00039 dsm 0.000620849 dsm_est 0.0397209 - H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 9.50039 dsm 0.00105929 dsm_est 0.0401369 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 0.500391 dsm 0.0129589 dsm_est 0.0148666 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 1.00039 dsm 0.00153686 dsm_est 0.00246423 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 1.50039 dsm 0.0086724 dsm_est 0.0116802 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 2.00039 dsm 0.0165154 dsm_est 0.0194596 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 2.50039 dsm 0.000285673 dsm_est 0.00287323 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 3.00039 dsm 0.00139908 dsm_est 0.00840212 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 3.50039 dsm 0.000799985 dsm_est 0.0054982 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 4.00039 dsm 0.00193165 dsm_est 0.00311088 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 4.50039 dsm 0.00837686 dsm_est 0.00911868 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 5.00039 dsm 0.0160182 dsm_est 0.0174635 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 5.50039 dsm 0.00488411 dsm_est 0.00936769 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 6.00039 dsm 0.000493308 dsm_est 0.0538886 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 6.50039 dsm 0.00365386 dsm_est 1.27888 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 7.00039 dsm 0.0512044 dsm_est 5.96842 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 7.50039 dsm 0.00337337 dsm_est 0.0737264 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 8.00039 dsm 0.000353869 dsm_est 0.0248214 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 8.50039 dsm 0.000939052 dsm_est 0.00894325 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 9.00039 dsm 0.00319803 dsm_est 0.0398628 + H 0.000390625 method ARKODE_MRI_GARK_ERK33a t 9.50039 dsm 0.0138875 dsm_est 0.0428488 H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 9.76563e-05 dsm 130431 dsm_est 498019 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 0.500098 dsm 3.22403e-06 dsm_est 7.35991e-05 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 1.0001 dsm 8.76951e-06 dsm_est 4.34727e-05 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 1.5001 dsm 2.85184e-05 dsm_est 0.000154848 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 2.0001 dsm 3.58103e-05 dsm_est 0.000178405 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 2.5001 dsm 3.14166e-05 dsm_est 0.000127273 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 3.0001 dsm 6.6836e-06 dsm_est 0.000131134 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 3.5001 dsm 2.19334e-05 dsm_est 0.000121472 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 4.0001 dsm 1.46115e-06 dsm_est 3.65453e-05 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 4.5001 dsm 6.79441e-05 dsm_est 0.000260953 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 5.0001 dsm 4.63814e-06 dsm_est 2.73436e-05 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 5.5001 dsm 3.99263e-06 dsm_est 0.000121193 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 6.0001 dsm 7.38533e-06 dsm_est 0.000842724 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 6.5001 dsm 1.91204e-05 dsm_est 0.0199852 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 7.0001 dsm 0.00020015 dsm_est 0.0932838 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 7.5001 dsm 3.17543e-05 dsm_est 0.00115569 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 8.0001 dsm 4.92456e-06 dsm_est 0.000387364 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 8.5001 dsm 3.86449e-06 dsm_est 0.000139579 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 9.0001 dsm 3.70097e-06 dsm_est 0.000619442 - H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 9.5001 dsm 3.7359e-06 dsm_est 0.000626912 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 0.500098 dsm 5.77411e-05 dsm_est 0.000232185 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 1.0001 dsm 6.57714e-06 dsm_est 3.87369e-05 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 1.5001 dsm 3.87374e-05 dsm_est 0.000182556 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 2.0001 dsm 7.30729e-05 dsm_est 0.0003041 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 2.5001 dsm 1.46124e-06 dsm_est 4.50117e-05 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 3.0001 dsm 6.01484e-06 dsm_est 0.000131752 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 3.5001 dsm 3.65289e-06 dsm_est 8.589e-05 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 4.0001 dsm 8.80792e-06 dsm_est 4.96255e-05 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 4.5001 dsm 3.72725e-05 dsm_est 0.000142701 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 5.0001 dsm 7.08734e-05 dsm_est 0.000272646 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 5.5001 dsm 2.26587e-05 dsm_est 0.000146528 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 6.0001 dsm 1.81516e-06 dsm_est 0.000842374 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 6.5001 dsm 1.94534e-05 dsm_est 0.0199852 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 7.0001 dsm 0.000199521 dsm_est 0.0932846 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 7.5001 dsm 1.57485e-05 dsm_est 0.00115106 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 8.0001 dsm 3.02423e-06 dsm_est 0.000388205 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 8.5001 dsm 5.05571e-06 dsm_est 0.000139923 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 9.0001 dsm 1.48012e-05 dsm_est 0.0006229 + H 9.76563e-05 method ARKODE_MRI_GARK_ERK33a t 9.5001 dsm 6.13795e-05 dsm_est 0.000669366 ARKODE_MRI_GARK_ERK33a summary: Stepsize 0.025 maxdsm 3.18615e+13 maxdsmest 2.87651e+09 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_kpr.out b/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_kpr.out index 87e6b5cc1e..41a368b2c7 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_kpr.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_slowerror_kpr.out @@ -42,7 +42,7 @@ Slow error estimation test (Nonlinear Kvaerno-Prothero-Robinson problem): H 0.003125 method ARKODE_MRI_GARK_ERK33a t 3.75312 dsm 0.637603 dsm_est 20.4096 H 0.003125 method ARKODE_MRI_GARK_ERK33a t 4.00312 dsm 0.50676 dsm_est 35.5067 H 0.003125 method ARKODE_MRI_GARK_ERK33a t 4.25312 dsm 0.0997811 dsm_est 197.159 - H 0.003125 method ARKODE_MRI_GARK_ERK33a t 4.50312 dsm 0.602658 dsm_est 244.1 + H 0.003125 method ARKODE_MRI_GARK_ERK33a t 4.50312 dsm 0.60266 dsm_est 244.1 H 0.003125 method ARKODE_MRI_GARK_ERK33a t 4.75312 dsm 0.3657 dsm_est 59.8484 H 0.00078125 method ARKODE_MRI_GARK_ERK33a t 0.00078125 dsm 0.000906789 dsm_est 0.1702 H 0.00078125 method ARKODE_MRI_GARK_ERK33a t 0.250781 dsm 0.00229725 dsm_est 1.09748 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out b/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out index c9f06b5c31..f1e13809e0 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out @@ -1,4 +1,4 @@ -Forward solution of order 1 with 2 partitions completed with an error of 1.70008e-12 +Forward solution of order 1 with 2 partitions completed with an error of 1.70003e-12 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -28,7 +28,7 @@ Current step size = 0.008 Partition 0 evolves = 250 Partition 1 evolves = 125 -Forward solution of order 3 with 2 partitions completed with an error of 1.0843e-12 +Forward solution of order 3 with 2 partitions completed with an error of 1.08441e-12 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -43,7 +43,7 @@ Current step size = 0.008 Partition 0 evolves = 375 Partition 1 evolves = 375 -Forward solution of order 4 with 2 partitions completed with an error of -2.71305e-12 +Forward solution of order 4 with 2 partitions completed with an error of -2.16344e-12 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -106,7 +106,7 @@ Partition 0 evolves = 375 Partition 1 evolves = 625 Partition 2 evolves = 375 -Forward solution of order 4 with 3 partitions completed with an error of -1.02113e-12 +Forward solution of order 4 with 3 partitions completed with an error of -1.02107e-12 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -156,7 +156,7 @@ Partition 1 evolves = 250 Partition 2 evolves = 250 Partition 3 evolves = 125 -Forward solution of order 3 with 4 partitions completed with an error of 3.46445e-13 +Forward solution of order 3 with 4 partitions completed with an error of 3.46334e-13 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -173,7 +173,7 @@ Partition 1 evolves = 625 Partition 2 evolves = 625 Partition 3 evolves = 375 -Forward solution of order 4 with 4 partitions completed with an error of -7.25808e-13 +Forward solution of order 4 with 4 partitions completed with an error of -7.25753e-13 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -226,7 +226,7 @@ Partition 2 evolves = 250 Partition 3 evolves = 250 Partition 4 evolves = 125 -Forward solution of order 3 with 5 partitions completed with an error of 2.95819e-13 +Forward solution of order 3 with 5 partitions completed with an error of 2.95708e-13 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -244,7 +244,7 @@ Partition 2 evolves = 625 Partition 3 evolves = 625 Partition 4 evolves = 375 -Forward solution of order 4 with 5 partitions completed with an error of -6.1845e-13 +Forward solution of order 4 with 5 partitions completed with an error of -6.18394e-13 Current time = 1.000000000000001 Steps = 125 Step attempts = 125 @@ -367,7 +367,7 @@ Current step size = 0.1 Partition 0 evolves = 286 Partition 1 evolves = 275 -Reinitialized solution completed with an error of -2.44249e-15 +Reinitialized solution completed with an error of -2.88658e-15 Current time = 2.000000000000001 Steps = 125 Step attempts = 125 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out index dc77c3f64c..02f6fe674c 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out @@ -35,10 +35,10 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.270379821731715 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2703798217317151 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801208512e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801243654e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -55,146 +55,146 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.052384307479459e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.052384304778094e-09 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004974141983045409 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004974141985513912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002590057017132213 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002590057018366464 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878045794722 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878047303152 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2132943179163734 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.213294318213662 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008314322537341579 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008314322540956619 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745956564198 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745957984698 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682984423547 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682987640205 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003211824765012889 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003211824766555703 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628485946814 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628488284655 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005044937403 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005049355566 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005276093687976734 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005276093690543978 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028113429431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028119813453 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991732185001 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991742706002 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087293412658 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087297336198 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005077128008654917 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005077128011123421 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286068246216 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286074154952 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994911904798 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994921768932 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537235589097 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537239449411 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005777685801326963 - 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005077128008654917, h = 0.002894351482645774 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005077128008654917 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005777685812826238 + 5.077128011123421e-03 1.224742240522223e+00 1.730563198063739e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005077128011123421, h = 0.002894351482448365 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005077128011123421 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006524303749977804 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006524303752347603 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422796849768 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422798229331 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841554791242 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841555230246 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005500995969719722 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005500995972159316 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191489779 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191908009 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307475559162 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307477081039 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006886097685308526 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006886097687653649 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655472878314 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655474581444 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988497214 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988548783 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008087253550606523 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008087253552869721 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341499829686 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341502545673 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855435739141 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855436438348 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950527502381 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950526212932 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007971479491300691 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007971479493571786 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724335587325 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724338209779 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528495900837 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528496587065 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559093605087 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559094275988 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006675414612441149 - 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000667541460998551 + 7.971479493571786e-03 1.224738385936593e+00 1.728385952122810e+00 9.707123993507594e-12 3.469446951953614e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007971479491300691 +Current time = 0.007971479493571786 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -203,8 +203,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002894351482645774 -Current step size = 0.01488513257284924 +Last step size = 0.002894351482448365 +Current step size = 0.01488513257624006 Explicit RHS fn evals = 0 Implicit RHS fn evals = 49 NLS iters = 31 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out index 1ea9940c35..ccac761af5 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out @@ -71,7 +71,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729285399011 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824623e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824396e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -100,126 +100,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060506166026043e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060506163324638e-09 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004966754223126817 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004966754225572813 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586363137172917 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586363138395915 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366823253987, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366824746531, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905127158407, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905129269183, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351659917327 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351662720349 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.539312788374185e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.882531734419718e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.539312788374185e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754497113704 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.882531734419718e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754498604105 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448156610062e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448294422972e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303503413429693 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303503417011772 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497452804125, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497454209836, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273631423932, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273633411908, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553135597982 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553138311062 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.071535650853336e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.011411444024011e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.071535650853336e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624678638776 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.011411444024011e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624680041969 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395866022775986e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395867358197889e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207207415063769 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207207416592517 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636799879348, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636802192543, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540032655901, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540035927252, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964986383052 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964990715293 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.948588646235637e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.789668240619014e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.948588646235637e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280762384555 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.789668240619014e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280764694615 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896834065384e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896653991349e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268410417661398 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268410420205235 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935820216669, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935826533287, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280147562397, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280156495445, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.80823181193877 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.8082318131156221 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.635179301029465e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.120002960573796e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.635179301029465e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692023218828 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.120002960573796e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692029529639 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00028701536186056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002870153813341939, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069740248736325 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069740251182322 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615178930309, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615184776663, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761541680366, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761549948359, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726379422214 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726390321624 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.08971449261438e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.304767851710737e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.08971449261438e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.265941067359 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.304767851710737e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.2659416513743 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.000249564687271857, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002495646797049599, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -227,126 +227,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743360545342547 - 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069740248736325, h = 0.002894941524745254 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069740248736325 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743360556725636 + 5.069740251182322e-03 1.224742248556789e+00 1.730567522070876e+00 3.889517596888936e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069740251182322, h = 0.002894941524545463 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069740251182322 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517211011108952 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517211013455053 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291832667672, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291834028905, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.079892577741, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.0798927702483, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2844296690428963 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.284429669121418 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.689625129912962e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.856087007983854e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.689625129912962e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681714724712 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.856087007983854e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681716085887 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724634024090804e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724633885979543e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005493694619466006 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005493694621882744 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918432218, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918845246, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372636959103, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372637543213, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702546356424 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702547676896 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.743428383750915e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.628034972992036e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.743428383750915e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491707937726 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.628034972992036e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491708350703 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265621792903265e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265628637698205e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879078701702109 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879078704023236 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555520155276, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555521835236, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203724428682, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203726804505, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.366534529643799 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3665345296848642 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.506305455047092e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.707140230613715e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.506305455047092e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569019654059 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.707140230613715e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569021334169 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.41936993456799e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.419373834637885e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080479434471389 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080479436709604 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.820797410297, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.8207976779007, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207822961327, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207823339776, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810696378324 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810697841036 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.043442040705694e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.719488409552539e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.043442040705694e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110606696143 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.719488409552539e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110609372421 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313402503713, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313404565604, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964681773481579 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964681775727785 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870949936611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870952520789, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.359027870932, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.35902823639, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969989650043 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969991067312 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.97124359201826e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.259213533922895e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.97124359201826e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869312485084 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.259213533922895e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869315069474 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267402460637, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267403498561, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -354,10 +354,10 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680659089283182 - 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680659087130566 + 7.964681775727785e-03 1.224738397861493e+00 1.728392193102339e+00 8.783296312486755e-10 1.803088789387175e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964681773481579 +Current time = 0.007964681775727785 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -366,8 +366,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002894941524745254 -Current step size = 0.01487588631018596 +Last step size = 0.002894941524545463 +Current step size = 0.01487588631341295 Explicit RHS fn evals = 0 Implicit RHS fn evals = 45 NLS iters = 27 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out index 7adbb8afdb..b4fe1a4987 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out @@ -49,7 +49,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842759940812e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842755618676e-08 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -65,174 +65,174 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060546984496858e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.060546981795453e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.00496671726474331 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.0001029860256095084, h = 0.004966717267189195 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0001029860256095084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586344657981163 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.002586344659204106 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401886078219 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401887567888 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824834014635 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824840356065 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303449289130156 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0008303449292712071 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500371247808 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500372650739 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799203649459 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799205527649 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207184316074077 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003207184317602755 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613569759502 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613572068255 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324507830747 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324520025331 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268371980942552 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268371983486272 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775595050387 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775601354925 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769922509453 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769927988289 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069703290352819 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069703292798704 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.0057975967644 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.005798180281 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2511122224022418 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.251112222890202 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743182020382792 - 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069703290352819, h = 0.002894945180045727 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069703290352819 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.005743182031671791 + 5.069703292798704e-03 1.224742248195360e+00 1.730567544197454e+00 1.072431032866916e-11 2.655440312082646e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.005069703292798704, h = 0.002894945179855035 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.005069703292798704 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517175880375682 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.006517175882726221 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.0430042964744 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.043004433908 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599515968683 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599516763003 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.005493658198806818 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208731951771 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208732367982 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02768906071174051 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0276890607331008 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879044027881399 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.006879044030208101 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868001832096 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868003529424 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1676270895079329 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.167627089609758 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080446277600375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080446279847942 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463592806854 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463595517242 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066040662974 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066042483682 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964648470398546 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964648472653739 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442245792432 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442248409132 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383851641306 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383853383472 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680697280368452 - 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680697278575115 + 7.964648472653739e-03 1.224738397026471e+00 1.728392224429115e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964648470398546 +Current time = 0.007964648472653739 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -241,8 +241,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.0001029860256095084 -Last step size = 0.002894945180045727 -Current step size = 0.01487583719865171 +Last step size = 0.002894945179855035 +Current step size = 0.01487583720175373 Explicit RHS fn evals = 0 Implicit RHS fn evals = 44 NLS iters = 26 From 3b75d4be86c4cbe1f75ff78ad4b564a1523b8fcb Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 17:48:57 -0800 Subject: [PATCH 46/67] Fix bug in floatCompare when numbers get rounded differently despite being very close, e.g., answer=.4999 and value = .5001 --- test/testRunner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testRunner b/test/testRunner index 4021209582..c3fb4a198c 100755 --- a/test/testRunner +++ b/test/testRunner @@ -354,7 +354,7 @@ def floatCompare(answer, value, precision): if precision == 0: if answer == value: return True - elif round(answer, precision) == round(value, precision): + elif round(answer - value, precision) == 0: return True print("Error: Floating point difference found:\n Value = " + str(value) + ", Answer = " + str(answer) + ", allowance = " + str(precision) + " decimals") return False From a3c96272e20b6080456dbd46fd75f2d65da83380 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Fri, 10 Jan 2025 18:47:29 -0800 Subject: [PATCH 47/67] Update double precision out files --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index 407f9a97a6..fd0e04faaa 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit 407f9a97a675fd8057166aaf1a4fce44326a57bf +Subproject commit fd0e04faaa36e562109ff25917473c5f1fb6bd78 From 9247376cda645ef046a3f7534076da564c17fbcc Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Sun, 12 Jan 2025 11:57:47 -0800 Subject: [PATCH 48/67] Update ark_heat1D_omp.out --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index fd0e04faaa..9dc04c28a8 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit fd0e04faaa36e562109ff25917473c5f1fb6bd78 +Subproject commit 9dc04c28a83ead2da2c68611dd5684e4a6c46fa5 From 2ebbd6eb4da61ade6d181ecc316bfd79d13ee126 Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Sun, 12 Jan 2025 21:06:09 -0800 Subject: [PATCH 49/67] update fortran output files --- .../F2003_parallel/ark_diag_kry_bbd_f2003.out | 97 ++++++++++--------- .../F2003_parallel/ark_diag_non_f2003.out | 26 ++--- .../F2003_parallel/ark_heat2D_f2003.out | 18 ++-- .../ark_bruss1D_FEM_klu_f2003.out | 28 +++--- .../F2003_serial/ark_roberts_dnsL_f2003.out | 52 +++++----- 5 files changed, 112 insertions(+), 109 deletions(-) diff --git a/examples/arkode/F2003_parallel/ark_diag_kry_bbd_f2003.out b/examples/arkode/F2003_parallel/ark_diag_kry_bbd_f2003.out index 0e09570888..a515a37bc3 100644 --- a/examples/arkode/F2003_parallel/ark_diag_kry_bbd_f2003.out +++ b/examples/arkode/F2003_parallel/ark_diag_kry_bbd_f2003.out @@ -1,4 +1,4 @@ - + Diagonal test problem: neq = 40 nlocal = 10 @@ -9,71 +9,74 @@ ydot_i = -alpha*i * y_i (i = 1,...,neq) Method is DIRK/NEWTON/SPGMR Precond is band-block-diagonal, using ARKBBDPRE - + Preconditioning on left: t steps steps att. fe fi ------------------------------------------------- - 0.100000 173 173 0 1846 - 0.200000 221 221 0 2362 - 0.300000 248 248 0 2650 - 0.400000 266 266 0 2848 - 0.500000 281 281 0 3007 - 0.600000 291 291 0 3116 - 0.700000 300 300 0 3215 - 0.800000 306 306 0 3275 - 0.900000 312 312 0 3335 - 1.000000 319 319 0 3410 + 0.100000 62 62 0 690 + 0.200000 81 81 0 900 + 0.300000 92 92 0 1020 + 0.400000 99 99 0 1100 + 0.500000 104 104 0 1160 + 0.600000 109 109 0 1210 + 0.700000 112 112 0 1249 + 0.800000 115 115 0 1279 + 0.900000 118 118 0 1309 + 1.000000 120 120 0 1329 ------------------------------------------------- -Max. absolute error is 7.52E-11 - +Max. absolute error is 2.50E-09 + Final Solver Statistics: - Internal solver steps = 319 (attempted = 319) + Internal solver steps = 120 (attempted = 120) Total explicit RHS evals = 0 - Total implicit RHS evals = 3410 - Total preconditioner setups = 6 - Total preconditioner solves = 3380 - Total nonlinear iterations = 1812 - Total linear iterations = 1785 - Average Krylov subspace dimension = 0.9851 + Total implicit RHS evals = 1329 + Total preconditioner setups = 3 + Total preconditioner solves = 1455 + Total nonlinear iterations = 726 + Total linear iterations = 855 + Average Krylov subspace dimension = 1.1777 Total Convergence Failures - Nonlinear = 0 - Linear = 0 Total number of error test failures = 0 - Main solver real/int workspace sizes = 862 279 + Main solver real/int workspace sizes = 918 290 Linear solver real/int workspace sizes = 535 126 BBD preconditioner real/int workspace sizes = 160 72 - Total number of g evals = 12 - - - + Total number of g evals = 6 + + + Preconditioning on right: t steps steps att. fe fi ------------------------------------------------- - 0.100000 173 173 0 1846 - 0.200000 221 221 0 2362 - 0.300000 248 248 0 2650 - 0.400000 266 266 0 2848 - 0.500000 281 281 0 3007 - 0.600000 291 291 0 3116 - 0.700000 300 300 0 3215 - 0.800000 306 306 0 3275 - 0.900000 312 312 0 3335 - 1.000000 319 319 0 3410 + 0.100000 62 62 0 690 + 0.200000 81 81 0 900 + 0.300000 92 92 0 1020 + 0.400000 99 99 0 1100 + 0.500000 104 104 0 1160 + 0.600000 109 109 0 1210 + 0.700000 112 112 0 1249 + 0.800000 115 115 0 1279 + 0.900000 118 118 0 1309 + 1.000000 120 120 0 1329 ------------------------------------------------- -Max. absolute error is 7.52E-11 - +Max. absolute error is 2.50E-09 + Final Solver Statistics: - Internal solver steps = 319 (attempted = 319) + Internal solver steps = 120 (attempted = 120) Total explicit RHS evals = 0 - Total implicit RHS evals = 3410 - Total preconditioner setups = 6 - Total preconditioner solves = 3380 - Total nonlinear iterations = 1812 - Total linear iterations = 1785 - Average Krylov subspace dimension = 0.9851 + Total implicit RHS evals = 1329 + Total preconditioner setups = 3 + Total preconditioner solves = 1460 + Total nonlinear iterations = 726 + Total linear iterations = 860 + Average Krylov subspace dimension = 1.1846 Total Convergence Failures - Nonlinear = 0 - Linear = 0 Total number of error test failures = 0 - Main solver real/int workspace sizes = 862 284 + Main solver real/int workspace sizes = 918 296 Linear solver real/int workspace sizes = 535 126 BBD preconditioner real/int workspace sizes = 160 72 - Total number of g evals = 12 + Total number of g evals = 6 + + + diff --git a/examples/arkode/F2003_parallel/ark_diag_non_f2003.out b/examples/arkode/F2003_parallel/ark_diag_non_f2003.out index addb75abbd..709636a345 100644 --- a/examples/arkode/F2003_parallel/ark_diag_non_f2003.out +++ b/examples/arkode/F2003_parallel/ark_diag_non_f2003.out @@ -10,20 +10,20 @@ t steps steps att. fe ----------------------------------------- - 0.100000 12 13 67 - 0.200000 21 22 112 - 0.300000 29 30 152 - 0.400000 38 39 197 - 0.500000 46 47 237 - 0.600000 54 55 277 - 0.700000 63 64 322 - 0.800000 71 72 362 - 0.900000 80 81 407 - 1.000000 88 89 447 + 0.100000 10 11 47 + 0.200000 17 18 75 + 0.300000 24 25 103 + 0.400000 31 32 131 + 0.500000 38 39 159 + 0.600000 45 46 187 + 0.700000 52 53 215 + 0.800000 59 60 243 + 0.900000 66 67 271 + 1.000000 73 74 299 ----------------------------------------- -Max. absolute error is 3.47E-09 +Max. absolute error is 7.67E-09 Final Solver Statistics: - Internal solver steps = 88 (attempted = 89) - Total RHS evals = 447 + Internal solver steps = 73 (attempted = 74) + Total RHS evals = 299 Total number of error test failures = 1 diff --git a/examples/arkode/F2003_parallel/ark_heat2D_f2003.out b/examples/arkode/F2003_parallel/ark_heat2D_f2003.out index f4b687e137..fc37372d71 100644 --- a/examples/arkode/F2003_parallel/ark_heat2D_f2003.out +++ b/examples/arkode/F2003_parallel/ark_heat2D_f2003.out @@ -28,19 +28,19 @@ 0.195000 0.014280 0.210000 0.014287 0.225000 0.014291 - 0.240000 0.014293 + 0.240000 0.014294 0.255000 0.014295 - 0.270000 0.014295 + 0.270000 0.014296 0.285000 0.014296 0.300000 0.014296 ---------------------- Final Solver Statistics: - Internal solver steps = 55 (attempted = 57) - Total RHS evals: Fe = 0, Fi = 573 - Total linear iterations = 4982 + Internal solver steps = 32 (attempted = 35) + Total RHS evals: Fe = 0, Fi = 353 + Total linear iterations = 2757 Total number of Preconditioner setups = 21 - Total number of Preconditioner solves = 4982 - Total number of linear solver convergence failures = 237 - Total number of Newton iterations = 285 - Total number of error test failures = 2 + Total number of Preconditioner solves = 2757 + Total number of linear solver convergence failures = 125 + Total number of Newton iterations = 175 + Total number of error test failures = 3 diff --git a/examples/arkode/F2003_serial/ark_bruss1D_FEM_klu_f2003.out b/examples/arkode/F2003_serial/ark_bruss1D_FEM_klu_f2003.out index 5d33259b20..d05f09dba4 100644 --- a/examples/arkode/F2003_serial/ark_bruss1D_FEM_klu_f2003.out +++ b/examples/arkode/F2003_serial/ark_bruss1D_FEM_klu_f2003.out @@ -44,12 +44,12 @@ ARKStep time step module parameters: t ||u||_rms ||v||_rms ||w||_rms ---------------------------------------------------- 0.00000E+00 6.32978E-01 3.36571E+00 2.03247E+00 - 1.00000E+00 6.97284E-01 3.23962E+00 1.99999E+00 - 2.00000E+00 7.89499E-01 3.05139E+00 1.99999E+00 + 1.00000E+00 6.97285E-01 3.23962E+00 1.99999E+00 + 2.00000E+00 7.89501E-01 3.05139E+00 1.99999E+00 3.00000E+00 7.83680E-01 2.93001E+00 1.99999E+00 - 4.00000E+00 6.48123E-01 3.00833E+00 1.99999E+00 - 5.00000E+00 5.52224E-01 3.17028E+00 1.99999E+00 - 6.00000E+00 5.22112E-01 3.30889E+00 1.99999E+00 + 4.00000E+00 6.48122E-01 3.00833E+00 1.99999E+00 + 5.00000E+00 5.52223E-01 3.17028E+00 1.99999E+00 + 6.00000E+00 5.22111E-01 3.30889E+00 1.99999E+00 7.00000E+00 5.20869E-01 3.40614E+00 1.99999E+00 8.00000E+00 5.30276E-01 3.46669E+00 1.99999E+00 9.00000E+00 5.45196E-01 3.49456E+00 1.99999E+00 @@ -57,17 +57,17 @@ ARKStep time step module parameters: ---------------------------------------------------- General Solver Stats: - Total internal steps taken = 103 - Total internal steps attempts = 103 + Total internal steps taken = 61 + Total internal steps attempts = 62 Total rhs exp function calls = 0 - Total rhs imp function calls = 1733 - Total jac function calls = 11 + Total rhs imp function calls = 1124 + Total jac function calls = 19 Total mass function calls = 1 - Num lin solver setup calls = 49 + Num lin solver setup calls = 51 Num error test failures = 0 - Last internal step size = 1.79674E-02 - Next internal step size = 1.79674E-02 + Last internal step size = 2.80780E-01 + Next internal step size = 2.80780E-01 Current internal time = 1.00000E+01 - Num nonlinear solver iters = 1215 - Num nonlinear solver fails = 10 + Num nonlinear solver iters = 813 + Num nonlinear solver fails = 18 diff --git a/examples/arkode/F2003_serial/ark_roberts_dnsL_f2003.out b/examples/arkode/F2003_serial/ark_roberts_dnsL_f2003.out index 6a9f8895cf..57a5957d9c 100644 --- a/examples/arkode/F2003_serial/ark_roberts_dnsL_f2003.out +++ b/examples/arkode/F2003_serial/ark_roberts_dnsL_f2003.out @@ -10,40 +10,40 @@ Initial conditions y0 = ( 1.00 0.00 0.00 ) ---------------------------------------------------------------------- t y1 y2 y3 | nst h ---------------------------------------------------------------------- - 2.6402E-01 9.8997E-01 3.4706E-05 1.0000E-02 | 31 4.4841E-02 + 2.6402E-01 9.8997E-01 3.4706E-05 1.0000E-02 | 20 2.3443E-01 rootsfound[] = 0 1 - 4.0000E-01 9.8517E-01 3.3864E-05 1.4794E-02 | 34 4.4841E-02 - 4.0000E+00 9.0552E-01 2.2405E-05 9.4459E-02 | 87 1.0144E-01 - 4.0000E+01 7.1583E-01 9.1856E-06 2.8416E-01 | 217 7.7919E-01 - 4.0000E+02 4.5052E-01 3.2229E-06 5.4948E-01 | 356 6.0414E+00 - 4.0000E+03 1.8320E-01 8.9423E-07 8.1680E-01 | 445 1.1101E+02 - 4.0000E+04 3.8983E-02 1.6218E-07 9.6102E-01 | 526 1.5172E+03 - 4.0000E+05 4.9383E-03 1.9850E-08 9.9506E-01 | 636 1.9756E+04 - 4.0000E+06 5.1681E-04 2.0697E-09 9.9948E-01 | 684 4.5207E+05 - 2.0796E+07 1.0000E-04 3.9890E-10 9.9990E-01 | 698 1.9815E+06 + 4.0000E-01 9.8517E-01 3.3864E-05 1.4794E-02 | 20 2.3443E-01 + 4.0000E+00 9.0551E-01 2.2405E-05 9.4463E-02 | 25 1.4457E+00 + 4.0000E+01 7.1583E-01 9.1846E-06 2.8416E-01 | 34 9.1914E+00 + 4.0000E+02 4.5052E-01 3.2231E-06 5.4948E-01 | 43 9.9674E+01 + 4.0000E+03 1.8320E-01 8.9423E-07 8.1680E-01 | 53 1.3774E+03 + 4.0000E+04 3.8984E-02 1.6215E-07 9.6102E-01 | 62 8.8706E+03 + 4.0000E+05 4.9383E-03 1.9855E-08 9.9506E-01 | 72 8.0906E+04 + 4.0000E+06 5.1682E-04 2.0689E-09 9.9948E-01 | 83 7.1510E+05 + 2.0795E+07 1.0000E-04 4.0042E-10 9.9990E-01 | 91 4.3280E+06 rootsfound[] = -1 0 - 4.0000E+07 5.2031E-05 2.0772E-10 9.9995E-01 | 706 4.6796E+06 - 4.0000E+08 5.2076E-06 2.0797E-11 9.9999E-01 | 723 9.4158E+07 - 4.0000E+09 5.2075E-07 3.2084E-12 1.0000E+00 | 745 1.0086E+09 - 4.0000E+10 5.2091E-08 2.6736E-13 1.0000E+00 | 763 6.5712E+09 + 4.0000E+07 5.2028E-05 2.0744E-10 9.9995E-01 | 94 1.1822E+07 + 4.0000E+08 5.2078E-06 2.0823E-11 9.9999E-01 | 104 1.0499E+08 + 4.0000E+09 5.2051E-07 1.9661E-12 1.0000E+00 | 117 1.3558E+09 + 4.0000E+10 5.2084E-08 2.3106E-13 1.0000E+00 | 138 6.1696E+09 ------------------------------------------------------ Final y1' y2' y3' ------------------------------------------------------ - -1.3017E-18 -3.7935E-22 1.3021E-18 + -1.3010E-18 -1.1975E-23 1.3010E-18 General Solver Stats: - Total internal steps taken = 763 - Total internal steps attempts = 828 + Total internal steps taken = 138 + Total internal steps attempts = 154 Total rhs exp function calls = 0 - Total rhs imp function calls = 25799 - Total Jacobian function calls = 59 - Num lin solver setup calls = 250 - Num error test failures = 56 + Total rhs imp function calls = 4910 + Total Jacobian function calls = 61 + Num lin solver setup calls = 137 + Num error test failures = 0 First internal step size = 1.00000E-08 - Last internal step size = 6.57116E+09 - Next internal step size = 6.57116E+09 - Current internal time = 4.01503E+10 - Num nonlinear solver iters = 21678 - Num nonlinear solver fails = 52 + Last internal step size = 6.16957E+09 + Next internal step size = 6.16957E+09 + Current internal time = 4.14323E+10 + Num nonlinear solver iters = 4198 + Num nonlinear solver fails = 60 From 7c765a3e2305ae2a51f817f649117845366bc39f Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 28 Jan 2025 14:32:27 -0800 Subject: [PATCH 50/67] Update logging out files --- external/sundials-addon-example | 2 +- .../logging/test_logging_arkode_arkstep_0.out | 34 +++++------ .../test_logging_arkode_arkstep_1_0.out | 38 ++++++------ .../test_logging_arkode_arkstep_1_1_0.out | 60 +++++++++---------- .../test_logging_arkode_arkstep_1_1_1.out | 60 +++++++++---------- .../test_logging_arkode_arkstep_2_0.out | 34 +++++------ .../test_logging_arkode_arkstep_2_1_0.out | 56 ++++++++--------- .../test_logging_arkode_arkstep_2_1_1.out | 56 ++++++++--------- .../logging/test_logging_arkode_erkstep.out | 24 ++++---- .../test_logging_arkode_forcingstep.out | 26 ++++---- .../test_logging_arkode_lsrkstep_0.out | 34 +++++------ .../test_logging_arkode_lsrkstep_1.out | 34 +++++------ .../test_logging_arkode_lsrkstep_2.out | 26 ++++---- .../test_logging_arkode_lsrkstep_3.out | 26 ++++---- .../test_logging_arkode_lsrkstep_4.out | 26 ++++---- .../test_logging_arkode_lsrkstep_5.out | 26 ++++---- .../logging/test_logging_arkode_mristep_0.out | 36 +++++------ .../test_logging_arkode_mristep_1_0.out | 36 +++++------ .../test_logging_arkode_mristep_1_1_0.out | 58 +++++++++--------- .../test_logging_arkode_mristep_1_1_1.out | 58 +++++++++--------- .../test_logging_arkode_mristep_2_0.out | 36 +++++------ .../test_logging_arkode_mristep_2_1_0.out | 58 +++++++++--------- .../test_logging_arkode_mristep_2_1_1.out | 58 +++++++++--------- .../logging/test_logging_arkode_mristep_3.out | 36 +++++------ .../test_logging_arkode_mristep_4_0.out | 36 +++++------ .../test_logging_arkode_mristep_4_1_0.out | 58 +++++++++--------- .../test_logging_arkode_mristep_4_1_1.out | 58 +++++++++--------- .../test_logging_arkode_mristep_5_0.out | 36 +++++------ .../test_logging_arkode_mristep_5_1_0.out | 58 +++++++++--------- .../test_logging_arkode_mristep_5_1_1.out | 58 +++++++++--------- .../logging/test_logging_arkode_mristep_6.out | 36 +++++------ .../test_logging_arkode_splittingstep.out | 26 ++++---- .../test_logging_arkode_sprkstep_0.out | 26 ++++---- .../test_logging_arkode_sprkstep_1.out | 26 ++++---- .../logging/test_logging_cvode_0.out | 32 +++++----- .../logging/test_logging_cvode_1_0.out | 54 ++++++++--------- .../logging/test_logging_cvode_1_1.out | 54 ++++++++--------- .../logging/test_logging_cvodes_0.out | 32 +++++----- .../logging/test_logging_cvodes_1_0.out | 54 ++++++++--------- .../logging/test_logging_cvodes_1_1.out | 54 ++++++++--------- .../unit_tests/logging/test_logging_ida_0.out | 54 ++++++++--------- .../unit_tests/logging/test_logging_ida_1.out | 54 ++++++++--------- .../logging/test_logging_idas_0.out | 54 ++++++++--------- .../logging/test_logging_idas_1.out | 54 ++++++++--------- 44 files changed, 926 insertions(+), 926 deletions(-) diff --git a/external/sundials-addon-example b/external/sundials-addon-example index aea706572b..ff9a45d82c 160000 --- a/external/sundials-addon-example +++ b/external/sundials-addon-example @@ -1 +1 @@ -Subproject commit aea706572b8791a505f9ca27c994badec679cc85 +Subproject commit ff9a45d82c12f24c9363185e4149a9ca97906ed1 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_0.out index d2d19dd174..7cd5ba6428 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_0.out @@ -7,21 +7,21 @@ Using ERK method 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00406950151209344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00155158565717385 -Current step size = 0.00589144841041126 -Explicit RHS fn evals = 17 -Implicit RHS fn evals = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.00738442641498455 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00269125084525615 +Current step size = 0.0133828537954865 +Explicit RHS fn evals = 15 +Implicit RHS fn evals = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out index 6f57a3e9a9..68f0761a51 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_0.out @@ -5,24 +5,24 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 - 5.077128011123421e-03 1.224742240522223e+00 1.730563198063739e+00 5.210498699170785e-12 3.727240738271576e-12 - 7.971479493571786e-03 1.224738385936593e+00 1.728385952122810e+00 9.707123993507594e-12 3.469446951953614e-12 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00598377247359893 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223612722771332 -Current step size = 0.010082634983602 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 49 -NLS iters = 31 -NLS fails = 0 -NLS iters per step = 10.33333333333333 -LS setups = 0 +Current time = 0.00797147949130069 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289435148264577 +Current step size = 0.0148851325728492 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 49 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out index c45fb42431..f49253ebcd 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_0.out @@ -6,35 +6,35 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 - 5.069740251182322e-03 1.224742248556789e+00 1.730567522070876e+00 3.889517596888936e-10 2.440982971307903e-10 - 7.964681775727785e-03 1.224738397861493e+00 1.728392193102339e+00 8.783296312486755e-10 1.803088789387175e-10 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964681775727785 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223330996837281 -Current step size = 0.0101222204683134 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 9 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 25 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 25 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 25 -LS iters per NLS iter = 0.925925925925926 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.00796468177348158 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494152474525 +Current step size = 0.014875886310186 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 45 +NLS iters = 27 +NLS fails = 0 +NLS iters per step = 9 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 25 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 25 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 25 +LS iters per NLS iter = 0.925925925925926 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out index 3220865ac5..12898c9e10 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_1_1_1.out @@ -6,35 +6,35 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 - 5.069703292798704e-03 1.224742248195360e+00 1.730567544197454e+00 1.072431032866916e-11 2.655440312082646e-10 - 7.964648472653739e-03 1.224738397026471e+00 1.728392224429115e+00 1.083555467573660e-11 5.830909088899716e-10 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601518316011344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223329514087935 -Current step size = 0.0101224304950251 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 44 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.00796464847039855 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494518004573 +Current step size = 0.0148758371986517 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 44 +NLS iters = 26 +NLS fails = 0 +NLS iters per step = 8.66666666666667 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0384615384615385 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out index 82f4463e87..5b27e106e5 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_2_0.out @@ -8,21 +8,21 @@ Using fixed-point nonlinear solver 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0101697255559211 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365349306629522 -Current step size = 0.0209740196543238 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 -NLS fails = 0 -NLS iters per step = 11.6666666666667 -LS setups = 0 +Current time = 0.0134499325085793 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486720007233434 +Current step size = 0.0310731647840138 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 +NLS fails = 0 +NLS iters per step = 13.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out index 240d89a260..3788eee66b 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_0.out @@ -9,32 +9,32 @@ Using GMRES iterative linear solver 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047756642418 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066308067988 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 10.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 33 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 33 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.07407407407407 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.0134499243935581 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719195731315 +Current step size = 0.0310731368172952 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 +NLS fails = 0 +NLS iters per step = 10.6666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 33 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 33 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out index 410f2b4f05..6b430cc886 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_2_1_1.out @@ -9,32 +9,32 @@ Using dense direct linear solver 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047829000161 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066796116835 -Current step size = 0.02102619488941 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.0134499246632141 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719222696918 +Current step size = 0.0310731882597642 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.032258064516129 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep.out b/test/unit_tests/logging/test_logging_arkode_erkstep.out index 7744aa11d2..7104827eb2 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep.out @@ -6,16 +6,16 @@ Start ERKStep Logging test 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00243603936356891 -Steps = 3 -Step attempts = 4 -Stability limited steps = 0 -Accuracy limited steps = 4 -Error test fails = 1 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.0011665266689797 -Current step size = 0.00364812132551383 -RHS fn evals = 21 +Current time = 0.00441117312521985 +Steps = 3 +Step attempts = 4 +Stability limited steps = 0 +Accuracy limited steps = 4 +Error test fails = 1 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00215409354980517 +Current step size = 0.0077238572300834 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_forcingstep.out b/test/unit_tests/logging/test_logging_arkode_forcingstep.out index 7576324a21..4fb531125d 100644 --- a/test/unit_tests/logging/test_logging_arkode_forcingstep.out +++ b/test/unit_tests/logging/test_logging_arkode_forcingstep.out @@ -6,17 +6,17 @@ Start ForcingStep Logging test 2.000000000000000e-03 9.980020006646669e-01 1.997998004599211e-06 3.000000000000000e-03 9.970030029929939e-01 2.993993026279007e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End ForcingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_0.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_0.out index 04d904127f..79306fa153 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_0.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_0.out @@ -6,21 +6,21 @@ Start LSRKStep Logging test 4.660370515962586e-09 4.660370515962578e-09 7.444625512977249e-24 9.774571052271429e-08 9.774571052271400e-08 2.646977960169689e-23 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_1.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_1.out index 121b5cd360..1cc7a6ae09 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_1.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_1.out @@ -6,21 +6,21 @@ Start LSRKStep Logging test 4.660370515962586e-09 4.660370515962586e-09 0.000000000000000e+00 9.774571052271429e-08 9.774571052271410e-08 1.323488980084844e-22 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_2.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_2.out index 40c0e59ec5..8d6218e82e 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_2.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_2.out @@ -6,17 +6,17 @@ Start LSRKStep Logging test 6.104125976562500e-08 6.104125976562493e-08 0.000000000000000e+00 1.281744384765625e-06 1.281744384764889e-06 3.388131789017201e-20 --------------------------------------------------------------------- -Current time = 1.28174438476563e-06 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 1.220703125e-06 -Current step size = 2.44140625e-05 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 1.28174438476563e-06 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 1.220703125e-06 +Current step size = 2.44140625e-05 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_3.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_3.out index 7ccd2c78c2..ca1411dd7f 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_3.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_3.out @@ -6,17 +6,17 @@ Start LSRKStep Logging test 4.660370515962586e-09 4.660370515962586e-09 8.271806125530277e-25 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 29 -Number of stages used = 9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 29 +Number of stages used = 9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_4.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_4.out index f9953a6ab7..b740b3a9f2 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_4.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_4.out @@ -6,17 +6,17 @@ Start LSRKStep Logging test 4.660370515962586e-09 4.660370515962585e-09 8.271806125530277e-25 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 14 -Number of stages used = 4 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 14 +Number of stages used = 4 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_5.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_5.out index 1305a3238f..f92704c8c7 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_5.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_5.out @@ -6,17 +6,17 @@ Start LSRKStep Logging test 5.086597062056021e-10 5.086597062056018e-10 3.101927297073854e-25 8.765030586579745e-09 8.765030586579742e-09 3.308722450212111e-24 --------------------------------------------------------------------- -Current time = 8.76503058657974e-09 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 8.25637088037414e-09 -Current step size = 1.65127417607483e-07 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 8.76503058657974e-09 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 8.25637088037414e-09 +Current step size = 1.65127417607483e-07 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_0.out index 8005747a85..5812ab818d 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_0.out @@ -7,22 +7,22 @@ Using Ex-MRI-GARK method 2.000000000000000e-03 1.224744463143411e+00 1.731819882857614e+00 4.485301019485632e-14 5.107025913275720e-15 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out index 1c5f9a65f4..f6939fb094 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_1_0.out @@ -8,22 +8,22 @@ Using fixed-point nonlinear solver 2.000000000000000e-03 1.224744463066094e+00 1.731819882857627e+00 7.727218864772567e-11 7.993605777301127e-15 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out index 5a3946ce15..4aa5650928 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_0.out @@ -9,33 +9,33 @@ Using GMRES iterative linear solver 2.000000000000000e-03 1.224744463146273e+00 1.731819882857643e+00 2.906785923073585e-12 2.375877272697835e-14 3.000000000000000e-03 1.224743952843819e+00 1.731531270273608e+00 1.053868103895184e-11 3.752553823233029e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out index f149b595c2..f82b1150b1 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_1_1_1.out @@ -9,33 +9,33 @@ Using dense direct linear solver 2.000000000000000e-03 1.224744463143431e+00 1.731819882932031e+00 6.394884621840902e-14 7.441136595787157e-11 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out index 7101ea207b..602e4aadc2 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_2_0.out @@ -8,22 +8,22 @@ Using fixed-point nonlinear solver 2.000000000000000e-03 1.224744463059331e+00 1.731819882857589e+00 8.403544526913720e-11 3.042011087472929e-14 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out index fd24ba0ae1..480ad8f5be 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_0.out @@ -9,33 +9,33 @@ Using GMRES iterative linear solver 2.000000000000000e-03 1.224744463146502e+00 1.731819882857606e+00 3.135491866146367e-12 1.287858708565182e-14 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out index 3b74b8a1b9..5182760e6b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_2_1_1.out @@ -9,33 +9,33 @@ Using dense direct linear solver 2.000000000000000e-03 1.224744463143402e+00 1.731819882942073e+00 3.552713678800501e-14 8.445355526021103e-11 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_3.out index 12d3d8306b..45d2e86d7a 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_3.out @@ -7,22 +7,22 @@ Using Ex-MRI-SR method 2.000000000000000e-03 1.224744463112885e+00 1.731819882840751e+00 3.048206131950337e-11 1.686806250233985e-11 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out index b0b6d013ed..46717d112f 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_4_0.out @@ -8,22 +8,22 @@ Using fixed-point nonlinear solver 2.000000000000000e-03 1.224744463044450e+00 1.731819882840758e+00 9.891665264660787e-11 1.686140116419210e-11 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out index 1c01fe07f1..b95ac6678f 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_0.out @@ -9,33 +9,33 @@ Using GMRES iterative linear solver 2.000000000000000e-03 1.224744463099111e+00 1.731819882840764e+00 4.425571020760799e-11 1.685473982604435e-11 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out index 2f2a2e906a..4944c8f552 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_4_1_1.out @@ -9,33 +9,33 @@ Using dense direct linear solver 2.000000000000000e-03 1.224744463096872e+00 1.731819882889336e+00 4.649436391446216e-11 3.171707341209640e-11 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out index bdbd20e460..3480f6cc1d 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_5_0.out @@ -8,22 +8,22 @@ Using fixed-point nonlinear solver 2.000000000000000e-03 1.224744463220070e+00 1.731819882840785e+00 7.670308832530282e-11 1.683453376699617e-11 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out index 8c159b07a5..61e3c4b5e5 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_0.out @@ -9,33 +9,33 @@ Using GMRES iterative linear solver 2.000000000000000e-03 1.224744463274739e+00 1.731819882840791e+00 1.313724684592898e-10 1.682787242884842e-11 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out index 63df60c50f..782ae9d4a7 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_5_1_1.out @@ -9,33 +9,33 @@ Using dense direct linear solver 2.000000000000000e-03 1.224744463272502e+00 1.731819882893495e+00 1.291351470200652e-10 3.587596886234223e-11 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_6.out index b86b15958f..f98b3ce777 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_6.out @@ -7,22 +7,22 @@ Using MERK method 2.000000000000000e-03 1.224744463041408e+00 1.731819882857751e+00 1.019582196448710e-10 1.321165399303936e-13 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 6 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 6 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_splittingstep.out b/test/unit_tests/logging/test_logging_arkode_splittingstep.out index 153fdabebd..053607ea03 100644 --- a/test/unit_tests/logging/test_logging_arkode_splittingstep.out +++ b/test/unit_tests/logging/test_logging_arkode_splittingstep.out @@ -6,17 +6,17 @@ Start SplittingStep Logging test 2.000000000000000e-03 9.979980073386400e-01 1.995328022363907e-06 3.000000000000000e-03 9.969970190148773e-01 2.989985090406932e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End SplittingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_0.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_0.out index 208a8459f9..01836cee37 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_0.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_0.out @@ -6,17 +6,17 @@ Start SPRKStep Logging test 2.000000000000000e-03 3.999875001822874e-01 3.999958334163726e-03 -1.249963542950928e-02 1.999937502083256e+00 3.000000000000000e-03 3.999718759228028e-01 5.999859381323369e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_1.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_1.out index c5202f4fa5..75faa3f94d 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_1.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_1.out @@ -6,17 +6,17 @@ Start SPRKStep Logging test 2.000000000000000e-03 3.999875001822875e-01 3.999958334163726e-03 -1.249963542950928e-02 1.999937502083256e+00 3.000000000000000e-03 3.999718759228029e-01 5.999859381323370e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_0.out b/test/unit_tests/logging/test_logging_cvode_0.out index d236908fd5..0ff85c369d 100644 --- a/test/unit_tests/logging/test_logging_cvode_0.out +++ b/test/unit_tests/logging/test_logging_cvode_0.out @@ -7,20 +7,20 @@ Using fixed-point nonlinear solver 2.059720512190168e-04 1.224744864802767e+00 1.732047133691379e+00 2.258890852147033e-09 1.224500395968775e-06 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_1_0.out b/test/unit_tests/logging/test_logging_cvode_1_0.out index 745567cc30..8d78ae51ef 100644 --- a/test/unit_tests/logging/test_logging_cvode_1_0.out +++ b/test/unit_tests/logging/test_logging_cvode_1_0.out @@ -8,31 +8,31 @@ Using GMRES iterative linear solver 2.059720512190168e-04 1.224744864928434e+00 1.732047133690926e+00 2.133223819811292e-09 1.224500849161814e-06 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_1_1.out b/test/unit_tests/logging/test_logging_cvode_1_1.out index 27ae4fb014..24efb822af 100644 --- a/test/unit_tests/logging/test_logging_cvode_1_1.out +++ b/test/unit_tests/logging/test_logging_cvode_1_1.out @@ -8,31 +8,31 @@ Using dense direct linear solver 2.059720512190168e-04 1.224744864802806e+00 1.732047133692213e+00 2.258852216385776e-09 1.224499561969239e-06 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_0.out b/test/unit_tests/logging/test_logging_cvodes_0.out index a7be1aa123..84dce141d1 100644 --- a/test/unit_tests/logging/test_logging_cvodes_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_0.out @@ -7,20 +7,20 @@ Using fixed-point nonlinear solver 2.059720512190168e-04 1.224744864802767e+00 1.732047133691379e+00 2.258890852147033e-09 1.224500395968775e-06 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_1_0.out b/test/unit_tests/logging/test_logging_cvodes_1_0.out index 0d56cb6c58..ce3eaed919 100644 --- a/test/unit_tests/logging/test_logging_cvodes_1_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_1_0.out @@ -8,31 +8,31 @@ Using GMRES iterative linear solver 2.059720512190168e-04 1.224744864928434e+00 1.732047133690926e+00 2.133223819811292e-09 1.224500849161814e-06 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_1_1.out b/test/unit_tests/logging/test_logging_cvodes_1_1.out index 09eb1d48b3..18d8d026f4 100644 --- a/test/unit_tests/logging/test_logging_cvodes_1_1.out +++ b/test/unit_tests/logging/test_logging_cvodes_1_1.out @@ -8,31 +8,31 @@ Using dense direct linear solver 2.059720512190168e-04 1.224744864802806e+00 1.732047133692213e+00 2.258852216385776e-09 1.224499561969239e-06 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_ida_0.out b/test/unit_tests/logging/test_logging_ida_0.out index 49302fe5bb..8bc9530d5f 100644 --- a/test/unit_tests/logging/test_logging_ida_0.out +++ b/test/unit_tests/logging/test_logging_ida_0.out @@ -8,31 +8,31 @@ Using GMRES iterative linear solver 1.875000000000000e-04 1.224744865733311e+00 1.732047650340516e+00 2.070158044986670e-09 1.127482510687727e-06 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_ida_1.out b/test/unit_tests/logging/test_logging_ida_1.out index 03a854a3a2..8414cf5e25 100644 --- a/test/unit_tests/logging/test_logging_ida_1.out +++ b/test/unit_tests/logging/test_logging_ida_1.out @@ -8,31 +8,31 @@ Using dense direct linear solver 1.875000000000000e-04 1.224744865733123e+00 1.732047650340890e+00 2.070346782900856e-09 1.127482136320523e-06 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_idas_0.out b/test/unit_tests/logging/test_logging_idas_0.out index f1496e6ab4..6a8cfed2fa 100644 --- a/test/unit_tests/logging/test_logging_idas_0.out +++ b/test/unit_tests/logging/test_logging_idas_0.out @@ -8,31 +8,31 @@ Using GMRES iterative linear solver 1.875000000000000e-04 1.224744865733311e+00 1.732047650340516e+00 2.070158044986670e-09 1.127482510687727e-06 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test diff --git a/test/unit_tests/logging/test_logging_idas_1.out b/test/unit_tests/logging/test_logging_idas_1.out index 4bd2709026..874fc42582 100644 --- a/test/unit_tests/logging/test_logging_idas_1.out +++ b/test/unit_tests/logging/test_logging_idas_1.out @@ -8,31 +8,31 @@ Using dense direct linear solver 1.875000000000000e-04 1.224744865733123e+00 1.732047650340890e+00 2.070346782900856e-09 1.127482136320523e-06 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test From 1b27b2cb1ea1830db045fe42ec926edacd91ccce Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 28 Jan 2025 14:34:47 -0800 Subject: [PATCH 51/67] Update single precision out files --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index c08d4e3c64..85e272c2bf 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit c08d4e3c64a7e0cf7e4b87e09e062253ae5a329a +Subproject commit 85e272c2bf7ae98833e544d07e50216b5385d136 From e2ea6e83b24bbb6da5e7410bdf199b7951426826 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 28 Jan 2025 14:44:38 -0800 Subject: [PATCH 52/67] Update level 3 logging out files --- doc/shared/Changelog.rst | 3 +- .../test_logging_arkode_arkstep_lvl3_0.out | 72 ++--- .../test_logging_arkode_arkstep_lvl3_1_0.out | 156 +++++----- ...test_logging_arkode_arkstep_lvl3_1_1_0.out | 284 ++++++++---------- ...test_logging_arkode_arkstep_lvl3_1_1_1.out | 172 +++++------ .../test_logging_arkode_arkstep_lvl3_2_0.out | 88 +++--- ...test_logging_arkode_arkstep_lvl3_2_1_0.out | 110 +++---- ...test_logging_arkode_arkstep_lvl3_2_1_1.out | 106 +++---- .../test_logging_arkode_erkstep_lvl3.out | 76 ++--- .../test_logging_arkode_forcingstep_lvl3.out | 40 +-- .../test_logging_arkode_lsrkstep_lvl3_0.out | 34 +-- .../test_logging_arkode_lsrkstep_lvl3_1.out | 34 +-- .../test_logging_arkode_lsrkstep_lvl3_2.out | 26 +- .../test_logging_arkode_lsrkstep_lvl3_3.out | 26 +- .../test_logging_arkode_lsrkstep_lvl3_4.out | 26 +- .../test_logging_arkode_lsrkstep_lvl3_5.out | 26 +- .../test_logging_arkode_mristep_lvl3_0.out | 136 ++++----- .../test_logging_arkode_mristep_lvl3_1_0.out | 148 ++++----- ...test_logging_arkode_mristep_lvl3_1_1_0.out | 170 +++++------ ...test_logging_arkode_mristep_lvl3_1_1_1.out | 170 +++++------ .../test_logging_arkode_mristep_lvl3_2_0.out | 144 ++++----- ...test_logging_arkode_mristep_lvl3_2_1_0.out | 166 +++++----- ...test_logging_arkode_mristep_lvl3_2_1_1.out | 164 +++++----- .../test_logging_arkode_mristep_lvl3_3.out | 150 ++++----- .../test_logging_arkode_mristep_lvl3_4_0.out | 150 ++++----- ...test_logging_arkode_mristep_lvl3_4_1_0.out | 172 +++++------ ...test_logging_arkode_mristep_lvl3_4_1_1.out | 172 +++++------ .../test_logging_arkode_mristep_lvl3_5_0.out | 150 ++++----- ...test_logging_arkode_mristep_lvl3_5_1_0.out | 172 +++++------ ...test_logging_arkode_mristep_lvl3_5_1_1.out | 172 +++++------ .../test_logging_arkode_mristep_lvl3_6.out | 108 +++---- ...test_logging_arkode_splittingstep_lvl3.out | 40 +-- .../test_logging_arkode_sprkstep_lvl3_0.out | 26 +- .../test_logging_arkode_sprkstep_lvl3_1.out | 26 +- .../logging/test_logging_cvode_lvl3_0.out | 32 +- .../logging/test_logging_cvode_lvl3_1_0.out | 54 ++-- .../logging/test_logging_cvode_lvl3_1_1.out | 54 ++-- .../logging/test_logging_cvodes_lvl3_0.out | 32 +- .../logging/test_logging_cvodes_lvl3_1_0.out | 54 ++-- .../logging/test_logging_cvodes_lvl3_1_1.out | 54 ++-- .../logging/test_logging_ida_lvl3_0.out | 54 ++-- .../logging/test_logging_ida_lvl3_1.out | 54 ++-- .../logging/test_logging_idas_lvl3_0.out | 54 ++-- .../logging/test_logging_idas_lvl3_1.out | 54 ++-- 44 files changed, 2080 insertions(+), 2131 deletions(-) diff --git a/doc/shared/Changelog.rst b/doc/shared/Changelog.rst index ec0e3de786..084e9278d2 100644 --- a/doc/shared/Changelog.rst +++ b/doc/shared/Changelog.rst @@ -703,8 +703,7 @@ or :c:func:`MRIStepSetInterpolateStopTime`. Added the second order IMEX method from :cite:p:`giraldo2013implicit` as the default second order IMEX method in ARKStep. The explicit table is given by -:c:enumerator:`ARKODE_ARK2_ERK_3_1_2` and the implicit table by -:c:enumerator:`ARKODE_ARK2_DIRK_3_1_2`. +``ARKODE_ARK2_ERK_3_1_2`` and the implicit table by ``ARKODE_ARK2_DIRK_3_1_2``. Updated the F2003 utility routines :c:func:`SUNDIALSFileOpen` and :c:func:`SUNDIALSFileClose` to support user specification of ``stdout`` and diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out index 6d3b434de0..5cca3740ed 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_0.out @@ -6,64 +6,64 @@ Using ERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.119441024380336e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.11944102438034e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.179161536570504e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.1791615365705e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.41924903763708e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.59451001562519e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00241492982931008 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00459018954411889 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00131045094026455 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00193906184325706 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00131045094026455 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285709975208084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00251791585491959 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00469317556972839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191418339759207 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00469317556972839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0133919487764742 - 2.517915854919593e-03 1.224744224325435e+00 1.731684811946959e+00 2.964961609563943e-12 1.116839953851922e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00251791585491959, h = 0.00155158565717385 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00251791585491959 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00645759269757464 + 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00469317556972839, h = 0.00269125084525615 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00469317556972839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00329370868350652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00576967590783085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00329370868350652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00630792607688209 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00406950151209344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00738442641498455 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00368160509779998 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00738442641498455 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228191949944954 - 4.069501512093439e-03 1.224743181155563e+00 1.731094930827531e+00 3.276268145668837e-12 1.207456357121828e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000769861338194889 + 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00406950151209344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00155158565717385 -Current step size = 0.00589144841041126 -Explicit RHS fn evals = 17 -Implicit RHS fn evals = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.00738442641498455 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00269125084525615 +Current step size = 0.0133828537954865 +Explicit RHS fn evals = 15 +Implicit RHS fn evals = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out index 2198ecb023..1cfa388938 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out @@ -5,7 +5,9 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -13,7 +15,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -21,7 +23,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -29,38 +31,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2703798217317151 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.270379821731715 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801243654e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801208512e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09624183453536866 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.08528677931681904 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813593647933 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813597902462 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414356077108e-06 @@ -69,156 +55,160 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.25735177228299e-09 - 1.029860256095084e-04 1.224744870309104e+00 1.732050195224279e+00 2.442490654175344e-15 1.998401444325282e-15 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0036446592202761 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00101415083067853 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05238430747946e-09 + 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00497414198304541 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00259005701713221 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878047303152 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878045794722 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.213294318213662 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2132943179163734 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00283648044081659 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000831432253734158 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745957984698 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745956564198 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682987640205 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682984423547 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00210754859676137 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00321182476501289 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628488284655 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628485946814 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005049355566 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005044937403 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005276093690543978 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00527609368797673 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028119813453 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028113429431 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991742706002 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991732185001 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087297336198 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087293412658 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00374764524588561 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00507712800865492 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286074154952 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286068246216 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994921768932 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994911904798 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537239449411 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537235589097 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00786490641539247 - 3.747645245885612e-03 1.224743437035635e+00 1.731240118427390e+00 9.108140908153928e-10 5.271953984475886e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00374764524588561, h = 0.00223612722771332 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00430667705281394 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00577768580132696 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00507712800865492, h = 0.00289435148264577 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00507712800865492 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0065243037499778 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422798229331 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422796849768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841555230246 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841554791242 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0054247406666706 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00550099596971972 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191908009 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191489779 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307477081039 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307475559162 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00497751522112794 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00688609768530853 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655474581444 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655472878314 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988548783 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988497214 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00486570885974227 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808725355060652 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341502545673 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341499829686 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855436438348 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855435739141 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950526212932 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950527502381 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00598377247359893 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00797147949130069 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724338209779 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724335587325 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528496587065 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528495900837 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559094275988 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559093605087 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111685059134392 - 5.983772473598933e-03 1.224741215598295e+00 1.729984808853534e+00 1.411835537368233e-09 7.625806652811207e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000667541461244115 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00598377247359893 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223612722771332 -Current step size = 0.010082634983602 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 49 -NLS iters = 31 -NLS fails = 0 -NLS iters per step = 10.33333333333333 -LS setups = 0 +Current time = 0.00797147949130069 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289435148264577 +Current step size = 0.0148851325728492 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 49 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out index 2d4b29f5e8..108c0c5d13 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out @@ -6,7 +6,9 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -22,7 +24,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -38,7 +40,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -54,7 +56,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -69,13 +71,13 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729285399011 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824396e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824623e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -86,40 +88,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919779191e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.468991359913261e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623937258978928 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.08528677935133332, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1206137200497772, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.187949946472201e-06 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.187949946472201e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459686493964 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599405794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295684377, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919782981e-06 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919782981e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849628705 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919779191e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849627783 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165041e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 @@ -130,124 +100,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.01038940268245e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06050616602604e-09 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0036787200145833 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00102266602925533 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496675422312682 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258636313717292 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366824746531, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366823253987, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905129269183, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905127158407, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351662720349 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351659917327 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.882531734419718e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.539312788374185e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.882531734419718e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754498604105 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.539312788374185e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754497113704 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448294422972e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448156610062e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00286202603654698 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830350341342969 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497454209836, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497452804125, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273633411908, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273631423932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553138311062 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553135597982 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.011411444024011e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.071535650853336e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.011411444024011e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624680041969 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.071535650853336e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624678638776 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395867358197889e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395866022775986e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00212628203363032 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320720741506377 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636802192543, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636799879348, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540035927252, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540032655901, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964990715293 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964986383052 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.789668240619014e-17 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.948588646235637e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.789668240619014e-17 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280764694615 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.948588646235637e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280762384555 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896653991349e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896834065384e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00194234603290116 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0052684104176614 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935826533287, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935820216669, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280156495445, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280147562397, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.8082318131156221 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.80823181193877 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.120002960573796e-17 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.635179301029465e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.120002960573796e-17 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692029529639 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.635179301029465e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692023218828 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002870153813341939, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00028701536186056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0037817060401928 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506974024873633 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615184776663, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615178930309, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761549948359, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761541680366, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726390321624 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726379422214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.304767851710737e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.08971449261438e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.304767851710737e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.2659416513743 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.08971449261438e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.265941067359 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002495646797049599, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.000249564687271857, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -255,124 +227,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00816310546643735 - 3.781706040192805e-03 1.224743411877806e+00 1.731225318313145e+00 1.057254284120290e-10 1.072486544018147e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0037817060401928, h = 0.00223330996837281 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00434003353228601 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574336054534255 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506974024873633, h = 0.00289494152474525 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506974024873633 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651721101110895 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291834028905, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291832667672, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.0798927702483, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.079892577741, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.284429669121418 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2844296690428963 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.856087007983854e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.689625129912962e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.856087007983854e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681716085887 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.689625129912962e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681714724712 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724633885979543e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724634024090804e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00545668851647241 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549369461946601 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918845246, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918432218, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372637543213, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372636959103, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702547676896 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702546356424 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.628034972992036e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.743428383750915e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.628034972992036e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491708350703 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.743428383750915e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491707937726 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265628637698205e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265621792903265e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00501002652279785 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00687907870170211 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555521835236, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555520155276, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203726804505, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203724428682, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3665345296848642 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.366534529643799 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.707140230613715e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.506305455047092e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.707140230613715e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569021334169 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.506305455047092e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569019654059 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.419373834637885e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.41936993456799e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00489836102437921 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808047943447139 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.8207976779007, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.820797410297, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207823339776, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207822961327, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810697841036 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810696378324 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.719488409552539e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.043442040705694e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.719488409552539e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110609372421 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.043442040705694e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110606696143 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313404565604, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313402503713, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964681775727785 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796468177348158 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870952520789, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870949936611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.35902823639, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.359027870932, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969991067312 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969989650043 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.259213533922895e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.97124359201826e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.259213533922895e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869315069474 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.97124359201826e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869312485084 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267403498561, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267402460637, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -380,35 +354,35 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111125927502444 - 6.015016008565610e-03 1.224741178982448e+00 1.729963189938353e+00 2.336992821483364e-10 1.590565457121329e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668065908928318 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964681775727785 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223330996837281 -Current step size = 0.0101222204683134 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 9 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 25 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 25 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 25 -LS iters per NLS iter = 0.925925925925926 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.00796468177348158 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494152474525 +Current step size = 0.014875886310186 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 45 +NLS iters = 27 +NLS fails = 0 +NLS iters per step = 9 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 25 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 25 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 25 +LS iters per NLS iter = 0.925925925925926 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out index 7e504ff09d..30a5d26ecf 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out @@ -6,7 +6,9 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -16,7 +18,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -26,7 +28,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -36,7 +38,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -47,231 +49,215 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842755618676e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842759940812e-08 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623936755399637 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459315580529 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749520049542 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749630505384 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.00910759438516e-09 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224358e+00 2.220446049250313e-16 8.104628079763643e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00367890199362458 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00102271152401565 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06054698449686e-09 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496671726474331 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258634465798116 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401887567888 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401886078219 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824840356065 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824834014635 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00286216252082794 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830344928913016 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500372650739 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500371247808 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799205527649 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799203649459 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00212638212210303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320718431607408 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613572068255 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613569759502 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324520025331 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324507830747 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0019424370224218 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00526837198094255 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775601354925 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775595050387 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769927988289 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769922509453 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069703292798704 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506970329035282 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.005798180281 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.0057975967644 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.251112222890202 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2511122224022418 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00816471836041274 - 3.781888019234090e-03 1.224743411639714e+00 1.731225239016591e+00 8.112177596331094e-12 2.569811030639357e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00378188801923409, h = 0.00223329514087935 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00434021180445393 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574318202038279 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506970329035282, h = 0.00289494518004573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506970329035282 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651717588037568 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.043004433908 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.0430042964744 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599516763003 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599515968683 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0054568593748936 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208732367982 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208731951771 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0276890607331008 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02768906071174051 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00501020034671773 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0068790440278814 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868003529424 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868001832096 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.167627089609758 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1676270895079329 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00489853558967376 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808044627760037 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463595517242 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463592806854 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066042483682 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066040662974 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00601518316011344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796464847039855 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442248409132 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442245792432 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383853383472 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383851641306 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0006680697278575115 - 7.964648472653739e-03 1.224738397026471e+00 1.728392224429115e+00 1.083555467573660e-11 5.830909088899716e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668069728036845 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601518316011344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223329514087935 -Current step size = 0.0101224304950251 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 44 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.00796464847039855 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494518004573 +Current step size = 0.0148758371986517 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 44 +NLS iters = 26 +NLS fails = 0 +NLS iters per step = 8.66666666666667 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0384615384615385 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out index 8df402a46f..3cfcb251cc 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_0.out @@ -7,7 +7,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -15,7 +15,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -23,7 +23,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -31,7 +31,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -39,7 +39,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -50,7 +50,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -63,12 +63,12 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.8271448260369e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 6.661338147750939e-16 4.440892098500626e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00641324646401636 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.97817873492126e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 2.220446049250313e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00330960925761769 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -79,7 +79,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -93,7 +93,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -104,7 +104,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00407919883329965 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -115,7 +115,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -129,7 +129,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00555424552002342 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -145,12 +145,12 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00400567566981559 - 6.516232489625870e-03 1.224740537689633e+00 1.729601039259757e+00 2.278266464372791e-11 2.184104008762233e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00651623248962587, h = 0.00365349306629522 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00651623248962587 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228352880442333 + 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486720007233434 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00834297902277348 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0097849308541115 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -164,7 +164,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00772919218763588 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350135077167 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -178,7 +178,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0087813981907289 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132444604769 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -192,7 +192,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0096217015959768 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00894777244166999 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -203,7 +203,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198977248687895 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.011989772486879 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -217,7 +217,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0101697255559211 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499325085793 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -233,24 +233,24 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000415148091486067 - 1.016972555592109e-02 1.224734315814070e+00 1.726089959024652e+00 2.482614114285298e-11 2.127358289527592e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250838296790761 + 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0101697255559211 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365349306629522 -Current step size = 0.0209740196543238 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 -NLS fails = 0 -NLS iters per step = 11.6666666666667 -LS setups = 0 +Current time = 0.0134499325085793 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486720007233434 +Current step size = 0.0310731647840138 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 +NLS fails = 0 +NLS iters per step = 13.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out index 15bb70d035..db6c18f950 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_0.out @@ -8,7 +8,7 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -18,7 +18,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -34,7 +34,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -50,7 +50,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -66,7 +66,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -87,7 +87,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -110,12 +110,12 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.74232503124238e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 4.440892098500626e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00645112655795245 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.9626087705981e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00332854930458573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -139,7 +139,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00224476004284972 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -163,7 +163,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00410268449154003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -187,7 +187,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00558644359986909 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -211,7 +211,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00655411258356196 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -241,7 +241,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -273,12 +273,12 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0041006787317522 - 6.554112583561956e-03 1.224740487151591e+00 1.729572495016884e+00 2.946975996565016e-11 2.206064220189319e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411258356196, h = 0.00365066308067988 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411258356196 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228354849744912 + 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486719195731315 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00837944412390189 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00978492884970126 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -302,7 +302,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00776613272634767 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350100859744 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -326,7 +326,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324174194482 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132417419448 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -350,7 +350,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771833043398 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0089477718330434 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -374,7 +374,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0102047756642418 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0119897668063641 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -404,7 +404,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344992439355806 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499243935581 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -436,35 +436,35 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000413855519066101 - 1.020477566424183e-02 1.224734242922404e+00 1.726048871574017e+00 3.169020601490047e-11 2.147166888732954e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250838084546844 + 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047756642418 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066308067988 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 10.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 33 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 33 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.07407407407407 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.0134499243935581 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719195731315 +Current step size = 0.0310731368172952 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 +NLS fails = 0 +NLS iters per step = 10.6666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 33 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 33 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out index 04b67117e8..e994f82d1c 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_2_1_1.out @@ -8,7 +8,7 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -18,7 +18,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -28,7 +28,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -38,7 +38,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -48,7 +48,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -63,7 +63,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -75,12 +75,12 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.74231985255431e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.96260358491064e-11 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 0.000000000000000e+00 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00645112891323825 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00332855048222863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -95,7 +95,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00224476082480461 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -110,7 +110,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00410268595181722 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -125,7 +125,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00558644560186202 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -140,7 +140,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -155,7 +155,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -172,12 +172,12 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00410065531616961 - 6.554114938847760e-03 1.224740487151368e+00 1.729572493235030e+00 2.654254593892347e-11 2.225244433162743e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411493884776, h = 0.00365066796116835 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411493884776 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228354784306147 + 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486719222696918 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00837944891943193 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0097849289163063 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -192,7 +192,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00776613670195565 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350101996763 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -207,7 +207,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00881752907477213 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132418322796 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -222,7 +222,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00965718270584085 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0089477718532676 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -237,7 +237,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0102047829000161 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0119897669951233 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -269,35 +269,35 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000413856921149471 - 1.020478290001611e-02 1.224734242910499e+00 1.726048863075356e+00 2.852318381485475e-11 2.167570567479515e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250835982466583 + 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047829000161 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066796116835 -Current step size = 0.02102619488941 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.0134499246632141 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719222696918 +Current step size = 0.0310731882597642 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.032258064516129 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out index 4667f9c3a2..b8e5248b2b 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl3.out @@ -5,73 +5,73 @@ Start ERKStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.119441024380336e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.11944102438034e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.179161536570504e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.1791615365705e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 7.72395192071313e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.41924903763708e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.59451001562519e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00888257535334916 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0215409354980517 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00454427370228409 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00871936022483019 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00454427370228409 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0130275473244405 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00898556137895866 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0216439215236612 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00676491754062138 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0216439215236612 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 2.46247515531987, kflag = 5 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0011665266689797 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00676491754062138 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 3.14020178746167, kflag = 5 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00215409354980517 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0216439215236612 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000686249360099358 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000964623445531577 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000686249360099358 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00139544215549261 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00126951269458921 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225707957541468 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002257079575414679 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225707957541468 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000728262871970895 - 1.269512694589208e-03 1.224744706901909e+00 1.731957760691857e+00 7.771561172376096e-14 3.164135620181696e-13 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00126951269458921, h = 0.0011665266689797 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00126951269458921 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000309364878860331 + 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00225707957541468, h = 0.00215409354980517 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00225707957541468 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185277602907906 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00311871699533675 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00185277602907906 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00354953570529778 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00243603936356891 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00441117312521985 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00214440769632398 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00441117312521985 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000728392353011924 - 2.436039363568907e-03 1.224744265725872e+00 1.731708225192427e+00 1.558753126573720e-13 5.899725152858082e-13 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000313007462932101 + 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00243603936356891 -Steps = 3 -Step attempts = 4 -Stability limited steps = 0 -Accuracy limited steps = 4 -Error test fails = 1 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.0011665266689797 -Current step size = 0.00364812132551383 -RHS fn evals = 21 +Current time = 0.00441117312521985 +Steps = 3 +Step attempts = 4 +Stability limited steps = 0 +Accuracy limited steps = 4 +Error test fails = 1 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00215409354980517 +Current step size = 0.0077238572300834 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out index 11225e19d0..8dbb14274c 100644 --- a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out +++ b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl3.out @@ -23,7 +23,7 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0008 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -65,7 +65,7 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -79,7 +79,7 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00085 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -247,13 +247,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0026875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -261,7 +261,7 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.00275, h = 0.000249999999999999 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00285 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -276,17 +276,17 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 9.970030029929939e-01 2.993993026279007e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End ForcingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_0.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_0.out index 80544e0ec7..b689a2a9f2 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_0.out @@ -39,21 +39,21 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.32342730346899e-12 9.774571052271429e-08 9.774571052271400e-08 2.646977960169689e-23 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_1.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_1.out index a6bc8d1fa5..4137bd2150 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_1.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_1.out @@ -39,21 +39,21 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.11748368555039e-12 9.774571052271429e-08 9.774571052271410e-08 1.323488980084844e-22 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_2.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_2.out index d786872f51..169ce9c086 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_2.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_2.out @@ -78,17 +78,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.01047602983307e-10 1.281744384765625e-06 1.281744384764889e-06 3.388131789017201e-20 --------------------------------------------------------------------- -Current time = 1.28174438476563e-06 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 1.220703125e-06 -Current step size = 2.44140625e-05 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 1.28174438476563e-06 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 1.220703125e-06 +Current step size = 2.44140625e-05 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_3.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_3.out index dbdb368b60..b014497d30 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_3.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_3.out @@ -78,17 +78,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.64685460693799e-13 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 29 -Number of stages used = 9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 29 +Number of stages used = 9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_4.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_4.out index 156e3b6a2e..e249437b6d 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_4.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_4.out @@ -42,17 +42,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.64685460693799e-13 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 14 -Number of stages used = 4 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 14 +Number of stages used = 4 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_5.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_5.out index ae86117f7c..0e1ae5efba 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_5.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl3_5.out @@ -78,17 +78,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.30870562015982e-14 8.765030586579745e-09 8.765030586579742e-09 3.308722450212111e-24 --------------------------------------------------------------------- -Current time = 8.76503058657974e-09 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 8.25637088037414e-09 -Current step size = 1.65127417607483e-07 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 8.76503058657974e-09 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 8.25637088037414e-09 +Current step size = 1.65127417607483e-07 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out index b3d3037ebc..f12153c0d8 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_0.out @@ -11,73 +11,73 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00075 @@ -85,31 +85,31 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161864018577e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321594358247e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000269127317202885 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000615436341398557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000588523609678269 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000615436341398557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000642349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000682718170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.06135212545027e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.52483663017869e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -117,17 +117,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00075, h = 0.00025 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0009 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53493868930233e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.61386796390857e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -140,17 +140,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469718993709e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846971899371e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00175 @@ -158,17 +158,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000416666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00154166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00158333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164583333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.18475298463355e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.3543510588853e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -186,7 +186,7 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53544085372349e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.65337543179745e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -199,17 +199,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.790448229966051e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044822996605e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00275 @@ -217,17 +217,17 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000416666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00254166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00258333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264583333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.18531991537069e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.38201984966596e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -245,28 +245,28 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.687683867585899e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.6876838675859e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out index 795eb051fd..90c2d02131 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_0.out @@ -12,73 +12,73 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 @@ -97,31 +97,31 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161861252328e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321473334872e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68176961607164e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824276166962e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 @@ -140,17 +140,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.774107490330471e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749033047e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -176,17 +176,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185281911249e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846977432031e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 @@ -205,17 +205,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234106734159e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78264578729677e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00166666666666667 @@ -234,17 +234,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85298346722214e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663319968874e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -270,17 +270,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375330832108e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044820229997e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00233333333333333 @@ -299,17 +299,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467352756314e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407653932745e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00266666666666667 @@ -328,17 +328,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574823479096e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751566853444e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -357,22 +357,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out index e85ec1ef53..4bd61a7e06 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_0.out @@ -13,73 +13,73 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 @@ -111,31 +111,31 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161888914814e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321698092567e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68177094387627e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824231215243e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 @@ -167,17 +167,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151475224181e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410748687262e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -216,17 +216,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185279698184e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469746657e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 @@ -258,17 +258,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234106734158e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.7826458287928e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00166666666666667 @@ -300,17 +300,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85298353361799e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663313052637e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -349,17 +349,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375339685247e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.7904482230495e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00233333333333333 @@ -391,17 +391,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.794076553161126e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407655316113e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00266666666666667 @@ -433,17 +433,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574823479083e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751564086545e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -475,33 +475,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952843819e+00 1.731531270273608e+00 1.053868103895184e-11 3.752553823233029e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out index cd87088a3f..68bf6657e8 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_1_1_1.out @@ -13,73 +13,73 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 @@ -102,31 +102,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161947005909e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321663514006e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68176978204408e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824238130778e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 @@ -149,17 +149,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151478542089e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749724022e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -189,17 +189,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185266415239e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846973280864e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 @@ -222,17 +222,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234113366686e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78264580801967e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00166666666666667 @@ -255,17 +255,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.8529833343099e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663316506319e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -295,17 +295,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335237828e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044818147349e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00233333333333333 @@ -323,17 +323,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467369349205e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407635032002e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00266666666666667 @@ -351,17 +351,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574827502414e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751497127544e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -379,33 +379,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out index b294dccf4d..4116d3f286 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_0.out @@ -12,63 +12,63 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -78,7 +78,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -97,31 +97,31 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.000192922389109197 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270566101614e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527834040216e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098304156312e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05765842323553e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00071793326075423 @@ -140,17 +140,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00071793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00071793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742283557524e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697163888963e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -176,17 +176,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857379327764e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.2026455278835e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00143586652150846 @@ -205,17 +205,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792597983481e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382562764265e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00171793326075423 @@ -234,17 +234,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821343573973e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107137187604e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -270,17 +270,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564303104e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102673e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00243586652150846 @@ -299,17 +299,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919341947655e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187823725386e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00271793326075423 @@ -328,17 +328,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48966846604958e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674516553139e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -357,22 +357,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out index e755856b29..377134adaf 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_0.out @@ -13,63 +13,63 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -79,7 +79,7 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -111,31 +111,31 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.000192922389109197 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270599296684e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527847871496e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098774423023e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05764977862688e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00071793326075423 @@ -167,17 +167,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00071793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00071793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742295729181e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697163888963e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -216,17 +216,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857377999926e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.20264559704176e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00143586652150846 @@ -258,17 +258,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792595770338e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382590428546e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00171793326075423 @@ -300,17 +300,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821339147555e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107137187599e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -349,17 +349,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912565188417e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102668e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00243586652150846 @@ -391,17 +391,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919337520793e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187865227148e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00271793326075423 @@ -433,17 +433,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.4896684217788e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674544222306e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -475,33 +475,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out index a7eec819fc..b12712ed75 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_2_1_1.out @@ -13,63 +13,63 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -79,7 +79,7 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -102,31 +102,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.000192922389109197 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270521840867e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527849600167e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098525457996e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05766015214637e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00071793326075423 @@ -149,17 +149,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00071793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00071793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742291302014e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697188089907e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -189,17 +189,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857377998397e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.20264560390151e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00143586652150846 @@ -222,17 +222,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792604618559e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382583496486e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00171793326075423 @@ -255,17 +255,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821336926928e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107130244008e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -295,13 +295,13 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success @@ -323,17 +323,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919346019151e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187680275988e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00271793326075423 @@ -351,17 +351,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48966840657168e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674154840902e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -379,33 +379,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out index a867ac046e..2a6d5f3ac0 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_3.out @@ -11,73 +11,73 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 @@ -85,31 +85,31 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446943643145e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.1073606623499e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.61893478145414e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.26243167642398e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -117,45 +117,45 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06415360964231e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967392272e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217695212445e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441339031e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -174,11 +174,11 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465401153773e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578037e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 @@ -186,17 +186,17 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718289296315e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555340877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -206,15 +206,15 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437386314593e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738631459e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -233,11 +233,11 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661417999388e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943502574e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 @@ -245,17 +245,17 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796475517721e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093874370946e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -265,36 +265,36 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876033 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747736684e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out index b1c6ad0201..40adac79b4 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_0.out @@ -12,73 +12,73 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -95,31 +95,31 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446936450925e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086117328e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.64642683851015e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.72214948702082e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -136,45 +136,45 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06444968358671e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29098683194423e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967004998e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217689507079e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584443552036e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295289096e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -202,11 +202,11 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465401596383e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264439719e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -223,17 +223,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9871828265712e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155541509221e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -252,15 +252,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462878905 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769775e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -288,11 +288,11 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661419327358e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943364243e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -309,17 +309,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796479944291e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093867454425e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -338,15 +338,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.455507476813511e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747681351e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -361,22 +361,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out index 8625838c3a..d3d7e4b788 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_0.out @@ -13,73 +13,73 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -109,31 +109,31 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446933684687e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086117328e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.55331130299543e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -163,45 +163,45 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06396343075831e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080966507076e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217688642629e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584445101141e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295289096e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -242,11 +242,11 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402038996e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578036e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -276,17 +276,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718277124459e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155531135481e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -318,15 +318,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462967428 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738714448e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -367,11 +367,11 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.0966141711407e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943364242e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -401,17 +401,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473304433e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093902037012e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -443,15 +443,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678964561 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747764349e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -479,33 +479,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out index 0bf63716f6..41c3e6e6b5 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_4_1_1.out @@ -13,73 +13,73 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -100,31 +100,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9544693894054e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086981777e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.97059615282481e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.58707893979177e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -145,45 +145,45 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06396343075831e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967060323e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217689334189e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584443552036e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295219939e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -215,11 +215,11 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465400268544e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264439719e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -240,17 +240,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9871828929492e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155538046202e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -273,15 +273,15 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462699102 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738741097e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -313,11 +313,11 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661420209099e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943501253e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -333,17 +333,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.330938743503804e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.3309387435038e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -361,15 +361,15 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408679042059 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747704935e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -383,33 +383,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out index ade58254de..14fc75323f 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_0.out @@ -12,73 +12,73 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -95,31 +95,31 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446944473016e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736063641641e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.48338628629324e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.99229058165029e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -136,45 +136,45 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29095981789821e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967336947e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217695039555e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584440896429e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296533912e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -202,11 +202,11 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402038998e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578037e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -223,17 +223,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718289296315e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155548425051e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -252,15 +252,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462790385 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769776e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -288,11 +288,11 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661419770007e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.8823094350257e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -309,17 +309,17 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473304431e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093853621378e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -338,15 +338,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678698962 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747819679e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -361,22 +361,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out index 40f6d26385..9fcbe165b7 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_0.out @@ -13,73 +13,73 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -109,31 +109,31 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446945579512e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736069692788e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.0598258553317e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -163,45 +163,45 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06434270796446e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29096994816547e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967502921e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217696076895e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441339031e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -242,11 +242,11 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402924224e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264716353e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -276,17 +276,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.281555587987901e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.2815555879879e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -318,15 +318,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.446437387697758e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769776e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -367,11 +367,11 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661418442034e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943502569e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -401,17 +401,17 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796464451287e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093860537893e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -443,15 +443,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678698961 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747847345e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -479,33 +479,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out index b6a2b73fac..bfb02900c2 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_5_1_1.out @@ -13,73 +13,73 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -100,31 +100,31 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446948622374e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736076608383e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.09359349217565e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -145,45 +145,45 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29095981789821e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967226298e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217694693776e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441781632e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -215,11 +215,11 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402481611e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264716353e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -240,17 +240,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718282655609e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555335336e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -273,15 +273,15 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462964438 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738741012e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -313,11 +313,11 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661418438159e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943362808e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -333,17 +333,17 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473298381e-06 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093888181656e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -361,15 +361,15 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00039340867877552 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747815249e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -383,33 +383,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out index 98711d5df3..164039cbb1 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl3_6.out @@ -12,73 +12,73 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.28709714933094e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.681308618402e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.19075505353205e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.71612953244125e-08, h = 1.41304057096855e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.23681580808686e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.82377523711831e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.23681580808686e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.6498563790554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.43020186629296e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.07694172355082e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.43020186629296e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.64946076630599e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.14816983402221e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.43020186629296e-06, h = 2.3214492710663e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.43020186629296e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.30374482216245e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.07159989505582e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.30374482216245e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.53588974926908e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.4644694576956e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.88410713992902e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.4644694576956e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14080597303478e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.14262894570205e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.4644694576956e-05, h = 0.00046428985421326 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.4644694576956e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000256789621683586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00021036063626226 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000256789621683586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000303218607104912 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000488934548790216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000372862085236901 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000488934548790216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.82622499663382e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.65015983148827e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000488934548790216, h = 1.10654512097837e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000488934548790216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000494467274395108 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00049336072927413 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000494467274395108 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000495573819516087 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000497233637197554 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.88988696830735e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.14763377122855e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -88,31 +88,31 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000110654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.85236096782697e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000110654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517404 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000165981768146756 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.42509408072305e-07 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.42660624572215e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000221309024195674, h = 0.000778690975804325 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000610654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532785414517404 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000610654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000688523609678269 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000805327256048918 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000144544246230492 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28133550933019e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -137,7 +137,7 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.45666561975625e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.01287327936132e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -149,15 +149,15 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393262822583746 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44648426343788e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -182,7 +182,7 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.45761722074789e-05 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.07252656108775e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -194,37 +194,37 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393409923004339 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45555066464345e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 6 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 6 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out index 50604f7a04..95a7bd117e 100644 --- a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out +++ b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl3.out @@ -25,7 +25,7 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0008 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -67,7 +67,7 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -81,7 +81,7 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00085 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -257,13 +257,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0026875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -271,7 +271,7 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.00275, h = 0.000249999999999999 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00285 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -288,17 +288,17 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 9.969970190148773e-01 2.989985090406932e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End SplittingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_0.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_0.out index 7418343fdf..3355d3cda6 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_0.out @@ -36,17 +36,17 @@ Start SPRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 3.999718759228028e-01 5.999859381323369e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_1.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_1.out index 3049f6a860..06ef5c971e 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_1.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl3_1.out @@ -36,17 +36,17 @@ Start SPRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 3.999718759228029e-01 5.999859381323370e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl3_0.out b/test/unit_tests/logging/test_logging_cvode_lvl3_0.out index 5ab33c197d..106318ab7b 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl3_0.out @@ -51,20 +51,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][cvStep][end-step-attempt] status = success, dsm = 0.588592113841845 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl3_1_0.out b/test/unit_tests/logging/test_logging_cvode_lvl3_1_0.out index 61fe8f95d5..187a3122b7 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl3_1_0.out @@ -92,31 +92,31 @@ Using GMRES iterative linear solver [INFO][rank 0][cvStep][end-step-attempt] status = success, dsm = 0.588592093330628 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl3_1_1.out b/test/unit_tests/logging/test_logging_cvode_lvl3_1_1.out index 9c0ea1854f..021e0c8fef 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl3_1_1.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl3_1_1.out @@ -63,31 +63,31 @@ Using dense direct linear solver [INFO][rank 0][cvStep][end-step-attempt] status = success, dsm = 0.588592055991432 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl3_0.out b/test/unit_tests/logging/test_logging_cvodes_lvl3_0.out index acf5162ba0..acec246918 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl3_0.out @@ -51,20 +51,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][cvStep][end-step-attempt] status = success, dsm = 0.588592113841845 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl3_1_0.out b/test/unit_tests/logging/test_logging_cvodes_lvl3_1_0.out index 3f380ac97e..26699331fc 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl3_1_0.out @@ -92,31 +92,31 @@ Using GMRES iterative linear solver [INFO][rank 0][cvStep][end-step-attempt] status = success, dsm = 0.588592093330628 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl3_1_1.out b/test/unit_tests/logging/test_logging_cvodes_lvl3_1_1.out index f6130de7e2..0f63cba993 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl3_1_1.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl3_1_1.out @@ -63,31 +63,31 @@ Using dense direct linear solver [INFO][rank 0][cvStep][end-step-attempt] status = success, dsm = 0.588592055991432 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_ida_lvl3_0.out b/test/unit_tests/logging/test_logging_ida_lvl3_0.out index 024e30e56f..c4b667a104 100644 --- a/test/unit_tests/logging/test_logging_ida_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_ida_lvl3_0.out @@ -127,31 +127,31 @@ Using GMRES iterative linear solver [INFO][rank 0][IDAStep][end-step-attempt] status = success, dsm = 0.368240764380389 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_ida_lvl3_1.out b/test/unit_tests/logging/test_logging_ida_lvl3_1.out index 4c1c18119f..5da0bb9aba 100644 --- a/test/unit_tests/logging/test_logging_ida_lvl3_1.out +++ b/test/unit_tests/logging/test_logging_ida_lvl3_1.out @@ -78,31 +78,31 @@ Using dense direct linear solver [INFO][rank 0][IDAStep][end-step-attempt] status = success, dsm = 0.368240380892926 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_idas_lvl3_0.out b/test/unit_tests/logging/test_logging_idas_lvl3_0.out index ba5aca5d7a..ef02af0a77 100644 --- a/test/unit_tests/logging/test_logging_idas_lvl3_0.out +++ b/test/unit_tests/logging/test_logging_idas_lvl3_0.out @@ -127,31 +127,31 @@ Using GMRES iterative linear solver [INFO][rank 0][IDAStep][end-step-attempt] status = success, dsm = 0.368240764380389 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test diff --git a/test/unit_tests/logging/test_logging_idas_lvl3_1.out b/test/unit_tests/logging/test_logging_idas_lvl3_1.out index 73f5335926..f3f5ad94f9 100644 --- a/test/unit_tests/logging/test_logging_idas_lvl3_1.out +++ b/test/unit_tests/logging/test_logging_idas_lvl3_1.out @@ -78,31 +78,31 @@ Using dense direct linear solver [INFO][rank 0][IDAStep][end-step-attempt] status = success, dsm = 0.368240380892926 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test From 094c9b1691c4b1796c36bddee73120c831ccad41 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 28 Jan 2025 15:02:34 -0800 Subject: [PATCH 53/67] Update level 4 logging out files --- test/answers | 2 +- .../test_logging_arkode_arkstep_lvl4_0.out | 90 +++---- .../test_logging_arkode_arkstep_lvl4_1_0.out | 122 ++++----- ...test_logging_arkode_arkstep_lvl4_1_1_0.out | 160 +++++------- ...test_logging_arkode_arkstep_lvl4_1_1_1.out | 148 +++++------ .../test_logging_arkode_arkstep_lvl4_2_0.out | 106 ++++---- ...test_logging_arkode_arkstep_lvl4_2_1_0.out | 128 +++++----- ...test_logging_arkode_arkstep_lvl4_2_1_1.out | 124 ++++----- .../test_logging_arkode_erkstep_lvl4.out | 98 +++---- .../test_logging_arkode_forcingstep_lvl4.out | 40 +-- .../test_logging_arkode_lsrkstep_lvl4_0.out | 34 +-- .../test_logging_arkode_lsrkstep_lvl4_1.out | 34 +-- .../test_logging_arkode_lsrkstep_lvl4_2.out | 26 +- .../test_logging_arkode_lsrkstep_lvl4_3.out | 26 +- .../test_logging_arkode_lsrkstep_lvl4_4.out | 26 +- .../test_logging_arkode_lsrkstep_lvl4_5.out | 26 +- .../test_logging_arkode_mristep_lvl4_0.out | 198 +++++++-------- .../test_logging_arkode_mristep_lvl4_1_0.out | 210 +++++++-------- ...test_logging_arkode_mristep_lvl4_1_1_0.out | 232 ++++++++--------- ...test_logging_arkode_mristep_lvl4_1_1_1.out | 232 ++++++++--------- .../test_logging_arkode_mristep_lvl4_2_0.out | 202 +++++++-------- ...test_logging_arkode_mristep_lvl4_2_1_0.out | 224 ++++++++-------- ...test_logging_arkode_mristep_lvl4_2_1_1.out | 224 ++++++++-------- .../test_logging_arkode_mristep_lvl4_3.out | 218 ++++++++-------- .../test_logging_arkode_mristep_lvl4_4_0.out | 218 ++++++++-------- ...test_logging_arkode_mristep_lvl4_4_1_0.out | 240 +++++++++--------- ...test_logging_arkode_mristep_lvl4_4_1_1.out | 240 +++++++++--------- .../test_logging_arkode_mristep_lvl4_5_0.out | 218 ++++++++-------- ...test_logging_arkode_mristep_lvl4_5_1_0.out | 240 +++++++++--------- ...test_logging_arkode_mristep_lvl4_5_1_1.out | 240 +++++++++--------- .../test_logging_arkode_mristep_lvl4_6.out | 154 +++++------ ...test_logging_arkode_splittingstep_lvl4.out | 40 +-- .../test_logging_arkode_sprkstep_lvl4_0.out | 26 +- .../test_logging_arkode_sprkstep_lvl4_1.out | 26 +- .../logging/test_logging_cvode_lvl4_0.out | 32 +-- .../logging/test_logging_cvode_lvl4_1_0.out | 54 ++-- .../logging/test_logging_cvode_lvl4_1_1.out | 54 ++-- .../logging/test_logging_cvodes_lvl4_0.out | 32 +-- .../logging/test_logging_cvodes_lvl4_1_0.out | 54 ++-- .../logging/test_logging_cvodes_lvl4_1_1.out | 54 ++-- .../logging/test_logging_ida_lvl4_0.out | 54 ++-- .../logging/test_logging_ida_lvl4_1.out | 54 ++-- .../logging/test_logging_idas_lvl4_0.out | 54 ++-- .../logging/test_logging_idas_lvl4_1.out | 54 ++-- 44 files changed, 2509 insertions(+), 2559 deletions(-) diff --git a/test/answers b/test/answers index 85e272c2bf..c97f7bc3ed 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit 85e272c2bf7ae98833e544d07e50216b5385d136 +Subproject commit c97f7bc3ed758825e3e7e4b65ed576b6543ac59c diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out index 3fb507c3ef..a8a2f09a69 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_0.out @@ -6,73 +6,73 @@ Using ERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.119441024380336e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.11944102438034e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.179161536570504e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.1791615365705e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00251555190553134, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00241492982931008, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 23.4491020992184 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.41924903763708e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00478144744179051, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00459018954411889, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 44.5709941417051 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.59451001562519e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00241492982931008 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00459018954411889 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00131045094026455 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00193906184325706 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00131045094026455 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285709975208084 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00251791585491959 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00469317556972839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191418339759207 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00469317556972839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00161623505955609, h_cfl = 2.41492982931008e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00155158565717385, h_cfl = 1.20746491465504e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.642497201509625 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0133919487764742 - 2.517915854919593e-03 1.224744224325435e+00 1.731684811946959e+00 2.964961609563943e-12 1.116839953851922e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00251791585491959, h = 0.00155158565717385 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00251791585491959 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00280338629714183, h_cfl = 4.59018954411889e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00269125084525615, h_cfl = 2.29509477205944e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.586304948714869 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00645759269757464 + 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00469317556972839, h = 0.00269125084525615 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00469317556972839 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00329370868350652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00576967590783085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00329370868350652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00630792607688209 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00406950151209344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00738442641498455 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00368160509779998 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00738442641498455 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00613692542751173, h_cfl = 1.55158565717385e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00589144841041126, h_cfl = 7.75792828586923e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.79705005854611 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228191949944954 - 4.069501512093439e-03 1.224743181155563e+00 1.731094930827531e+00 3.276268145668837e-12 1.207456357121828e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0139404727036317, h_cfl = 2.69125084525615e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0133828537954865, h_cfl = 1.34562542262808e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.97272627673348 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000769861338194889 + 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00406950151209344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00155158565717385 -Current step size = 0.00589144841041126 -Explicit RHS fn evals = 17 -Implicit RHS fn evals = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.00738442641498455 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00269125084525615 +Current step size = 0.0133828537954865 +Explicit RHS fn evals = 15 +Implicit RHS fn evals = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out index 6104496914..293f71a06b 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_0.out @@ -5,7 +5,9 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -13,7 +15,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -21,7 +23,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -29,7 +31,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -40,27 +42,11 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09624183453536866 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.08528677931681904 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813593647933 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813597902462 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414356077108e-06 @@ -69,13 +55,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00379652002112094, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036446592202761, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.3898424442122 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.25735177228299e-09 - 1.029860256095084e-04 1.224744870309104e+00 1.732050195224279e+00 2.442490654175344e-15 1.998401444325282e-15 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0036446592202761 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00101415083067853 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00518139789900563, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00497414198304541, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.2991935421009 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05238430747946e-09 + 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00497414198304541 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00259005701713221 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -86,7 +74,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00283648044081659 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000831432253734158 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -97,7 +85,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00210754859676137 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00321182476501289 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -108,7 +96,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005276093687976734 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00527609368797673 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -122,7 +110,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00374764524588561 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00507712800865492 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -138,13 +126,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232929919553471, h_cfl = 3.6446592202761e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223612722771332, h_cfl = 1.82232961013805e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.613535338303569 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00786490641539247 - 3.747645245885612e-03 1.224743437035635e+00 1.731240118427390e+00 9.108140908153928e-10 5.271953984475886e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00374764524588561, h = 0.00223612722771332 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00430667705281394 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00301494946108935, h_cfl = 4.97414198304541e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00289435148264577, h_cfl = 2.4870709915227e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.581879546766318 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00577768580132696 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00507712800865492, h = 0.00289435148264577 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00507712800865492 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0065243037499778 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -155,7 +145,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0054247406666706 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00550099596971972 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -166,7 +156,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00497751522112794 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00688609768530853 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -177,7 +167,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00486570885974227 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808725355060652 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -191,7 +181,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00598377247359893 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00797147949130069 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -207,27 +197,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105027447745854, h_cfl = 2.23612722771332e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.010082634983602, h_cfl = 1.11806361385666e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.50897196664097 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111685059134392 - 5.983772473598933e-03 1.224741215598295e+00 1.729984808853534e+00 1.411835537368233e-09 7.625806652811207e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0155053464300513, h_cfl = 2.89435148264577e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0148851325728492, h_cfl = 1.44717574132289e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.1428213408423 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000667541461244115 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00598377247359893 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223612722771332 -Current step size = 0.010082634983602 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 49 -NLS iters = 31 -NLS fails = 0 -NLS iters per step = 10.33333333333333 -LS setups = 0 +Current time = 0.00797147949130069 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289435148264577 +Current step size = 0.0148851325728492 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 49 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out index 328ec81fdd..2aee3f230d 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_0.out @@ -6,7 +6,9 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -22,7 +24,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -38,7 +40,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -54,7 +56,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -75,7 +77,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -86,40 +88,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919779191e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.468991359913261e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623937258978928 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.08528677935133332, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.1206137200497772, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.187949946472201e-06 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.187949946472201e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459686493964 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599405794, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295684377, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919782981e-06 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919782981e-06 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849628705 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919779191e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849627783 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165041e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 @@ -130,13 +100,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00383200001519093, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036787200145833, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.7205746392416 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.01038940268245e-09 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0051737023157571, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00496675422312682, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.2274579850205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06050616602604e-09 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0036787200145833 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00102266602925533 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496675422312682 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258636313717292 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -160,7 +132,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00286202603654698 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830350341342969 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -184,7 +156,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00212628203363032 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320720741506377 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -208,7 +180,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00194234603290116 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0052684104176614 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -232,7 +204,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0037817060401928 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506974024873633 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -258,13 +230,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232636455038834, h_cfl = 3.6787200145833e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223330996837281, h_cfl = 1.83936000729165e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.607088867736454 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00816310546643735 - 3.781706040192805e-03 1.224743411877806e+00 1.731225318313145e+00 1.057254284120290e-10 1.072486544018147e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0037817060401928, h = 0.00223330996837281 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00434003353228601 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00301556408827631, h_cfl = 4.96675422312682e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00289494152474525, h_cfl = 2.48337711156341e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.582863857298488 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574336054534255 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506974024873633, h = 0.00289494152474525 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506974024873633 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651721101110895 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -288,7 +262,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00545668851647241 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549369461946601 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -312,7 +286,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00501002652279785 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00687907870170211 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -336,7 +310,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00489836102437921 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808047943447139 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -360,7 +334,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.007964681773481579 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796468177348158 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -386,38 +360,38 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105439796544931, h_cfl = 2.23330996837281e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0101222204683134, h_cfl = 1.1166549841864e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.53238494058595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111125927502444 - 6.015016008565610e-03 1.224741178982448e+00 1.729963189938353e+00 2.336992821483364e-10 1.590565457121329e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0154957149064437, h_cfl = 2.89494152474525e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.014875886310186, h_cfl = 1.44747076237263e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.13857920204277 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668065908928318 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964681773481579 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223330996837281 -Current step size = 0.0101222204683134 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 9 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 25 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 25 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 25 -LS iters per NLS iter = 0.925925925925926 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.00796468177348158 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494152474525 +Current step size = 0.014875886310186 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 45 +NLS iters = 27 +NLS fails = 0 +NLS iters per step = 9 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 25 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 25 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 25 +LS iters per NLS iter = 0.925925925925926 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out index c1763f1a4b..d078c83e65 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_1_1_1.out @@ -6,7 +6,9 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -16,7 +18,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -26,7 +28,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -36,7 +38,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -51,45 +53,27 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623936755399637 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459315580529 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749520049542 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749630505384 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00383218957669227, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00367890199362458, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.7223416657893 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.00910759438516e-09 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224358e+00 2.220446049250313e-16 8.104628079763643e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00367890199362458 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00102271152401565 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00517366381744095, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00496671726474331, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.2270991170743 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06054698449686e-09 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496671726474331 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258634465798116 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -104,7 +88,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00286216252082794 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830344928913016 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -119,7 +103,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00212638212210303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320718431607408 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -134,7 +118,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0019424370224218 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00526837198094255 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -149,7 +133,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.005069703290352819 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506970329035282 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -166,13 +150,15 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232634910508265, h_cfl = 3.67890199362458e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223329514087935, h_cfl = 1.83945099681229e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.607054807317394 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00816471836041274 - 3.781888019234090e-03 1.224743411639714e+00 1.731225239016591e+00 8.112177596331094e-12 2.569811030639357e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00378188801923409, h = 0.00223329514087935 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00434021180445393 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00301556789588097, h_cfl = 4.96671726474331e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00289494518004573, h_cfl = 2.48335863237166e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.582868930469579 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574318202038279 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506970329035282, h = 0.00289494518004573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506970329035282 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651717588037568 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -187,7 +173,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0054568593748936 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -202,7 +188,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00501020034671773 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0068790440278814 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -217,7 +203,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00489853558967376 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808044627760037 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -232,7 +218,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00601518316011344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796464847039855 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -249,38 +235,38 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105441984323178, h_cfl = 2.23329514087935e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0101224304950251, h_cfl = 1.11664757043967e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.53250907582213 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111123036409299 - 6.015183160113438e-03 1.224741178552313e+00 1.729963074226947e+00 8.796519068710040e-12 8.689449160215190e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0154956637485955, h_cfl = 2.89494518004573e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0148758371986517, h_cfl = 1.44747259002286e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.13855574923762 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668069728036845 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601518316011344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223329514087935 -Current step size = 0.0101224304950251 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 44 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.00796464847039855 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494518004573 +Current step size = 0.0148758371986517 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 44 +NLS iters = 26 +NLS fails = 0 +NLS iters per step = 8.66666666666667 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0384615384615385 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out index 2936218971..36aeb3f954 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_0.out @@ -7,7 +7,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -15,7 +15,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -23,7 +23,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -31,7 +31,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -39,7 +39,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -50,7 +50,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -63,15 +63,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00668046506668371, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00641324646401636, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.2729775817686 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.8271448260369e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 6.661338147750939e-16 4.440892098500626e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00641324646401636 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00883306917774521, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0084797464106354, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.97817873492126e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 2.220446049250313e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00330960925761769 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -82,7 +82,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -96,7 +96,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.002943701073172369 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -107,7 +107,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00407919883329965 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -118,7 +118,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -132,7 +132,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00555424552002342 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -148,15 +148,15 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00380572194405752, h_cfl = 6.41324646401636e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00365349306629522, h_cfl = 3.20662323200818e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.569679192401906 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00400567566981559 - 6.516232489625870e-03 1.224740537689633e+00 1.729601039259757e+00 2.278266464372791e-11 2.184104008762233e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00651623248962587, h = 0.00365349306629522 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00651623248962587 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00507000007534828, h_cfl = 8.4797464106354e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00486720007233434, h_cfl = 4.2398732053177e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.573979437195178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228352880442333 + 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486720007233434 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00834297902277348 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0097849308541115 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -170,7 +170,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00772919218763588 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350135077167 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -184,7 +184,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0087813981907289 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132444604769 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -198,7 +198,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0096217015959768 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00894777244166999 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -209,7 +209,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.01198977248687895 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.011989772486879 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -223,7 +223,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0101697255559211 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499325085793 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -239,27 +239,27 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0218479371399207, h_cfl = 3.65349306629522e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0209740196543238, h_cfl = 1.82674653314761e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.74081277115774 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000415148091486067 - 1.016972555592109e-02 1.224734315814070e+00 1.726089959024652e+00 2.482614114285298e-11 2.127358289527592e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0323678799833477, h_cfl = 4.86720007233434e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0310731647840138, h_cfl = 2.43360003616717e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.38419714049497 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250838296790761 + 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0101697255559211 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365349306629522 -Current step size = 0.0209740196543238 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 -NLS fails = 0 -NLS iters per step = 11.6666666666667 -LS setups = 0 +Current time = 0.0134499325085793 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486720007233434 +Current step size = 0.0310731647840138 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 +NLS fails = 0 +NLS iters per step = 13.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out index 408f57f7c2..b38f470086 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_0.out @@ -8,7 +8,7 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -18,7 +18,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -34,7 +34,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -50,7 +50,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -66,7 +66,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -87,7 +87,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -110,15 +110,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00671992349786713, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00645112655795245, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.6407953872611 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.74232503124238e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 4.440892098500626e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00645112655795245 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00883306917774521, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0084797464106354, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.9626087705981e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00332854930458573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -142,7 +142,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00224476004284972 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -166,7 +166,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00410268449154003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -190,7 +190,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00558644359986909 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -214,7 +214,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00655411258356196 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -244,7 +244,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -276,15 +276,15 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00380277404237487, h_cfl = 6.45112655795245e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00365066308067988, h_cfl = 3.22556327897622e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.565895436693863 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0041006787317522 - 6.554112583561956e-03 1.224740487151591e+00 1.729572495016884e+00 2.946975996565016e-11 2.206064220189319e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411258356196, h = 0.00365066308067988 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411258356196 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0050699916222012, h_cfl = 8.4797464106354e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00486719195731315, h_cfl = 4.2398732053177e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.573978480206514 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228354849744912 + 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486719195731315 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00837944412390189 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00978492884970126 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -308,7 +308,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00776613272634767 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350100859744 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -332,7 +332,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324174194482 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132417419448 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -356,7 +356,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771833043398 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0089477718330434 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -380,7 +380,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0102047756642418 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0119897668063641 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -410,7 +410,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.01344992439355806 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499243935581 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -442,38 +442,38 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0219022787840823, h_cfl = 3.65066308067988e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.021026187632719, h_cfl = 1.82533154033994e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.75955303681522 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000413855519066101 - 1.020477566424183e-02 1.224734242922404e+00 1.726048871574017e+00 3.169020601490047e-11 2.147166888732954e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0323678508513491, h_cfl = 4.86719195731315e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0310731368172952, h_cfl = 2.43359597865657e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.38420203883814 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250838084546844 + 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047756642418 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066308067988 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 10.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 33 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 33 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.07407407407407 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.0134499243935581 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719195731315 +Current step size = 0.0310731368172952 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 +NLS fails = 0 +NLS iters per step = 10.6666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 33 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 33 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out index ed26aed4f9..f02b0075ea 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl4_2_1_1.out @@ -8,7 +8,7 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -18,7 +18,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -28,7 +28,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -38,7 +38,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -48,7 +48,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -63,7 +63,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -75,15 +75,15 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00671992595128985, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00645112891323825, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.6408182572164 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.74231985255431e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00883306917774521, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0084797464106354, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.96260358491064e-11 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 0.000000000000000e+00 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00645112891323825 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00332855048222863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -98,7 +98,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00224476082480461 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -113,7 +113,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00410268595181722 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -128,7 +128,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00558644560186202 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -143,7 +143,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -158,7 +158,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.008582732436244913 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -175,15 +175,15 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00380277912621703, h_cfl = 6.45112891323825e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00365066796116835, h_cfl = 3.22556445661913e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.565895986619779 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00410065531616961 - 6.554114938847760e-03 1.224740487151368e+00 1.729572493235030e+00 2.654254593892347e-11 2.225244433162743e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411493884776, h = 0.00365066796116835 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411493884776 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0050699919030929, h_cfl = 8.4797464106354e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00486719222696918, h_cfl = 4.2398732053177e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.573978512006525 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228354784306147 + 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486719222696918 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00837944891943193 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0097849289163063 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -198,7 +198,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00776613670195565 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350101996763 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -213,7 +213,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00881752907477213 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132418322796 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -228,7 +228,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00965718270584085 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0089477718532676 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -243,7 +243,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0102047829000161 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0119897669951233 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -275,38 +275,38 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0219022863431355, h_cfl = 3.65066796116835e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02102619488941, h_cfl = 1.82533398058417e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.75954732478078 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000413856921149471 - 1.020478290001611e-02 1.224734242910499e+00 1.726048863075356e+00 2.852318381485475e-11 2.167570567479515e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0323679044372543, h_cfl = 4.86719222696919e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0310731882597642, h_cfl = 2.43359611348459e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.38421225436447 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250835982466583 + 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047829000161 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066796116835 -Current step size = 0.02102619488941 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.0134499246632141 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719222696918 +Current step size = 0.0310731882597642 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.032258064516129 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out index 976db5cad6..8ac742a1af 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl4.out @@ -5,85 +5,85 @@ Start ERKStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.119441024380336e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.11944102438034e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.179161536570504e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.1791615365705e-05 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 7.72395192071313e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00897229833671632, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00888257535334916, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 86.2502975600706 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.41924903763708e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0217585207051027, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0215409354980517, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 209.163674105925 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.59451001562519e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00888257535334916 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0215409354980517 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.000102986025609508 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00454427370228409 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00871936022483019 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00454427370228409 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0130275473244405 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00898556137895866 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0216439215236612 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00676491754062138 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0216439215236612 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00117830976664616, h_cfl = 8.88257535334916e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0011665266689797, h_cfl = 4.44128767667458e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.13132752862489 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 2.46247515531987, kflag = 5 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0011665266689797 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00676491754062138 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00189997443642627, h_cfl = 2.15409354980517e+28 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00215409354980517, h_cfl = 1.07704677490259e+28 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.1 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 3.14020178746167, kflag = 5 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00215409354980517 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0216439215236612 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000686249360099358 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000964623445531577 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000686249360099358 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00139544215549261 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00126951269458921 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225707957541468 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002257079575414679 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225707957541468 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00135115207491398, h_cfl = 1.1665266689797e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0011665266689797, h_cfl = 5.8326333448985e+26 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00222404807423718, h_cfl = 2.15409354980517e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00215409354980517, h_cfl = 1.07704677490259e+27 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 1 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000728262871970895 - 1.269512694589208e-03 1.224744706901909e+00 1.731957760691857e+00 7.771561172376096e-14 3.164135620181696e-13 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00126951269458921, h = 0.0011665266689797 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00126951269458921 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000309364878860331 + 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00225707957541468, h = 0.00215409354980517 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00225707957541468 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185277602907906 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00311871699533675 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00185277602907906 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00354953570529778 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00243603936356891 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00441117312521985 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00214440769632398 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00441117312521985 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368497103587255, h_cfl = 1.1665266689797e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00364812132551383, h_cfl = 5.8326333448985e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.12733641032369 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000728392353011924 - 2.436039363568907e-03 1.224744265725872e+00 1.731708225192427e+00 1.558753126573720e-13 5.899725152858082e-13 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00780187598998323, h_cfl = 2.15409354980517e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0077238572300834, h_cfl = 1.07704677490259e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.5856647130214 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000313007462932101 + 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00243603936356891 -Steps = 3 -Step attempts = 4 -Stability limited steps = 0 -Accuracy limited steps = 4 -Error test fails = 1 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.0011665266689797 -Current step size = 0.00364812132551383 -RHS fn evals = 21 +Current time = 0.00441117312521985 +Steps = 3 +Step attempts = 4 +Stability limited steps = 0 +Accuracy limited steps = 4 +Error test fails = 1 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00215409354980517 +Current step size = 0.0077238572300834 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out index 11225e19d0..8dbb14274c 100644 --- a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out +++ b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl4.out @@ -23,7 +23,7 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0008 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -65,7 +65,7 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -79,7 +79,7 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00085 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -247,13 +247,13 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0026875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -261,7 +261,7 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.00275, h = 0.000249999999999999 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00285 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -276,17 +276,17 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 9.970030029929939e-01 2.993993026279007e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End ForcingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_0.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_0.out index eaf5a34b7a..afe252a55d 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_0.out @@ -48,21 +48,21 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.32342730346899e-12 9.774571052271429e-08 9.774571052271400e-08 2.646977960169689e-23 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_1.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_1.out index 715874b4f6..3584914a16 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_1.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_1.out @@ -48,21 +48,21 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.11748368555039e-12 9.774571052271429e-08 9.774571052271410e-08 1.323488980084844e-22 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_2.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_2.out index 46c5401173..e5f732b3a1 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_2.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_2.out @@ -87,17 +87,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.01047602983307e-10 1.281744384765625e-06 1.281744384764889e-06 3.388131789017201e-20 --------------------------------------------------------------------- -Current time = 1.28174438476563e-06 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 1.220703125e-06 -Current step size = 2.44140625e-05 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 1.28174438476563e-06 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 1.220703125e-06 +Current step size = 2.44140625e-05 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_3.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_3.out index 27c1f49e3d..142f8232ec 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_3.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_3.out @@ -87,17 +87,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.64685460693799e-13 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 29 -Number of stages used = 9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 29 +Number of stages used = 9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_4.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_4.out index 0c21debed6..c16a985989 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_4.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_4.out @@ -51,17 +51,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.64685460693799e-13 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 14 -Number of stages used = 4 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 14 +Number of stages used = 4 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_5.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_5.out index d64a4302a2..8fc8c2a642 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_5.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl4_5.out @@ -87,17 +87,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.30870562015982e-14 8.765030586579745e-09 8.765030586579742e-09 3.308722450212111e-24 --------------------------------------------------------------------- -Current time = 8.76503058657974e-09 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 8.25637088037414e-09 -Current step size = 1.65127417607483e-07 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 8.76503058657974e-09 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 8.25637088037414e-09 +Current step size = 1.65127417607483e-07 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out index 13a83558a0..e5643c31f3 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_0.out @@ -11,88 +11,88 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00075 @@ -100,37 +100,37 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788660851858, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157114417783, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.30812367862605 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161864018577e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00172842521625946, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928820760908, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.2464113041003 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321594358247e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000269127317202885 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000615436341398557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000588523609678269 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000615436341398557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000642349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000682718170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00234276892422077, h_cfl = 2.69127317202885e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00224905816725194, h_cfl = 1.34563658601442e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.35685574629519 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.06135212545027e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00352358095495283, h_cfl = 2.69127317202885e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00338263771675472, h_cfl = 1.34563658601442e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.5689125574892 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.52483663017869e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -138,20 +138,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00075, h = 0.00025 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00075 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00085 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0009 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00209267799391301, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00200897087415649, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.03588349662598 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53493868930233e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00351400165016488, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00337344158415828, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.4937663366331 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.61386796390857e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -164,20 +164,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201946784487499, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193868913107999, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.81606739323999 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185275272059e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0033898507755688, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00325425674454605, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.76277023363816 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846971899371e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00175 @@ -185,20 +185,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000416666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00154166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00158333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164583333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232511042063515, h_cfl = 4.16666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223210600380974, h_cfl = 2.08333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.35705440914338 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.18475298463355e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00390124994980181, h_cfl = 4.16666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00374519995180974, h_cfl = 2.08333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.98847988434338 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.3543510588853e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -216,10 +216,10 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212147380375288, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00203661485160277, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14645940641107 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53544085372349e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0035587375143278, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00341638801375469, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.6655520550188 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.65337543179745e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -232,20 +232,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00190501389643213, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00182881334057484, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.48644002172452 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335258683e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00319459596981735, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00306681213102466, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.20043639307398 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044822996605e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00275 @@ -253,20 +253,20 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000416666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00254166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00258333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264583333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232493376520392, h_cfl = 4.16666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223193641459576, h_cfl = 2.08333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.35664739502983 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.18531991537069e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00389739554807504, h_cfl = 4.16666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00374149972615204, h_cfl = 2.08333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.9795993427649 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.38201984966596e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -284,31 +284,31 @@ Using Ex-MRI-GARK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212127354646127, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00203642260460282, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14569041841128 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53635312385524e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00355535798661042, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003413143667146, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.652574668584 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.6876838675859e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out index a8093cbc91..5e11b1ea8d 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_0.out @@ -12,88 +12,88 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 @@ -113,37 +113,37 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788663195465, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157116667647, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.30812369387529 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161861252328e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00172842527587933, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928826484416, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.2464116920312 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321473334872e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00215407159676274, h_cfl = 1.85793983869552e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00206790873289223, h_cfl = 9.28969919347758e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1301167552558 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68176961607164e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00324007174976714, h_cfl = 1.85793983869552e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046887977645, h_cfl = 9.28969919347758e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.7414940731362 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824276166962e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 @@ -163,20 +163,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024220627, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193296983251802, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.79890949755406 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151446454876e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00338105535169012, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581313762252, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.73743941286757 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749033047e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -203,20 +203,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00229974696142012, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00220775708296332, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.62327124888996 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185281911249e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00386034158888383, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00370592792532848, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1177837759854 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846977432031e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 @@ -236,20 +236,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212728077468874, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204218954370119, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12656863110357 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234106734159e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356962389566371, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683893983716, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2805168195115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78264578729677e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00166666666666667 @@ -269,20 +269,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212723636931111, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204214691453867, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12644074361601 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85298346722214e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356837598914512, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342564094957932, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2769228487379 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663319968874e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -309,20 +309,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212718371220666, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020420963637184, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1262890911552 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375330832108e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356718377157207, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342449642070918, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2734892621276 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044820229997e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00233333333333333 @@ -342,20 +342,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711998329191, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204203518396023, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1261055518807 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467352756314e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356605473112958, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342341254188439, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2702376256532 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407653932745e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00266666666666667 @@ -375,20 +375,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212704593542942, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204196409801224, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12589229403673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574823479096e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356498634984438, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342238689585061, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2671606875518 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751566853444e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -408,22 +408,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out index ed06874f92..d6c2f61fd6 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_0.out @@ -13,88 +13,88 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 @@ -127,37 +127,37 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788639759392, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157094169016, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.30812354138289 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161888914814e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00172842516515673, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928815855046, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.2464109715882 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321698092567e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00215407150105728, h_cfl = 1.85793983869552e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00206790864101499, h_cfl = 9.28969919347758e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1301162607445 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68177094387627e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0032400719897559, h_cfl = 1.85793983869552e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046911016567, h_cfl = 9.28969919347758e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.7414953131613 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824231215243e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 @@ -190,20 +190,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024912287, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193296983915796, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.79890951747387 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151475224181e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00338105525334132, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581304320767, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.73743912962302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410748687262e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -243,20 +243,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00229974695125317, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00220775707320304, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.62327121960914 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185279698184e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00386034163382714, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00370592796847405, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1177839054222 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469746657e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 @@ -289,20 +289,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212728076980462, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204218953901244, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12656861703731 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234106734158e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356962387594432, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683892090655, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2805167627197 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.7826458287928e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00166666666666667 @@ -335,20 +335,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212723636400783, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204214690944752, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12644072834256 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85298353361799e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356837602351592, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342564098257529, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2769229477259 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663313052637e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -388,20 +388,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212718370674266, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204209635847296, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12628907541887 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375339685247e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356718375114552, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0034244964010997, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2734892032991 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.7904482230495e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00233333333333333 @@ -434,20 +434,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997753779, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204203517843628, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12610553530885 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467361609875e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356605473330791, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0034234125439756, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2702376319268 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407655316113e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00266666666666667 @@ -480,20 +480,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212704593685159, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204196409937753, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12589229813259 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574823479083e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0035649863610007, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342238690656067, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.267160719682 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751564086545e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -526,33 +526,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952843819e+00 1.731531270273608e+00 1.053868103895184e-11 3.752553823233029e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out index 5891b57e8d..2472bbcd1b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_1_1_1.out @@ -13,88 +13,88 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 @@ -118,37 +118,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788590543756, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157046922006, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.3081232211496 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161947005909e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0017284251821912, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928817490355, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.246411082427 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321663514006e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0021540716514567, h_cfl = 1.85793983869552e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00206790878539843, h_cfl = 9.28969919347758e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1301170378603 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68176978204408e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00324007195283482, h_cfl = 1.85793983869552e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046907472143, h_cfl = 9.28969919347758e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.7414951223896 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824238130778e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 @@ -172,20 +172,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351019053982, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193296978291823, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.79890934875468 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151478542089e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00338105526484789, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581305425397, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.73743916276192 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749724022e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -216,20 +216,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00229974698355001, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00220775710420801, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.62327131262405 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185266415239e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00386034163600841, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00370592797056808, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1177839117042 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846973280864e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 @@ -253,20 +253,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212728075962138, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204218952923652, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12656858770958 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234113366686e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356962388134533, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683892609152, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2805167782746 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78264580801967e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00166666666666667 @@ -290,20 +290,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00166666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212723638487479, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020421469294798, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1264407884394 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.8529833343099e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0035683760081954, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342564096786758, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2769229036028 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663316506319e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -334,20 +334,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212718370342642, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204209635528936, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12628906586808 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335237828e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356718377337255, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342449642243764, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2734892673129 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044818147349e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00233333333333333 @@ -366,20 +366,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997252938, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020420351736282, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12610552088462 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467369349205e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356605480316245, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342341261103595, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2702378331079 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407635032002e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00266666666666667 @@ -398,20 +398,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212704593646759, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204196409900889, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12589229702666 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574827502414e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356498659229012, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342238712859851, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2671613857955 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751497127544e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -430,33 +430,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out index 45f341cbc8..5e571224e1 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_0.out @@ -12,75 +12,75 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.28311891337164e-06, h_cfl = 1.49600681952621e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.23179415683677e-06, h_cfl = 7.48003409763106e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.10800420549587e-05, h_cfl = 1.23179415683677e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.02368403727603e-05, h_cfl = 6.15897078418387e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000746121187338192, h_cfl = 2.02368403727603e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000404736807455207, h_cfl = 1.01184201863802e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00147458509968142, h_cfl = 4.04736807455207e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00141560169569416, h_cfl = 2.02368403727603e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0027980429339929, h_cfl = 4.04736807455207e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00268612121663319, h_cfl = 2.02368403727603e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -90,10 +90,10 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000822166909540028, h_cfl = 9.64611945545987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00065198560516465, h_cfl = 9.64611945545987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000192922389109197, h_cfl = 4.82305972772994e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -113,37 +113,37 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.000192922389109197 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000836454572916771, h_cfl = 1.92922389109198e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029963900001, h_cfl = 9.64611945545988e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.16227682908068 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270566101614e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181052093431, h_cfl = 1.92922389109198e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093810009694, h_cfl = 9.64611945545988e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669622665817 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527834040216e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0019660248682391, h_cfl = 8.9144350136573e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710662895625, h_cfl = 8.9144350136573e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00178288700273146, h_cfl = 4.45721750682865e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098304156312e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05765842323553e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00071793326075423 @@ -163,20 +163,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00071793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00071793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293894332279, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00146202138558988, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18324631078177 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742283557524e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0025572582820009, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496795072086, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.70350030381214 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697163888963e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -204,20 +204,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00257210990416366, h_cfl = 4.35866521508459e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00246922550799711, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.66509558809782 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857379327764e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702712074304, h_cfl = 4.35866521508459e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00414434603591332, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.50829171639623 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.2026455278835e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00143586652150846 @@ -237,20 +237,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225773857955658, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216742903637431, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68410001891712 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792597983481e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378836644998163, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683179198237, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8935152074542 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382562764265e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00171793326075423 @@ -270,20 +270,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188599062501867, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181055100001793, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41887450062079 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821343573973e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316368170790648, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303713443959022, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7674320187887 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107137187604e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -311,20 +311,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00220576582519839, h_cfl = 4.35866521508458e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00211753519219046, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821940364228 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564303104e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0036985957599436, h_cfl = 4.35866521508458e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00355065192954585, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14619098814395 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102673e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00243586652150846 @@ -344,20 +344,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553829679, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216725167649184, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68347123197489 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919341947655e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460754926259, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363322324729209, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8807219773842 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187823725386e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00271793326075423 @@ -377,20 +377,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188582026065544, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038745022922, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41829467405511 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48966846604958e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0031606784621389, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303425132365335, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7572106224461 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674516553139e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -411,22 +411,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out index 2122f3787e..6a8796550c 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_0.out @@ -13,75 +13,75 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.28311891337164e-06, h_cfl = 1.49600681952621e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.23179415683677e-06, h_cfl = 7.48003409763106e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.10800420549587e-05, h_cfl = 1.23179415683677e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.02368403727603e-05, h_cfl = 6.15897078418387e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000746121187338192, h_cfl = 2.02368403727603e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000404736807455207, h_cfl = 1.01184201863802e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00147458509968142, h_cfl = 4.04736807455207e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00141560169569416, h_cfl = 2.02368403727603e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0027980429339929, h_cfl = 4.04736807455207e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00268612121663319, h_cfl = 2.02368403727603e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -91,10 +91,10 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000822166909540028, h_cfl = 9.64611945545987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00065198560516465, h_cfl = 9.64611945545987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000192922389109197, h_cfl = 4.82305972772994e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -127,37 +127,37 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.000192922389109197 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000836454563053799, h_cfl = 1.92922389109198e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000802996380531647, h_cfl = 9.64611945545988e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.1622767800016 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270599296684e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181049706912, h_cfl = 1.92922389109198e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093807718636, h_cfl = 9.64611945545988e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669610790272 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527847871496e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00196602415616299, h_cfl = 8.9144350136573e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710718901405, h_cfl = 8.9144350136573e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00178288700273146, h_cfl = 4.45721750682865e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098774423023e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05764977862688e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00071793326075423 @@ -190,20 +190,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00071793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00071793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293912788855, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00146202156277301, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18324693894206 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742295729181e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00255725810521718, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496778100849, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.70349970213761 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697163888963e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -244,20 +244,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00257210975511551, h_cfl = 4.35866521508459e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00246922536491089, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.66509525981791 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857377999926e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702724698721, h_cfl = 4.35866521508459e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00414434615710772, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.50829199445018 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.20264559704176e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00143586652150846 @@ -290,20 +290,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225773857827753, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216742903514643, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68410001456395 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792595770338e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378836643134772, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683177409381, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8935151440347 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382590428546e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00171793326075423 @@ -336,20 +336,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188599063091926, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181055100568248, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41887452070312 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821339147555e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316368171320478, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303713444467659, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7674320368212 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107137187599e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -390,20 +390,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0022057658204453, h_cfl = 4.35866521508458e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00211753518762749, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821939317356 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912565188417e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00369859575621362, h_cfl = 4.35866521508458e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00355065192596507, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14619097992863 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102668e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00243586652150846 @@ -436,20 +436,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0022575538397657, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216725168617507, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68347126630447 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919337520793e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460751626231, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363322321561182, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8807218650694 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187865227148e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00271793326075423 @@ -482,20 +482,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188582026439872, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038745382277, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.4182946867952 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.4896684217788e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316067845377299, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303425131562207, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7572105939732 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674544222306e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -529,33 +529,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out index b0dd53d7cb..e71848eb54 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_2_1_1.out @@ -13,75 +13,75 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.28311891337164e-06, h_cfl = 1.49600681952621e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.23179415683677e-06, h_cfl = 7.48003409763106e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.10800420549587e-05, h_cfl = 1.23179415683677e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.02368403727603e-05, h_cfl = 6.15897078418387e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000746121187338192, h_cfl = 2.02368403727603e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000404736807455207, h_cfl = 1.01184201863802e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00147458509968142, h_cfl = 4.04736807455207e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00141560169569416, h_cfl = 2.02368403727603e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0027980429339929, h_cfl = 4.04736807455207e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00268612121663319, h_cfl = 2.02368403727603e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -91,10 +91,10 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000822166909540028, h_cfl = 9.64611945545987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00065198560516465, h_cfl = 9.64611945545987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000192922389109197, h_cfl = 4.82305972772994e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000435866521508459 @@ -118,37 +118,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000435866521508459, h = 0.000192922389109197 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000836454586067597, h_cfl = 1.92922389109198e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000802996402624893, h_cfl = 9.64611945545988e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.16227689452043 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270521840867e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181049408638, h_cfl = 1.92922389109198e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093807432293, h_cfl = 9.64611945545988e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669609306034 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527849600167e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00196602451800324, h_cfl = 8.9144350136573e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710653605349, h_cfl = 8.9144350136573e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00178288700273146, h_cfl = 4.45721750682865e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098525457996e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05766015214637e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00071793326075423 @@ -172,20 +172,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00071793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00071793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293903337533, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00146202147204032, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18324661727106 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742291302014e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00255725829633592, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496796448249, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.70350035260068 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697188089907e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 @@ -217,20 +217,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000435866521508459 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00257210983795274, h_cfl = 4.35866521508459e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00246922544443463, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.66509544226765 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857377998397e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702708911972, h_cfl = 4.35866521508459e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00414434600555493, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.50829164674558 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.20264560390151e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00143586652150846 @@ -254,20 +254,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00143586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225773856409145, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216742902152779, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68409996628235 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792604618559e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378836643389049, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683177653487, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8935151526889 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382583496486e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00171793326075423 @@ -291,20 +291,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00171793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188599063886928, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181055101331451, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41887454776063 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821336926928e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316368171602277, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303713444738186, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.767432046412 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107130244008e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 @@ -336,20 +336,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00220576581780339, h_cfl = 4.35866521508458e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00211753518509126, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821938735472 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564738839e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00369859575899812, h_cfl = 4.35866521508458e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0035506519286382, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14619098606152 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731336310518e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00243586652150846 @@ -368,20 +368,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00243586652150846 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225755382503546, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216725167203404, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68347121617083 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919346019151e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460766287073, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036332233563559, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8807223640438 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187680275988e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00271793326075423 @@ -400,20 +400,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00271793326075423 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188582027133169, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038746047842, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41829471039121 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48966840657168e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316067866802302, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0030342515213021, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7572113231624 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674154840902e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 @@ -433,33 +433,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out index ef1e21b0c9..382a25595b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_3.out @@ -11,88 +11,88 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 @@ -101,37 +101,37 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767415395623, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296718779798, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516412320786 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446943643145e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644955091275, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339156887624, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023500218333 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.1073606623499e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063442151346e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201473098944e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.61893478145414e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.26243167642398e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 @@ -140,54 +140,54 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540436436273072, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700684587, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06415360964231e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411000436167, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274560418721, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35986272365834 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967392272e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894930954125, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0027349913371596, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948798012 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217695212445e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368286334853836, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554881459682, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55036709681534 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441339031e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161207725, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754759416, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379604302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -206,14 +206,14 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179454037894, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275876378, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126460631 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465401153773e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859543384, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305161649, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175269415 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578037e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 @@ -222,20 +222,20 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586865967736, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391329027, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912717483852 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718289296315e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413330155537, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396796949315, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148798855993 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555340877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 @@ -246,18 +246,18 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152476531, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0022751918637747, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.2751918637747 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462524817 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694862509, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639067068008, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639067068009 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738631459e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success @@ -276,14 +276,14 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842408872, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008712517, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873347854196 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661417999388e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162228844, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0054811887573969, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459566152 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943502574e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 @@ -292,20 +292,20 @@ Using Ex-MRI-SR method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012112722, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688011628213, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330043605798 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796475517721e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410310847327, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898413434, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347711905038 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093874370946e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 @@ -316,39 +316,39 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0023698549069082, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071063187, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506071063187 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876033 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023653927, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0038127554270777, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8127554270777 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747736684e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out index ba60f42687..4637bef3ee 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_0.out @@ -12,88 +12,88 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -111,37 +111,37 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767421526617, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296724665552, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516414537051 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446936450925e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954103465, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339155939327, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023499861254 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086117328e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063440013171e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201474387834e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.64642683851015e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.72214948702082e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -159,54 +159,54 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540433024096763, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00064049570008734, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06444968358671e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29098683194423e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411351284076, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274897232713, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.3598704075976 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967004998e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0028489493154905, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134287088, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.2394995010096 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217689507079e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368285933325978, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554495992939, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55035995521213 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584443552036e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161704857, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755236663, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380488506 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295289096e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -234,14 +234,14 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0026817945414125, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522759756, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126626 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465401596383e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859501769, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305121698, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175202832 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264439719e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -259,20 +259,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586867376102, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643392681058, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912722553967 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9871828265712e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413331621246, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396798356396, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799383648 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155541509221e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -292,18 +292,18 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999151874141, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519185799175, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519185799175 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462878905 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694270211, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066499403, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639066499403 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769775e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -331,14 +331,14 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842638042, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0032692400893252, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873348220867 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661419327358e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162709705, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118876201316, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460335528 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943364243e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -356,20 +356,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925011257609, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688010807304, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330040527392 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796479944291e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410311448591, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898990647, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347712121493 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093867454425e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -389,18 +389,18 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985491039622, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071398037, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506071398037 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876031 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023430549, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275542493327, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275542493328 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747681351e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -415,22 +415,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out index a7f7d497b5..b11fbb4359 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_0.out @@ -13,88 +13,88 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -125,37 +125,37 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767423884691, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296726929303, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516415389461 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446933684687e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954103465, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339155939327, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023499861254 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086117328e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063439190795e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201474387834e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.55331130299543e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -186,54 +186,54 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540438629449822, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00064049570008734, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06396343075831e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153410775300205, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274344288197, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35985779294331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080966507076e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0028489493163919, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134373623, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949950298376 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217688642629e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368286591468766, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353555127810015, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55037166098684 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584445101141e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161640769, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755175139, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380374519 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295289096e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -274,14 +274,14 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179454214062, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452276045499, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126742499 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402038996e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859461963, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305083485, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175139142 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578036e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -312,20 +312,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586868558598, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643393816254, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912726810953 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718277124459e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413332674699, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396799367711, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799762892 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155531135481e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -358,18 +358,18 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999151395071, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519185339268, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519185339268 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462967428 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540693893356, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066137622, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639066137622 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738714448e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -410,14 +410,14 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0034054584324537, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924009515555, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873349192592 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.0966141711407e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162965557, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118876446935, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460744893 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943364242e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -448,20 +448,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012523203, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688012022275, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330045083531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473304433e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410308302782, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593895970671, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347710989002 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093902037012e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -494,18 +494,18 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985490509539, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070889158, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070889158 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678964561 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0039716202469825, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0038127554371032, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8127554371032 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747764349e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -533,33 +533,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out index b73a917f1e..25e46ed5b3 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_4_1_1.out @@ -13,88 +13,88 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -116,37 +116,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767419404349, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296722628175, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516413769882 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9544693894054e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954060517, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339155898096, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60234998457288 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086981777e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063440753308e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201474443873e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.97059615282481e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.58707893979177e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -168,54 +168,54 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540438628965383, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700061373, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06396343075831e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153410775187103, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274344179619, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35985779046625 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967060323e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894931567078, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134304395, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949950140443 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217689334189e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368286591897724, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353555128221815, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55037166861632 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584443552036e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0055943516175338, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755283245, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380574809 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295219939e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -247,14 +247,14 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179454272974, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452276102055, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126836759 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465400268544e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859488812, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305109259, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751821 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264439719e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -276,20 +276,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586865891402, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391255746, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912717209049 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9871828929492e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413331973524, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396798694583, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799510469 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155538046202e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -313,18 +313,18 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152469835, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186371042, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519186371042 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462699102 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694153104, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0038163906638698, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8163906638698 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738741097e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -356,14 +356,14 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842134062, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240084487, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733474145 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661420209099e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162711946, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118876203468, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460339115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943501253e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -380,20 +380,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925010843556, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688010409814, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330039036803 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796482152001e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410310840304, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898406691, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347711902509 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.3309387435038e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -412,18 +412,18 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985491190846, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071543212, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506071543212 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408679042059 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023669989, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275542723189, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8127554272319 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747704935e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -437,33 +437,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out index 957022424a..3249b190c7 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_0.out @@ -12,88 +12,88 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -111,37 +111,37 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674146882, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296718100672, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516412065063 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446944473016e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0018264495522012, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339157011316, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60235002649086 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736063641641e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063442398059e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201472930827e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.48338628629324e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.99229058165029e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -159,54 +159,54 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540432388135551, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700762489, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29095981789821e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411416504109, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274959843945, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35987183598513 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967336947e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894930972153, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499133733267, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948837495 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217695039555e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368285859317075, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554424944392, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.5503586388845 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584440896429e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161010885, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754570449, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379254201 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296533912e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -234,14 +234,14 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453926307, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275769254, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126282091 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402038998e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859601897, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305217821, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175363036 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578037e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -259,20 +259,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0022358686600482, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391364627, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912717617351 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718289296315e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0037541333082359, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396797590646, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799096492 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155548425051e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -292,18 +292,18 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152431863, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186334588, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519186334588 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462790385 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694524711, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066743723, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639066743723 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769776e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -331,14 +331,14 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842196238, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008508389, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873347513982 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661419770007e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162447825, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875949912, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459916521 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.8823094350257e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -356,20 +356,20 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012601411, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688012097355, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330045365081 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473304431e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410312726446, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593900217388, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347712581521 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093853621378e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -389,18 +389,18 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985490499306, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070879333, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070879333 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678698962 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162022823251, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275541910321, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275541910321 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747819679e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -415,22 +415,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out index 9d1b4e561e..51fbb9f755 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_0.out @@ -13,88 +13,88 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -125,37 +125,37 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767413744971, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296717195172, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516411724099 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446945579512e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954919482, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339156722703, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60235001562323 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736069692788e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063442727009e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201473323099e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.0598258553317e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -186,54 +186,54 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540434256346169, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700580718, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06434270796446e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29096994816547e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411224445903, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274775468067, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35986762970785 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967502921e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894930863985, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499133629426, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948600595 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217696076895e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682860787673, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554635616608, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.5503625420419 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441339031e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161271812, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0053705775482094, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379718289 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -274,14 +274,14 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453850899, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275696863, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126161438 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402924224e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859454475, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305076296, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175127161 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264716353e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -312,20 +312,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586866744231, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643392074462, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912720279232 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718285976718e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413329830301, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396796637089, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148798738908 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.2815555879879e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -358,18 +358,18 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152099744, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186015755, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519186015755 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261463144475 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694911362, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639067114908, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639067114908 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769776e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -410,14 +410,14 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842578879, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008875724, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873348126208 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661418442034e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162176685, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875689618, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459482698 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943502569e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -448,20 +448,20 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925014330655, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688013757429, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330051590359 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796464451287e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410312096403, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593899612547, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347712354705 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093860537893e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -494,18 +494,18 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0023698548978112, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070189875, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070189875 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678698961 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023070953, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275542148115, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275542148115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747847345e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -533,33 +533,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out index 08b50c239c..7963e4cd19 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_5_1_1.out @@ -13,88 +13,88 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -116,37 +116,37 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767411151089, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296714705045, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516410786448 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446948622374e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954575896, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0017533915639286, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60235000320309 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736076608383e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063443631622e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201473771408e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.09359349217565e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -168,54 +168,54 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0, h = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540432387753103, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00064049570037298, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29095981789821e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0015341141652673, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274959865661, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35987183648054 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967226298e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894931008209, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499133767881, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948916461 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217694693776e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368285859108471, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554424744132, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55035863517426 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441781632e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161169272, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754722501, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.9501537953591 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -247,14 +247,14 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453937895, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275780379, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126300632 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402481611e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859493757, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305114007, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175190013 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264716353e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -276,20 +276,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.001, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586867443179, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643392745452, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912722795446 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718282655609e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413330175526, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396796968505, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148798863189 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555335336e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -313,18 +313,18 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999151850322, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0022751918577631, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.2751918577631 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462964438 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694794284, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639067002513, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639067002513 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738741012e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -356,14 +356,14 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842758181, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924009047854, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.4487334841309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661418438159e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162341223, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875847574, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459745958 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943362808e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -380,20 +380,20 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 15, tn = 0.002, h = 0.000266666666666667 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012561916, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0019768801205944, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330045222899 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473298381e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410309562602, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593897180098, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347711442537 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093888181656e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -412,18 +412,18 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985490510528, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070890106, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070890107 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00039340867877552 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162024146058, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275543180215, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275543180216 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747815249e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -437,33 +437,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out index ac3a1e0899..4c6f02943b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl4_6.out @@ -12,88 +12,88 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.864518129765e-09 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.28709714933094e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.47191726142557e-06, h_cfl = 1.71612953244125e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.41304057096855e-06, h_cfl = 8.58064766220625e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.681308618402e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.19075505353205e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.71612953244125e-08, h = 1.41304057096855e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71612953244125e-08 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.23681580808686e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.82377523711831e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.23681580808686e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.6498563790554e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.43020186629296e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.07694172355082e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.43020186629296e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.4181763240274e-05, h_cfl = 1.41304057096855e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.3214492710663e-05, h_cfl = 7.06520285484273e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.64946076630599e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.14816983402221e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.43020186629296e-06, h = 2.3214492710663e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.43020186629296e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.30374482216245e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.07159989505582e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.30374482216245e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.53588974926908e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.4644694576956e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.88410713992902e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.4644694576956e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000771472782864884, h_cfl = 2.3214492710663e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000855905593249047, h_cfl = 2.3214492710663e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00046428985421326, h_cfl = 1.16072463553315e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14080597303478e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.14262894570205e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.4644694576956e-05, h = 0.00046428985421326 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.4644694576956e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000256789621683586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00021036063626226 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000256789621683586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000303218607104912 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000488934548790216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000372862085236901 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000488934548790216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00157946110325732, h_cfl = 4.6428985421326e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00151628265912703, h_cfl = 2.3214492710663e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.26581045303342 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.82622499663382e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00288622829914809, h_cfl = 4.6428985421326e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00277077916718216, h_cfl = 2.3214492710663e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.9677788390988 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.65015983148827e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000488934548790216, h = 1.10654512097837e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000488934548790216 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000494467274395108 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00049336072927413 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000494467274395108 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000495573819516087 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000497233637197554 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000962707187050096, h_cfl = 1.10654512097837e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000777249458676139, h_cfl = 1.10654512097837e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000221309024195674, h_cfl = 5.53272560489185e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.88988696830735e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.14763377122855e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -104,37 +104,37 @@ Using MERK method [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0, h = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000110654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.85236096782697e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000110654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517404 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000165981768146756 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000847236636888416, h_cfl = 2.21309024195674e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000813347171412879, h_cfl = 1.10654512097837e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.67516496161378 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.42509408072305e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00179576825245656, h_cfl = 2.21309024195674e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0017239375223583, h_cfl = 1.10654512097837e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.78972989747606 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.42660624572215e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000221309024195674, h = 0.000778690975804325 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000221309024195674 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000610654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532785414517404 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000610654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000688523609678269 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000805327256048918 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000999999999999999 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00333872304915548, h_cfl = 7.78690975804325e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00320517412718926, h_cfl = 3.89345487902163e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.11610539582608 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000144544246230492 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00501984823563698, h_cfl = 7.78690975804325e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0048190543062115, h_cfl = 3.89345487902163e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.18866078579349 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28133550933019e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -159,10 +159,10 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00312348437624041, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0029985450011908, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.9970900023816 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.45666561975625e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00524250353739905, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00503280339590309, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.0656067918062 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.01287327936132e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -175,18 +175,18 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00272959285938336, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00262040914500802, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.62040914500802 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393262822583746 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00457966827643964, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00439648154538205, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.39648154538205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44648426343788e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -211,10 +211,10 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00300491751116599, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288472081071935, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.76944162143871 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.45761722074789e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00503826991436237, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00483673911778788, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.67347823557576 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.07252656108775e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -227,40 +227,40 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263990831138949, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00253431197893391, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.53431197893391 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393409923004339 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00442511206059072, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00424810757816709, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.24810757816709 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45555066464345e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 6 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 6 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out index 50604f7a04..95a7bd117e 100644 --- a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out +++ b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl4.out @@ -25,7 +25,7 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0008 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -67,7 +67,7 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0005, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0005 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -81,7 +81,7 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 0.00075, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00075 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00085 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -257,13 +257,13 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.0025, h = 0.00025 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0025 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0026875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success @@ -271,7 +271,7 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.00275, h = 0.000249999999999999 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00275 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00285 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success @@ -288,17 +288,17 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 9.969970190148773e-01 2.989985090406932e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End SplittingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_0.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_0.out index 7418343fdf..3355d3cda6 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_0.out @@ -36,17 +36,17 @@ Start SPRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 3.999718759228028e-01 5.999859381323369e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_1.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_1.out index 3049f6a860..06ef5c971e 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_1.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl4_1.out @@ -36,17 +36,17 @@ Start SPRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 3.999718759228029e-01 5.999859381323370e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl4_0.out b/test/unit_tests/logging/test_logging_cvode_lvl4_0.out index 492d2b4ade..3d16a85b4b 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl4_0.out @@ -62,20 +62,20 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071475541013, qprime = 2, qwait = 2 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl4_1_0.out b/test/unit_tests/logging/test_logging_cvode_lvl4_1_0.out index 6dd3e237fd..6eb4ae1ca0 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl4_1_0.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl4_1_0.out @@ -103,31 +103,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071470293087, qprime = 2, qwait = 2 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl4_1_1.out b/test/unit_tests/logging/test_logging_cvode_lvl4_1_1.out index c0cc901d80..0f751a94ec 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl4_1_1.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl4_1_1.out @@ -74,31 +74,31 @@ Using dense direct linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071421416009, qprime = 2, qwait = 2 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl4_0.out b/test/unit_tests/logging/test_logging_cvodes_lvl4_0.out index dc2c7fcd24..d66176e2ed 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl4_0.out @@ -62,20 +62,20 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071475541013, qprime = 2, qwait = 2 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl4_1_0.out b/test/unit_tests/logging/test_logging_cvodes_lvl4_1_0.out index a310509282..1397d756ef 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl4_1_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl4_1_0.out @@ -103,31 +103,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071470293087, qprime = 2, qwait = 2 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl4_1_1.out b/test/unit_tests/logging/test_logging_cvodes_lvl4_1_1.out index a5ee87e2e5..65c97f20dc 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl4_1_1.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl4_1_1.out @@ -74,31 +74,31 @@ Using dense direct linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071421416009, qprime = 2, qwait = 2 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_ida_lvl4_0.out b/test/unit_tests/logging/test_logging_ida_lvl4_0.out index 536faa3ad8..c9a7a88a03 100644 --- a/test/unit_tests/logging/test_logging_ida_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_ida_lvl4_0.out @@ -147,31 +147,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240764380389, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_ida_lvl4_1.out b/test/unit_tests/logging/test_logging_ida_lvl4_1.out index 74649ea001..b3334f8b3c 100644 --- a/test/unit_tests/logging/test_logging_ida_lvl4_1.out +++ b/test/unit_tests/logging/test_logging_ida_lvl4_1.out @@ -98,31 +98,31 @@ Using dense direct linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240380892926, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_idas_lvl4_0.out b/test/unit_tests/logging/test_logging_idas_lvl4_0.out index 6386e335a2..a52ea6e8c5 100644 --- a/test/unit_tests/logging/test_logging_idas_lvl4_0.out +++ b/test/unit_tests/logging/test_logging_idas_lvl4_0.out @@ -147,31 +147,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240764380389, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test diff --git a/test/unit_tests/logging/test_logging_idas_lvl4_1.out b/test/unit_tests/logging/test_logging_idas_lvl4_1.out index 52bb8f3bc5..128ca74bd7 100644 --- a/test/unit_tests/logging/test_logging_idas_lvl4_1.out +++ b/test/unit_tests/logging/test_logging_idas_lvl4_1.out @@ -98,31 +98,31 @@ Using dense direct linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240380892926, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test From d7f2eb5452c7a0d01163aff609f1224409ff99a3 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 28 Jan 2025 15:59:43 -0800 Subject: [PATCH 54/67] Update level 5 logging out files --- .../test_logging_arkode_arkstep_lvl5_0.out | 246 ++--- .../test_logging_arkode_arkstep_lvl5_1_0.out | 475 +++++---- ...test_logging_arkode_arkstep_lvl5_1_1_0.out | 511 +++++----- ...test_logging_arkode_arkstep_lvl5_1_1_1.out | 572 +++++------ .../test_logging_arkode_arkstep_lvl5_2_0.out | 547 +++++----- ...test_logging_arkode_arkstep_lvl5_2_1_0.out | 603 ++++++----- ...test_logging_arkode_arkstep_lvl5_2_1_1.out | 566 ++++++----- .../test_logging_arkode_erkstep_lvl5.out | 182 ++-- .../test_logging_arkode_forcingstep_lvl5.out | 184 ++-- .../test_logging_arkode_lsrkstep_lvl5_0.out | 34 +- .../test_logging_arkode_lsrkstep_lvl5_1.out | 34 +- .../test_logging_arkode_lsrkstep_lvl5_2.out | 26 +- .../test_logging_arkode_lsrkstep_lvl5_3.out | 26 +- .../test_logging_arkode_lsrkstep_lvl5_4.out | 26 +- .../test_logging_arkode_lsrkstep_lvl5_5.out | 26 +- .../test_logging_arkode_mristep_lvl5_0.out | 802 +++++++-------- .../test_logging_arkode_mristep_lvl5_1_0.out | 814 +++++++-------- ...test_logging_arkode_mristep_lvl5_1_1_0.out | 840 +++++++-------- ...test_logging_arkode_mristep_lvl5_1_1_1.out | 840 +++++++-------- .../test_logging_arkode_mristep_lvl5_2_0.out | 812 +++++++-------- ...test_logging_arkode_mristep_lvl5_2_1_0.out | 784 +++++++------- ...test_logging_arkode_mristep_lvl5_2_1_1.out | 798 +++++++-------- .../test_logging_arkode_mristep_lvl5_3.out | 850 ++++++++-------- .../test_logging_arkode_mristep_lvl5_4_0.out | 942 ++++++++--------- ...test_logging_arkode_mristep_lvl5_4_1_0.out | 958 ++++++++--------- ...test_logging_arkode_mristep_lvl5_4_1_1.out | 960 +++++++++--------- .../test_logging_arkode_mristep_lvl5_5_0.out | 888 ++++++++-------- ...test_logging_arkode_mristep_lvl5_5_1_0.out | 940 ++++++++--------- ...test_logging_arkode_mristep_lvl5_5_1_1.out | 928 ++++++++--------- .../test_logging_arkode_mristep_lvl5_6.out | 620 +++++------ ...test_logging_arkode_splittingstep_lvl5.out | 184 ++-- .../test_logging_arkode_sprkstep_lvl5_0.out | 26 +- .../test_logging_arkode_sprkstep_lvl5_1.out | 26 +- .../logging/test_logging_cvode_lvl5_0.out | 32 +- .../logging/test_logging_cvode_lvl5_1_0.out | 54 +- .../logging/test_logging_cvode_lvl5_1_1.out | 54 +- .../logging/test_logging_cvodes_lvl5_0.out | 32 +- .../logging/test_logging_cvodes_lvl5_1_0.out | 54 +- .../logging/test_logging_cvodes_lvl5_1_1.out | 54 +- .../logging/test_logging_ida_lvl5_0.out | 54 +- .../logging/test_logging_ida_lvl5_1.out | 54 +- .../logging/test_logging_idas_lvl5_0.out | 54 +- .../logging/test_logging_idas_lvl5_1.out | 54 +- 43 files changed, 8925 insertions(+), 8641 deletions(-) diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out index 0356421cb5..ce17e274eb 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_0.out @@ -12,61 +12,61 @@ Using ERK method 1.171999045219503e-16 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.119441024380336e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.11944102438034e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.034976184264758e-21 - 4.267372584192926e-21 + 4.827980947411807e-21 + 3.413898067354341e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.043496537897763e-05 --5.946052860646057e-03 +-8.360132597416402e-06 +-4.756818119085545e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.179161536570504e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.1791615365705e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.373278058768620e-10 --3.061801760909928e-07 +-6.457326223341192e-10 +-3.674143444739394e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870854261e+00 - 1.732050501388701e+00 + 1.224744870745856e+00 + 1.732050440154533e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.058698081617044e-05 --5.945748000209881e-03 +-1.268613372466950e-05 +-7.134934008088961e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.090311077461503e-09 --6.123289558172981e-07 +-8.942074377114306e-10 +-5.009921129474809e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = - 1.224744870301278e+00 - 1.732050195239921e+00 + 1.224744870497382e+00 + 1.732050306576764e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --2.102191095056220e-05 --1.189179773693832e-02 +-2.096663473515184e-05 +-1.189190821131643e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.103646946781203e-10 --3.444409345193534e-07 +-1.082482739725197e-09 +-6.123446003797226e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744870781224e+00 - 1.732050463127943e+00 + 1.224744870309106e+00 + 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.576644642703775e-05 --8.918849671266287e-03 +-2.102193442949337e-05 +-1.189179771748695e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744870309106e+00 1.732050195224277e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00251555190553134, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00241492982931008, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 23.4491020992184 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.41924903763708e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00478144744179051, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00459018954411889, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 44.5709941417051 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.59451001562519e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00241492982931008 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00459018954411889 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744870309106e+00 @@ -75,139 +75,139 @@ Using ERK method -2.102193442949337e-05 -1.189179771748695e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00131045094026455 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00193906184325706 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.538324826179211e-08 --1.435892851604041e-05 +-3.859786544616531e-08 +-2.183424221743417e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744844925858e+00 - 1.732035836295761e+00 + 1.224744831711241e+00 + 1.732028360982059e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --2.257066408840864e-04 --1.513859220771625e-01 +-2.991920866467435e-04 +-2.240447943565604e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00131045094026455 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285709975208084 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.725328498721797e-07 --1.827931894808759e-04 +-1.015537091314433e-06 +-7.631182135207740e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744597776256e+00 - 1.731867402034796e+00 + 1.224743854772015e+00 + 1.731287077010756e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --3.094295283890133e-04 --1.512323263763101e-01 +-7.290993994267498e-04 +-3.295829741060648e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00251791585491959 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00469317556972839 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.472505981759799e-07 --3.652154561221097e-04 +-2.615939781509977e-06 +-1.048294051925737e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = - 1.224744123058508e+00 - 1.731684979768155e+00 + 1.224742254369325e+00 + 1.731001901172351e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --5.136807366372149e-04 --2.906826228191707e-01 +-8.461118567538505e-04 +-5.416761924638251e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191418339759207 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00469317556972839 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.919702257334059e-07 --2.108911478366245e-04 +-2.247009913473430e-06 +-1.270586275814669e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744478338880e+00 - 1.731839304076440e+00 + 1.224742623299193e+00 + 1.730779608948462e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --3.906775671384802e-04 --2.210038990833105e-01 +-9.579884033605031e-04 +-5.415232715155766e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224744224325435e+00 - 1.731684811946959e+00 + 1.224742623299193e+00 + 1.730779608948462e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00161623505955609, h_cfl = 2.41492982931008e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00155158565717385, h_cfl = 1.20746491465504e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.642497201509625 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0133919487764742 - 2.517915854919593e-03 1.224744224325435e+00 1.731684811946959e+00 2.964961609563943e-12 1.116839953851922e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00251791585491959, h = 0.00155158565717385 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00251791585491959 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00280338629714183, h_cfl = 4.59018954411889e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00269125084525615, h_cfl = 2.29509477205944e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.586304948714869 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00645759269757464 + 4.693175569728394e-03 1.224742623299193e+00 1.730779608948462e+00 8.576761523215737e-11 2.367621654286722e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00469317556972839, h = 0.00269125084525615 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00469317556972839 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = - 1.224744224325435e+00 - 1.731684811946959e+00 + 1.224742623299193e+00 + 1.730779608948462e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --5.139671385968327e-04 --2.906824325351567e-01 +-9.579884033605031e-04 +-5.415232715155766e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00329370868350652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00576967590783085 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.987320202527640e-07 --2.255093465569767e-04 +-1.031274840115818e-06 +-5.829499848768689e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224743825593415e+00 - 1.731459302600402e+00 + 1.224741592024353e+00 + 1.730196658963585e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.550872538115122e-04 --3.802142383003646e-01 +-1.144596115118407e-03 +-6.655262791775266e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00329370868350652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00630792607688209 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.082119936056728e-07 --2.949674794000623e-04 +-1.923568381673559e-06 +-1.124717376703700e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224743716113442e+00 - 1.731389844467559e+00 + 1.224740699730811e+00 + 1.729654891571758e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.895974205519261e-04 --3.801600865627455e-01 +-1.337459623217605e-03 +-7.273521212374500e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00406950151209344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00738442641498455 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.069969466952450e-06 --5.898509377407238e-04 +-3.335390900690357e-06 +-1.798253006912874e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = - 1.224743154355968e+00 - 1.731094961009218e+00 + 1.224739287908292e+00 + 1.728981355941549e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.306136868284904e-04 --4.696461500545711e-01 +-1.469316149256646e-03 +-8.511679639271381e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00368160509779998 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00738442641498455 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.413475906329229e-07 --4.163751292946394e-04 +-3.317405622394680e-06 +-1.874215630855869e-03 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224743482977845e+00 - 1.731268436817664e+00 + 1.224739305893570e+00 + 1.728905393317606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --7.514908204313139e-04 --4.249230493862971e-01 +-1.507332575291579e-03 +-8.511293882642962e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224743181155563e+00 - 1.731094930827531e+00 + 1.224739305893570e+00 + 1.728905393317606e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00613692542751173, h_cfl = 1.55158565717385e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00589144841041126, h_cfl = 7.75792828586923e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.79705005854611 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228191949944954 - 4.069501512093439e-03 1.224743181155563e+00 1.731094930827531e+00 3.276268145668837e-12 1.207456357121828e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0139404727036317, h_cfl = 2.69125084525615e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0133828537954865, h_cfl = 1.34562542262808e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.97272627673348 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000769861338194889 + 7.384426414984546e-03 1.224739305893570e+00 1.728905393317606e+00 9.100453723931423e-11 2.464335402407869e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00406950151209344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00155158565717385 -Current step size = 0.00589144841041126 -Explicit RHS fn evals = 17 -Implicit RHS fn evals = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.00738442641498455 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00269125084525615 +Current step size = 0.0133828537954865 +Explicit RHS fn evals = 15 +Implicit RHS fn evals = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out index 96a377b12d..1ff75b146b 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_0.out @@ -5,105 +5,90 @@ Using fixed-point nonlinear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 -[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 1.732050807568877e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.03124727847178982 -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success -[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.348211469481706e-10 --7.654406968309696e-08 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224744871256768e+00 - 1.732050731024807e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.274485543416544e-06 --2.972912241479209e-03 + 1.171999045219503e-16 + 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.715991516256390e-10 --1.530842081178994e-07 + 3.017488092132379e-21 + 2.133686292096463e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.06249535103583782 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.780196386667618e-10 --3.827124485541903e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +-2.686639029354135e-10 +-1.530900880454943e-07 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224744870713569e+00 - 1.732050424856429e+00 + 1.224744871122925e+00 + 1.732050654478789e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.578544687531983e-05 --8.918811630650704e-03 +-1.051097309381119e-05 +-5.945900430434813e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.196602056590656e-10 --6.735674300014861e-08 + 5.604741027674329e-11 + 3.170518256670005e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.005361255358247282 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.149752529028822e-10 --2.357562667735659e-07 +-2.304768784531034e-11 +-1.313305775923046e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744870976614e+00 - 1.732050571812610e+00 + 1.224744871368541e+00 + 1.732050794435819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.158714989751783e-05 --6.540440069990758e-03 +-3.078591528561980e-06 +-1.741514057538928e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.920349631072001e-11 --5.583041674882286e-08 +-8.456894525506142e-11 +-4.783943380187585e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.09764898308268008 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.678673992491510e-10 --2.089205047943193e-07 +-4.197873296630074e-10 +-2.392032554407015e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744871023722e+00 - 1.732050598648372e+00 + 1.224744870971802e+00 + 1.732050568365622e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.053868989704599e-05 --5.945844841277022e-03 +-1.313871820052291e-05 +-7.432375167014573e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.412431152065238e-10 --3.061723528625110e-07 +-6.079225725737895e-10 +-3.438927556084794e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -113,60 +98,68 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801208512e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.082485088910221e-09 --6.123445984308558e-07 +-1.170814250003433e-09 +-6.623118817936521e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224744870309104e+00 - 1.732050195224279e+00 + 1.224744870220775e+00 + 1.732050145256995e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --2.102193442418076e-05 --1.189179771748995e-02 +-2.186281178903617e-05 +-1.236746926943011e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 -[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224744870309104e+00 - 1.732050195224279e+00 -[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00379652002112094, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036446592202761, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.3898424442122 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.25735177228299e-09 - 1.029860256095084e-04 1.224744870309104e+00 1.732050195224279e+00 2.442490654175344e-15 1.998401444325282e-15 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0036446592202761 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00101415083067853 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744870309104e+00 - 1.732050195224279e+00 + 1.224744871391589e+00 + 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 +-5.412418549168191e-10 +-3.061723539091402e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 43.57700668684354 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499813597902462 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.04633595994229208 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 7.823414356077108e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.103758698952514e-07 --1.066566956679793e-04 +-1.082483828691383e-09 +-6.123445994774415e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224744659933234e+00 - 1.731943538528611e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224744870309105e+00 + 1.732050195224278e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-2.102193442686911e-05 +-1.189179771748839e-02 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = + 1.224744870309105e+00 + 1.732050195224278e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00518139789900563, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00497414198304541, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.2991935421009 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05238430747946e-09 + 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00497414198304541 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = + 1.224744870309105e+00 + 1.732050195224278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --2.307447645187646e-04 --1.170554372604345e-01 +-2.102193442686911e-05 +-1.189179771748839e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00283648044081659 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00259005701713221 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744870309104e+00 - 1.732050195224279e+00 + 1.224744870309105e+00 + 1.732050195224278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.204930167668767e-07 --2.133135893473467e-04 +-2.614152164937931e-08 +-1.478787257011064e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -176,23 +169,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2132943179163734 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --9.701459751006422e-07 --5.116304058871466e-04 +-6.844056356319962e-07 +-3.866133507533308e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224743900163129e+00 - 1.731538564818392e+00 + 1.224744185903469e+00 + 1.731663581873524e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --6.025894462492093e-04 --3.274020240604025e-01 +-5.286710557647734e-04 +-2.990071756511235e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00210754859676137 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000831432253734158 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744870309104e+00 - 1.732050195224279e+00 + 1.224744870309105e+00 + 1.732050195224278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.980859241489461e-07 --9.732248852704361e-05 + 1.415704798714212e-07 + 8.007036225072052e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -202,23 +195,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682984423547 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.189216878944322e-07 --3.189799301155584e-04 +-6.957490521413635e-08 +-3.931308071109487e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744251387416e+00 - 1.731731215294163e+00 + 1.224744800734200e+00 + 1.732010882143567e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.614517252003844e-04 --2.432685084314406e-01 +-1.697226000513409e-04 +-9.600330089916996e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.003211824765012889 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00321182476501289 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744870309104e+00 - 1.732050195224279e+00 + 1.224744870309105e+00 + 1.732050195224278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.651710523582433e-07 --8.072678350217872e-05 +-2.365231263141176e-07 +-1.338018272773248e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -228,23 +221,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005044937403 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.550853187412054e-07 --2.832129292786820e-04 +-1.053049139253292e-06 +-5.948319512631290e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744315223785e+00 - 1.731766982295000e+00 + 1.224743817259966e+00 + 1.731455363273015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --4.275603536978189e-04 --2.222280555098821e-01 +-6.555891920214554e-04 +-3.707420679241225e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00374764524588561 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00527609368797673 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744870309104e+00 - 1.732050195224279e+00 + 1.224744870309105e+00 + 1.732050195224278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.353276175385047e-07 --4.159637778002366e-04 +-1.500841006295211e-06 +-8.487727905323304e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -257,60 +250,71 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087293412658 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.433273469020507e-06 --8.100767968887515e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +-2.839995183024890e-06 +-1.605669891296238e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224743437035635e+00 - 1.731240118427390e+00 + 1.224742030313922e+00 + 1.730444525332981e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --7.649819024506111e-04 --4.325381781144991e-01 +-1.076899982306238e-03 +-6.086654542373817e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 -[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224743437035635e+00 - 1.731240118427390e+00 -[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232929919553471, h_cfl = 3.6446592202761e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223612722771332, h_cfl = 1.82232961013805e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.613535338303569 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00786490641539247 - 3.747645245885612e-03 1.224743437035635e+00 1.731240118427390e+00 9.108140908153928e-10 5.271953984475886e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00374764524588561, h = 0.00223612722771332 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00430667705281394 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00507712800865492 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743437035635e+00 - 1.731240118427390e+00 + 1.224744870309105e+00 + 1.732050195224278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 +-1.341042262015542e-06 +-7.585932806572807e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 113.5127839162196 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286068246216 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994911904798 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.06347372373964355 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537235589097 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.965497789144563e-07 --2.778230376435123e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224742940485856e+00 - 1.730962295389747e+00 +-2.629786879086281e-06 +-1.486997159092747e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224742240522226e+00 + 1.730563198065185e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.036362197334409e-03 +-5.857523791832924e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = + 1.224742240522226e+00 + 1.730563198065185e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00301494946108935, h_cfl = 4.97414198304541e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00289435148264577, h_cfl = 2.4870709915227e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.581879546766318 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00577768580132696 + 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00507712800865492, h = 0.00289435148264577 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00507712800865492 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = + 1.224742240522226e+00 + 1.730563198065185e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --8.880220200946831e-04 --4.969719072810794e-01 +-1.036362197334409e-03 +-5.857523791832924e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0054247406666706 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0065243037499778 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743437035635e+00 - 1.731240118427390e+00 + 1.224742240522226e+00 + 1.730563198065185e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.928651089713536e-07 --5.556462066399209e-04 +-7.498991156032196e-07 +-4.238433167881130e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -320,23 +324,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841554791242 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.617233763281726e-06 --9.054708047303405e-04 +-1.714180497910372e-06 +-9.681926385632843e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224741819801872e+00 - 1.730334647622660e+00 + 1.224740526341728e+00 + 1.729595005426622e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.116210635075131e-03 --6.257690157914513e-01 +-1.331744870932310e-03 +-7.522923359875922e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00497751522112794 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00550099596971972 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743437035635e+00 - 1.731240118427390e+00 + 1.224742240522226e+00 + 1.730563198065185e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.753087143823333e-07 --3.218674551363210e-04 + 3.548844182080313e-07 + 2.005193205336390e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -346,23 +350,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307475559162 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.150145580825340e-06 --6.428987795956095e-04 +-4.578025029408797e-07 +-2.586400566726972e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224742286890054e+00 - 1.730597219647794e+00 + 1.224741782719723e+00 + 1.730304558008512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.027795077338182e-03 --5.742633246258124e-01 +-1.122889783271133e-03 +-6.345593724956020e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00486570885974227 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00688609768530853 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743437035635e+00 - 1.731240118427390e+00 + 1.224742240522226e+00 + 1.730563198065185e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.793501365623602e-07 --2.680825104546462e-04 +-1.191659309190816e-06 +-6.734668608004706e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -372,23 +376,23 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988497214 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.042098704781867e-06 --5.819130322395974e-04 +-2.209562738298509e-06 +-1.247908937292820e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224742394936930e+00 - 1.730658205395150e+00 + 1.224740030959488e+00 + 1.729315289127892e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.006215483082263e-03 --5.613824580971594e-01 +-1.405603361483050e-03 +-7.938806787784178e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00598377247359893 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808725355060652 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743437035635e+00 - 1.731240118427390e+00 + 1.224742240522226e+00 + 1.730563198065185e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.538114040629158e-06 --8.695099000065338e-04 +-2.849895782991724e-06 +-1.610092196930913e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -401,42 +405,71 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950527502381 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.221437340037907e-06 --1.255309573856165e-03 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +-4.044379424753854e-06 +-2.284330221165116e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224741215598295e+00 - 1.729984808853534e+00 + 1.224738196142801e+00 + 1.728278867844020e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --1.221425593375985e-03 --6.901215783271991e-01 +-1.650782172940448e-03 +-9.317984046701876e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00797147949130069 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224742240522226e+00 + 1.730563198065185e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-2.677192552284449e-06 +-1.512618730847530e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724335587325 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528495900837 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559093605087 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-3.854585629323034e-06 +-2.177245940289081e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224738385936597e+00 + 1.728385952124896e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.627162838567195e-03 +-9.185162379061848e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224741215598295e+00 - 1.729984808853534e+00 + 1.224738385936597e+00 + 1.728385952124896e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105027447745854, h_cfl = 2.23612722771332e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.010082634983602, h_cfl = 1.11806361385666e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.50897196664097 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111685059134392 - 5.983772473598933e-03 1.224741215598295e+00 1.729984808853534e+00 1.411835537368233e-09 7.625806652811207e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0155053464300513, h_cfl = 2.89435148264577e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0148851325728492, h_cfl = 1.44717574132289e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.1428213408423 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000667541461244115 + 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00598377247359893 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223612722771332 -Current step size = 0.010082634983602 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 49 -NLS iters = 31 -NLS fails = 0 -NLS iters per step = 10.33333333333333 -LS setups = 0 +Current time = 0.00797147949130069 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289435148264577 +Current step size = 0.0148851325728492 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 49 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out index b6a9c3fd3e..dc05b331af 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_0.out @@ -6,44 +6,21 @@ Using GMRES iterative linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 -[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 1.732050807568877e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.03124727847178982, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.044190325002054, status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 8.016227206018892e-07 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 8.016227206018892e-07 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647747457602 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.348176909235711e-10 --7.654210754144662e-08 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224744871256771e+00 - 1.732050731026770e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.274484568847654e-06 --2.972912243436401e-03 + 1.171999045219503e-16 + 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.715991014421507e-10 --1.530842082186811e-07 + 3.017488092132379e-21 + 2.133686292096463e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -58,23 +35,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375176740569 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.731101740971474e-10 --3.827124660414016e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +-2.686570277728343e-10 +-1.530861704397679e-07 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224744870718479e+00 - 1.732050424856411e+00 + 1.224744871122932e+00 + 1.732050654482707e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.578545670268284e-05 --8.918811628178792e-03 +-1.051097114879576e-05 +-5.945900434335508e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.196601310510512e-10 --6.735674307886306e-08 + 5.604739990538408e-11 + 3.170518258749963e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -89,23 +66,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361117819127116 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.149645627491408e-10 --2.357502359338975e-07 +-2.304710698111461e-11 +-1.313272084011648e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744870976624e+00 - 1.732050571818641e+00 + 1.224744871368542e+00 + 1.732050794436156e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.158714690333138e-05 --6.540440075993478e-03 +-3.078591361443635e-06 +-1.741514057875047e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.920340945250171e-11 --5.583041683367624e-08 +-8.456895150045906e-11 +-4.783943378940334e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -120,23 +97,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648637841014 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.678578986762858e-10 --2.089151586090622e-07 +-4.197766027428628e-10 +-2.391971394549274e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744871023731e+00 - 1.732050598653719e+00 + 1.224744870971812e+00 + 1.732050568371738e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.053868724248064e-05 --5.945844846600478e-03 +-1.313871516395626e-05 +-7.432375173098900e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.412415048978710e-10 --3.061723542786307e-07 +-6.079224846602413e-10 +-3.438927557845755e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -156,73 +133,78 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.074628342738591e-09 --6.123446276047028e-07 +-1.162318055905234e-09 +-6.623119119925429e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224744870316961e+00 - 1.732050195224250e+00 + 1.224744870229271e+00 + 1.732050145256965e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --2.102195015181536e-05 --1.189179771353263e-02 +-2.186282879659141e-05 +-1.236746926515192e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 -[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224744870316961e+00 - 1.732050195224250e+00 -[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00383200001519093, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036787200145833, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.7205746392416 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.01038940268245e-09 - 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0036787200145833 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00102266602925533 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744870316961e+00 - 1.732050195224250e+00 + 1.224744871391589e+00 + 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 +-5.412415048378884e-10 +-3.061723542784048e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 44.35369875822553, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499813599404871, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 62.72560232529324, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535270295683072, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.04062175054285926 -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue -[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.005089991166117e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 6.413027919779191e-06 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.005089991166117e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31583324937814 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 6.413027919779191e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749849627783 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1.393376666599104e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.534693105165041e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.142179647429010e-07 --1.085569851157493e-04 +-1.074628342678609e-09 +-6.123446276044771e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224744656098996e+00 - 1.731941638239134e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224744870316961e+00 + 1.732050195224250e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-2.102195015181536e-05 +-1.189179771353263e-02 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = + 1.224744870316961e+00 + 1.732050195224250e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0051737023157571, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00496675422312682, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.2274579850205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06050616602604e-09 + 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496675422312682 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = + 1.224744870316961e+00 + 1.732050195224250e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --2.329282933600130e-04 --1.180377762312333e-01 +-2.102195015181536e-05 +-1.189179771353263e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00286202603654698 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258636313717292 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870316961e+00 1.732050195224250e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.284389873731047e-07 --2.171139649493712e-04 +-2.610271492372260e-08 +-1.476590912856451e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -245,23 +227,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --9.877953458946113e-07 --5.209291376133345e-04 +-6.815874931211898e-07 +-3.855104648033318e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224743882521615e+00 - 1.731529266086636e+00 + 1.224744188729467e+00 + 1.731664684759446e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --6.082465635980483e-04 --3.303487377433042e-01 +-5.279192071437184e-04 +-2.985809277836105e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00212628203363032 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830350341342969 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870316961e+00 1.732050195224250e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.018357591213251e-07 --9.902707563242754e-05 + 1.411668717786143e-07 + 7.984182429851251e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -284,23 +266,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.302657855316933e-07 --3.247439316574532e-04 +-6.930149268490455e-08 +-3.920926460496214e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744240051175e+00 - 1.731725451292592e+00 + 1.224744801015468e+00 + 1.732010985959645e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.658619477740075e-04 --2.454297529829864e-01 +-1.695019429350090e-04 +-9.587838100763948e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00194234603290116 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320720741506377 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870316961e+00 1.732050195224250e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.683050389736911e-07 --8.214025165231677e-05 +-2.358789210997268e-07 +-1.334375082671025e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -323,23 +305,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.653061420911954e-07 --2.883258671898838e-04 +-1.048687458313169e-06 +-5.931224175176135e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744305010818e+00 - 1.731761869357060e+00 + 1.224743821629502e+00 + 1.731457072806732e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --4.316849792830515e-04 --2.241927610754501e-01 +-6.546499113644177e-04 +-3.702094500732027e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0037817060401928 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0052684104176614 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870316961e+00 1.732050195224250e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.485942709085382e-07 --4.234681341564999e-04 +-1.496512925755381e-06 +-8.463232600177901e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -362,73 +344,81 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.458439154159921e-06 --8.248769111043537e-04 +-2.831283527975916e-06 +-1.600997913217233e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224743411877806e+00 - 1.731225318313145e+00 + 1.224742039033432e+00 + 1.730449197311032e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --7.719368580049641e-04 --4.364656033695644e-01 +-1.075333135326114e-03 +-6.077807329254222e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 -[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224743411877806e+00 - 1.731225318313145e+00 -[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232636455038834, h_cfl = 3.6787200145833e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223330996837281, h_cfl = 1.83936000729165e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.607088867736454 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00816310546643735 - 3.781706040192805e-03 1.224743411877806e+00 1.731225318313145e+00 1.057254284120290e-10 1.072486544018147e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0037817060401928, h = 0.00223330996837281 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00434003353228601 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506974024873633 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411877806e+00 - 1.731225318313145e+00 + 1.224744870316961e+00 + 1.732050195224250e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 +-1.337185453813825e-06 +-7.564073854028604e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 114.2475703576066, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615178930309, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 161.5704634679017, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761541680366, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.06347262680418689 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726379422214 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.746714923333988e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.08971449261438e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.746714923333988e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.2024221826183 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.08971449261438e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.265941067359 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.199113684336701e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.000249564687271857, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.995912073847480e-07 --2.796195987059863e-04 +-2.621760168561630e-06 +-1.482673151942388e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224742912286599e+00 - 1.730945698714439e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224742248556792e+00 + 1.730567522072307e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.034855077931239e-03 +-5.849015105017941e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = + 1.224742248556792e+00 + 1.730567522072307e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00301556408827631, h_cfl = 4.96675422312682e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00289494152474525, h_cfl = 2.48337711156341e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.582863857298488 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574336054534255 + 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506974024873633, h = 0.00289494152474525 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506974024873633 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = + 1.224742248556792e+00 + 1.730567522072307e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --8.948107734921636e-04 --5.008164516365016e-01 +-1.034855077931239e-03 +-5.849015105017941e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00545668851647241 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651721101110895 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411877806e+00 - 1.731225318313145e+00 + 1.224742248556792e+00 + 1.730567522072307e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.991949101237145e-07 --5.592391868824480e-04 +-7.489612342991574e-07 +-4.233139176594664e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -451,23 +441,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.625969590461505e-06 --9.106768865818304e-04 +-1.711648644310930e-06 +-9.671843067479716e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224741785908216e+00 - 1.730314641426563e+00 + 1.224740536908148e+00 + 1.729600337765559e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.122712637680479e-03 --6.294471763593196e-01 +-1.330299628204099e-03 +-7.514768210511134e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00501002652279785 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549369461946601 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411877806e+00 - 1.731225318313145e+00 + 1.224742248556792e+00 + 1.730567522072307e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.791579258701285e-07 --3.240526209389693e-04 + 3.545142338457561e-07 + 2.003104232926399e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -490,23 +480,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.156660807449444e-06 --6.467704734790836e-04 +-4.570762283115159e-07 +-2.583343221871093e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224742255216999e+00 - 1.730578547839666e+00 + 1.224741791480564e+00 + 1.730309187750120e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.034404496632147e-03 --5.780081310853471e-01 +-1.121400712648291e-03 +-6.337188338518133e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00489836102437921 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00687907870170211 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411877806e+00 - 1.731225318313145e+00 + 1.224742248556792e+00 + 1.730567522072307e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.825577711672859e-07 --2.699038466440475e-04 +-1.190279987857162e-06 +-6.726884059020064e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -529,23 +519,23 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.048032502083403e-06 --5.854392511556400e-04 +-2.206368113566159e-06 +-1.246664173673386e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224742363845304e+00 - 1.730639879061989e+00 + 1.224740042188678e+00 + 1.729320857898634e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.012850429225508e-03 --5.651439162405191e-01 +-1.404173686222306e-03 +-7.930740376376542e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008080479434471389 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808047943447139 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411877806e+00 - 1.731225318313145e+00 + 1.224742248556792e+00 + 1.730567522072307e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.547505130659557e-06 --8.748074550661723e-04 +-2.847130419618537e-06 +-1.608531921873471e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -568,53 +558,92 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.232895358131228e-06 --1.262128374792183e-03 +-4.040317223676908e-06 +-2.282344903221122e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224741178982448e+00 - 1.729963189938353e+00 + 1.224738208239568e+00 + 1.728285177169086e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --1.227806846103986e-03 --6.937162767147035e-01 +-1.649401347887829e-03 +-9.310213138179821e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796468177348158 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224742248556792e+00 + 1.730567522072307e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-2.674556436373694e-06 +-1.511130802939405e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870949936611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.359027870932, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969989650043 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.97124359201826e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.97124359201826e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869312485084 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267402460637, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-3.850695295066350e-06 +-2.175328967907112e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224738397861497e+00 + 1.728392193104400e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.625777110234250e-03 +-9.177362933924174e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224741178982448e+00 - 1.729963189938353e+00 + 1.224738397861497e+00 + 1.728392193104400e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105439796544931, h_cfl = 2.23330996837281e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0101222204683134, h_cfl = 1.1166549841864e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.53238494058595 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111125927502444 - 6.015016008565610e-03 1.224741178982448e+00 1.729963189938353e+00 2.336992821483364e-10 1.590565457121329e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0154957149064437, h_cfl = 2.89494152474525e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.014875886310186, h_cfl = 1.44747076237263e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.13857920204277 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668065908928318 + 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.007964681773481579 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223330996837281 -Current step size = 0.0101222204683134 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 45 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 9 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 25 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 25 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 25 -LS iters per NLS iter = 0.925925925925926 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.00796468177348158 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494152474525 +Current step size = 0.014875886310186 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 45 +NLS iters = 27 +NLS fails = 0 +NLS iters per step = 9 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 25 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 25 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 25 +LS iters per NLS iter = 0.925925925925926 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out index 21dcd965df..e7da86bff0 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_1_1_1.out @@ -6,38 +6,21 @@ Using dense direct linear solver ------------------------------------------------------------------------------------------------------------------------------ 0.000000000000000e+00 1.224744871391589e+00 1.732050807568877e+00 0.000000000000000e+00 0.000000000000000e+00 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 1, tn = 0, h = 0.000102986025609508 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 2.57465064023771e-05 -[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 1.732050807568877e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.03124647749568791 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.357995001029199e-10 --7.654210412210976e-08 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224744871255789e+00 - 1.732050731026773e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.274482603539504e-06 --2.972912243930639e-03 + 1.171999045219503e-16 + 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 7.72395192071313e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 5.14930128047542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.715990002425129e-10 --1.530842082441310e-07 + 3.017488092132379e-21 + 2.133686292096463e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -46,28 +29,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.06249375180962681 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.7062068469260836e-10 --1.5308616362613730e-07 - +-2.706206846926084e-10 +-1.530861636261373e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = -1.2247448711209683e+00 -1.7320506544827137e+00 - + 1.224744871120968e+00 + 1.732050654482714e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.0510967218422285e-05 --5.9459004353241401e-03 - +-1.051096721842229e-05 +-5.945900435324140e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.508195426678678e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 1.50819542667868e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448713915889e+00 -1.7320508075688772e+00 - + 1.224744871391589e+00 + 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -5.6047378947547672e-11 -3.1705182592771295e-08 - + 5.604737894754767e-11 + 3.170518259277130e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -76,28 +54,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.005361118155683129 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.3215584567868918e-11 --1.3132721071088816e-08 - +-2.321558456786892e-11 +-1.313272107108882e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = -1.2247448713683733e+00 -1.7320507944361561e+00 - + 1.224744871368373e+00 + 1.732050794436156e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --3.0785910245380460e-06 --1.7415140579590499e-03 - +-3.078591024538046e-06 +-1.741514057959050e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.436626600594275e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.43662660059428e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448713915889e+00 -1.7320508075688772e+00 - + 1.224744871391589e+00 + 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.4568964164161988e-11 --4.7839433786177632e-08 - +-8.456896416416199e-11 +-4.783943378617763e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -106,28 +79,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09764648428541893 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.2284481997572677e-10 --2.3919712351994135e-07 - +-4.228448199757268e-10 +-2.391971235199413e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = -1.2247448709687441e+00 -1.7320505683717538e+00 - + 1.224744870968744e+00 + 1.732050568371754e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.3138709019561053e-05 --7.4323751746489600e-03 - +-1.313870901956105e-05 +-7.432375174648960e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0001071054666338887 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000107105466633889 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448713915889e+00 -1.7320508075688772e+00 - + 1.224744871391589e+00 + 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.0792230657728106e-10 --3.4389275582955604e-07 - +-6.079223065772811e-10 +-3.438927558295560e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -141,139 +109,67 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842759940812e-08 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.780191093103562e-10 --3.827124489942565e-07 +-1.170813330345474e-09 +-6.623118825560968e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224744870713570e+00 - 1.732050424856428e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.578544687648272e-05 --8.918811630649967e-03 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 5.66423140852296e-05 -[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744871391589e+00 - 1.732050807568877e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.196601027137495e-10 --6.735674308598910e-08 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.09623936755399637 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.179884986326563e-10 --2.357502129143597e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744870973600e+00 - 1.732050571818664e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.158714084369883e-05 --6.540440077528497e-03 -[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 5.14930128047542e-05 -[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224744871391589e+00 - 1.732050807568877e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.920338800181232e-11 --5.583041683910196e-08 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.08528459315580529 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.705376283183696e-10 --2.089151400521646e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744871021051e+00 - 1.732050598653737e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.053868187390370e-05 --5.945844847958718e-03 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = + 1.224744870220776e+00 + 1.732050145256995e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = +-2.186281179159633e-05 +-1.236746926942880e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.412413679529540e-10 --3.061723543160814e-07 +-5.412413697663610e-10 +-3.061723543125898e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749520049542 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749630505384 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.082482737152832e-09 --6.123445192022992e-07 +-1.082482738911530e-09 +-6.123445462599849e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = 1.224744870309106e+00 - 1.732050195224358e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --2.102193438898294e-05 --1.189179771756742e-02 + 1.732050195224331e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-2.102193440244369e-05 +-1.189179771754068e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744870309106e+00 - 1.732050195224358e+00 + 1.732050195224331e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00383218957669227, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00367890199362458, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 35.7223416657893 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.00910759438516e-09 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224358e+00 2.220446049250313e-16 8.104628079763643e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00367890199362458 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00102271152401565 -[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00517366381744095, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00496671726474331, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 48.2270991170743 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06054698449686e-09 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496671726474331 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744870309106e+00 - 1.732050195224358e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 -[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 44.31728809265712 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue -[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002706685111211134 -[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success -[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.142408101250749e-07 --1.085671792557398e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224744656068296e+00 - 1.731941628045102e+00 + 1.732050195224331e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --2.329399484766662e-04 --1.180430246296777e-01 +-2.102193440244369e-05 +-1.189179771754068e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00286216252082794 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258634465798116 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 - 1.732050195224358e+00 + 1.732050195224331e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.284816204228072e-07 --2.171343593217983e-04 +-2.610250113372960e-08 +-1.476579925813610e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -287,23 +183,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824834014635 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --9.879291864818547e-07 --5.209789808048253e-04 +-6.816040613835979e-07 +-3.855048968970307e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224743882379920e+00 - 1.731529216243553e+00 + 1.224744188705045e+00 + 1.731664690327434e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --6.082766740782554e-04 --3.303644813098864e-01 +-5.279153415215370e-04 +-2.985787954767548e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00212638212210303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830344928913016 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 - 1.732050195224358e+00 + 1.732050195224331e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.018558911298360e-07 --9.903622238227521e-05 + 1.411648231998590e-07 + 7.984068183975451e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -317,23 +213,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799203649459 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.303426310346545e-07 --3.247748389625010e-04 +-6.930084070483680e-08 +-3.920874460713669e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744239966475e+00 - 1.731725420385395e+00 + 1.224744801008266e+00 + 1.732010986479724e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.658854640492335e-04 --2.454412999902697e-01 +-1.695008213166519e-04 +-9.587775608228920e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0019424370224218 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320718431607408 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 - 1.732050195224358e+00 + 1.732050195224331e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.683218676651742e-07 --8.214783625782126e-05 +-2.358756997128310e-07 +-1.334356869331711e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -347,23 +243,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324507830747 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.653737845515433e-07 --2.883532855081806e-04 +-1.048734855669325e-06 +-5.931137550153047e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744304935322e+00 - 1.731761841938850e+00 + 1.224743821574251e+00 + 1.731457081469316e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --4.317069801994899e-04 --2.242032580222850e-01 +-6.546450000293363e-04 +-3.702067856982709e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.005268371980942552 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00526837198094255 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 - 1.732050195224358e+00 + 1.732050195224331e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.486654574677795e-07 --4.235084080980792e-04 +-1.496490887974342e-06 +-8.463110149779106e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -377,64 +273,72 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769922509453 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.458669392595014e-06 --8.249562077672366e-04 +-2.831698554839864e-06 +-1.600973986755167e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224743411639714e+00 - 1.731225239016591e+00 + 1.224742038610551e+00 + 1.730449221237576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --7.719737425502331e-04 --4.364865865873723e-01 +-1.075324078726166e-03 +-6.077763075594246e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 -[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224743411639714e+00 - 1.731225239016591e+00 -[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232634910508265, h_cfl = 3.67890199362458e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223329514087935, h_cfl = 1.83945099681229e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.607054807317394 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00816471836041274 - 3.781888019234090e-03 1.224743411639714e+00 1.731225239016591e+00 8.112177596331094e-12 2.569811030639357e-11 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00378188801923409, h = 0.00223329514087935 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 1, tcur = 0.00434021180445393 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506970329035282 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411639714e+00 - 1.731225239016591e+00 + 1.224744870309106e+00 + 1.732050195224331e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 0.000000000000000e+00 - 0.000000000000000e+00 +-1.337166274190509e-06 +-7.563964580577813e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 114.1880202704021 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.0057975967644 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01832920615797257 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2511122224022418 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.996142320682267e-07 --2.796292015654752e-04 +-2.622113743934467e-06 +-1.482651025446124e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_0(:) = - 1.224742912025482e+00 - 1.730945609815025e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224742248195362e+00 + 1.730567544198885e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.034846480045630e-03 +-5.848972544257793e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 +[DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = + 1.224742248195362e+00 + 1.730567544198885e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00301556789588097, h_cfl = 4.96671726474331e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00289494518004573, h_cfl = 2.48335863237166e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.582868930469579 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574318202038279 + 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506970329035282, h = 0.00289494518004573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506970329035282 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = + 1.224742248195362e+00 + 1.730567544198885e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --8.948467635219856e-04 --5.008369984852737e-01 +-1.034846480045630e-03 +-5.848972544257793e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0054568593748936 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651717588037568 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411639714e+00 - 1.731225239016591e+00 + 1.224742248195362e+00 + 1.730567544198885e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.992284644026308e-07 --5.592584175448797e-04 +-7.489559573738460e-07 +-4.233113718804723e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -448,23 +352,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599515968683 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.626084798934162e-06 --9.107046931400340e-04 +-1.711735947500567e-06 +-9.671794051418624e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224741785554915e+00 - 1.730314534323451e+00 + 1.224740536459415e+00 + 1.729600364793743e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = --1.122746964486164e-03 --6.294668471853738e-01 +-1.330291152690340e-03 +-7.514727823485147e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00501020034671773 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411639714e+00 - 1.731225239016591e+00 + 1.224742248195362e+00 + 1.730567544198885e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.791783421848294e-07 --3.240643138839686e-04 + 3.545121223297781e-07 + 2.003094329046457e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -478,23 +382,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02768906071174051 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.156730502503012e-06 --6.467911578737610e-04 +-4.570801140667007e-07 +-2.583328359011406e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224742254909211e+00 - 1.730578447858717e+00 + 1.224741791115248e+00 + 1.730309211362984e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.034439470548562e-03 --5.780281528091812e-01 +-1.121392200452508e-03 +-6.337146413162950e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00489853558967376 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0068790440278814 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411639714e+00 - 1.731225239016591e+00 + 1.224742248195362e+00 + 1.730567544198885e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.825747859544339e-07 --2.699135926835238e-04 +-1.190272260748860e-06 +-6.726846838266994e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -508,23 +412,23 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1676270895079329 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.048092881464906e-06 --5.854580914994779e-04 +-2.206517547480440e-06 +-1.246658130844974e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224742363546832e+00 - 1.730639780925091e+00 + 1.224740041677815e+00 + 1.729320886068040e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --1.012885553027714e-03 --5.651640256372680e-01 +-1.404165154795280e-03 +-7.930700534540559e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00601518316011344 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808044627760037 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224743411639714e+00 - 1.731225239016591e+00 + 1.224742248195362e+00 + 1.730567544198885e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.547554904763551e-06 --8.748358175138735e-04 +-2.847114613567972e-06 +-1.608524572373492e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -538,53 +442,83 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066040662974 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.233087400608765e-06 --1.262164789643253e-03 +-4.040839701297401e-06 +-2.282335394307825e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224741178552313e+00 - 1.729963074226947e+00 + 1.224738207355661e+00 + 1.728285208804577e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = --1.227840392906739e-03 --6.937355080967782e-01 +-1.649392321050722e-03 +-9.310175110407763e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796464847039855 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224742248195362e+00 + 1.730567544198885e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-2.674541467210389e-06 +-1.511123784530809e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442245792432 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383851641306 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-3.851168887420206e-06 +-2.175319767700501e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224738397026475e+00 + 1.728392224431184e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = +-1.625768153528641e-03 +-9.177324731064433e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224741178552313e+00 - 1.729963074226947e+00 + 1.224738397026475e+00 + 1.728392224431184e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0105441984323178, h_cfl = 2.23329514087935e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0101224304950251, h_cfl = 1.11664757043967e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.53250907582213 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00111123036409299 - 6.015183160113438e-03 1.224741178552313e+00 1.729963074226947e+00 8.796519068710040e-12 8.689449160215190e-11 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0154956637485955, h_cfl = 2.89494518004573e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0148758371986517, h_cfl = 1.44747259002286e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.13855574923762 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668069728036845 + 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00601518316011344 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00223329514087935 -Current step size = 0.0101224304950251 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 44 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.00796464847039855 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00289494518004573 +Current step size = 0.0148758371986517 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 44 +NLS iters = 26 +NLS fails = 0 +NLS iters per step = 8.66666666666667 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0384615384615385 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out index f11e938b92..e447fcaffe 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_0.out @@ -16,117 +16,117 @@ Using fixed-point nonlinear solver -0.000000000000000e+00 -0.000000000000000e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.017488092132379e-21 - 2.133686292096463e-21 + 1.490639117513395e-21 + 1.054041028295653e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = - 1.956781877708985e-12 --3.937950118911585e-12 + 2.358974779413975e-13 +-4.747348181228313e-13 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224744871393546e+00 - 1.732050807564939e+00 + 1.224744871391825e+00 + 1.732050807568402e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 7.599595788509247e-08 --1.529459368010479e-07 + 1.854647758468320e-08 +-3.732492423360170e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.051096721952554e-05 --5.945899909806381e-03 +-5.192417808187580e-06 +-2.937274947948774e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.197521095218984e-10 --6.749419268841959e-08 +-1.921733874414383e-10 +-1.088713274174254e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.04444466957300736 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.188893721755557e-10 --6.749592891496110e-08 +-1.914859318478439e-10 +-1.088727108960191e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744871272700e+00 - 1.732050740072948e+00 + 1.224744871200103e+00 + 1.732050698696166e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --1.275862877042447e-12 - 1.060147678576543e-12 +-2.921881129232522e-12 + 2.441330291924294e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.979282236178049e-06 --3.948078084151061e-03 +-8.864011650668511e-06 +-5.014241882982967e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.178590321386380e-10 --2.353817845526542e-07 +-1.212431767135434e-10 +-6.872086261655347e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.02805399819163158 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.148502844745372e-10 --2.353878395444733e-07 +-1.208092473957022e-10 +-6.872173588302542e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744870976739e+00 - 1.732050572181038e+00 + 1.224744871270780e+00 + 1.732050738847141e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --3.786553208141262e-12 - 3.177531716446265e-12 +-2.020918046988294e-12 + 1.688624802072780e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.303359935355080e-05 --7.372916189477064e-03 +-7.042348039503136e-06 +-3.983753485708862e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.867237301147382e-10 --4.424097247417671e-07 +-6.228456192510563e-12 +-3.444160653332515e-09 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.001406013957715032 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --7.867238100651645e-10 --4.424097246742457e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +-6.206706558584390e-12 +-3.444204423650745e-09 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224744870604865e+00 - 1.732050365159153e+00 + 1.224744871385382e+00 + 1.732050804124673e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 1.389557456326370e-11 --1.158581365100861e-11 + 3.531327335374253e-13 +-2.933351049168053e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.786864426977555e-05 --1.010802905147480e-02 +-1.576645083620417e-06 +-8.918851423525245e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.082483423081718e-09 --6.123446027906278e-07 +-5.307088008989938e-10 +-3.000482921355333e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -136,48 +136,77 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.902425639273363e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.082484028887855e-09 --6.123446022842590e-07 +-5.307088621598873e-10 +-3.000482920843408e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224744870309105e+00 - 1.732050195224275e+00 + 1.224744870860880e+00 + 1.732050507520585e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = - 1.813848752391806e-15 - 1.369346836134154e-15 + 8.794220897065260e-13 +-7.354019079556924e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.102193442979464e-05 --1.189179771748692e-02 +-1.471535410749284e-05 +-8.324259903136398e-03 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224744871391589e+00 + 1.732050807568877e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.082482831035346e-09 +-6.123446052147013e-07 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2499781580918246 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 3.882514578718288e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.082482978900431e-09 +-6.123446050910826e-07 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224744870309106e+00 + 1.732050195224272e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.707809534703923e-15 + 4.605391531531122e-15 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.102193442979462e-05 +-1.189179771748694e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744870309106e+00 1.732050195224277e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00668046506668371, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00641324646401636, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.2729775817686 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.8271448260369e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 6.661338147750939e-16 4.440892098500626e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00641324646401636 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00883306917774521, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0084797464106354, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.97817873492126e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 2.220446049250313e-16 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = - 1.400037602944849e-15 --6.584847740677989e-16 + 3.653467407217789e-16 +-1.754663324526957e-16 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = -2.102193442979462e-05 -1.189179771748690e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00330960925761769 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.740942332208739e-08 --3.813251483123642e-05 +-4.403038623695633e-08 +-2.490733896568306e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -187,26 +216,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01327964506398449 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = - 4.025367697164167e-07 --3.908111728150185e-05 + 8.717812953136206e-08 +-2.517192717739280e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224745272845875e+00 - 1.732011114106996e+00 + 1.224744957487236e+00 + 1.732025023297100e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 2.932067664835486e-04 --5.917314018788007e-04 + 1.253288088924409e-04 +-2.526839299966792e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.755697060082820e-04 --3.818905052175977e-01 +-4.485590259056751e-04 +-2.536656219667797e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.003678516677892991 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123371341706024e-07 --2.866580717203096e-04 +-1.221534434809949e-06 +-7.807099755260586e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -219,26 +248,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008591478259674878 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.127982898686629e-07 --2.866578428770862e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +-1.221996907889921e-06 +-7.807096249054181e-04 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744257510816e+00 - 1.731763537381400e+00 + 1.224743648312198e+00 + 1.731269485599372e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = - 4.002090512951367e-07 --4.317216861311860e-07 +-4.447057945643141e-07 + 3.365123192712658e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --4.556424707194770e-04 --2.577075216994664e-01 +-7.508731290426353e-04 +-4.245669689435465e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00407919883329965 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.117147285339559e-06 --9.593173287500409e-04 +-7.505106389939270e-07 +-4.998393785784291e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -248,26 +277,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2615189380810247 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.115386705067308e-06 --9.593184826011355e-04 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +-7.517260116060252e-07 +-4.998383866135897e-04 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224742754922401e+00 - 1.731090876741676e+00 + 1.224744118583095e+00 + 1.731550356837664e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = - 1.089170864954806e-06 --7.147414131653511e-07 +-3.768310701487268e-07 + 2.930711896263574e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.326621047622531e-04 --4.707638680037334e-01 +-6.008799669110329e-04 +-3.398111760910564e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00555424552002342 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.255783529275358e-06 --1.778069800474046e-03 +-1.324381269293983e-07 +-3.087299467848148e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -277,26 +306,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.016080355714478 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.251013121658628e-06 --1.778073110436376e-03 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +-1.323038805665856e-07 +-3.087303696586617e-05 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224740619295984e+00 - 1.730272122113841e+00 + 1.224744738005226e+00 + 1.732019322187311e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 2.958827130544470e-06 --2.055328608505998e-06 + 1.762195915451466e-07 +-8.065332310557666e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.133753726056571e-03 --6.406887558951191e-01 +-1.508410112371347e-04 +-8.532700475997672e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.332588828279127e-06 --2.449197654260069e-03 +-3.884352064529402e-06 +-2.103154349752603e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -309,48 +338,80 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002311994534000555 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.332585887432389e-06 --2.449197607305961e-03 +-3.883798783094511e-06 +-2.103154846337473e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224740537723218e+00 - 1.729600997616971e+00 + 1.224740986510323e+00 + 1.729947040377940e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --2.095220376862286e-08 - 4.186659794169155e-08 + 5.199823097345677e-07 +-4.695763576863363e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --1.330115680508861e-03 --7.513643107549002e-01 +-1.232663043972734e-03 +-6.964534571162286e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224744870309106e+00 + 1.732050195224277e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-7.517058135453799e-06 +-4.247369122893168e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 1735.696263548979 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 2.218847433921493 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.004667092324739613 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-7.517172800494659e-06 +-4.247368867865221e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224737353136306e+00 + 1.727802826356412e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.263207969126064e-07 + 2.528154956049591e-07 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-1.751932167863285e-03 +-9.886134615369233e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224740537689633e+00 - 1.729601039259757e+00 + 1.224737353123003e+00 + 1.727803079449061e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00380572194405752, h_cfl = 6.41324646401636e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00365349306629522, h_cfl = 3.20662323200818e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.569679192401906 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00400567566981559 - 6.516232489625870e-03 1.224740537689633e+00 1.729601039259757e+00 2.278266464372791e-11 2.184104008762233e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00651623248962587, h = 0.00365349306629522 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00651623248962587 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00507000007534828, h_cfl = 8.4797464106354e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00486720007233434, h_cfl = 4.2398732053177e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.573979437195178 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228352880442333 + 8.582732436244913e-03 1.224737353123003e+00 1.727803079449061e+00 6.298850330210826e-11 2.523286024569416e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486720007233434 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = - 1.224740537689633e+00 - 1.729601039259757e+00 + 1.224737353123003e+00 + 1.727803079449061e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --6.363989000559016e-11 - 2.070191677334165e-10 + 2.521412061180676e-10 +-2.838228052848738e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --1.330115680545336e-03 --7.513642926646574e-01 +-1.751932167882314e-03 +-9.886133167225040e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00834297902277348 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0097849308541115 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740537689633e+00 - 1.729601039259757e+00 + 1.224737353123003e+00 + 1.727803079449061e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.429784266248440e-06 --1.372552116566983e-03 +-2.106169928875810e-06 +-1.188509365416235e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -363,26 +424,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0004304924100195743 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.343108226614165e-06 --1.372726828944583e-03 +-2.081515345720500e-06 +-1.188559035298694e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224738194581406e+00 - 1.728228312430812e+00 + 1.224735271607658e+00 + 1.726614520413762e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 9.489248472970678e-05 --1.912802752220117e-04 + 4.101427904680431e-05 +-8.263089805943973e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.702992989460269e-03 --9.610210007424262e-01 +-1.997324429790828e-03 +-1.126203110090209e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00772919218763588 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350135077167 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740537689633e+00 - 1.729601039259757e+00 + 1.224737353123003e+00 + 1.727803079449061e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.782872342984410e-06 --9.957649324461657e-04 +-3.995558801711828e-06 +-2.269992723931691e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -395,26 +456,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008219657363979175 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.782768050612725e-06 --9.957650755057657e-04 +-3.995594274767463e-06 +-2.269992712811630e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224738754921582e+00 - 1.728605274184251e+00 + 1.224733357528729e+00 + 1.725533086736249e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = - 1.111807779362950e-07 --1.549693039306658e-07 +-6.197558992200267e-08 + 2.013549288272750e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.577706918982866e-03 --8.907118418721420e-01 +-2.170842528140000e-03 +-1.223390533398012e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0087813981907289 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132444604769 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740537689633e+00 - 1.729601039259757e+00 + 1.224737353123003e+00 + 1.727803079449061e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.614056779658283e-06 --1.996669916741552e-03 +-3.102947996175534e-06 +-1.764169692474676e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -427,26 +488,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0006389028715493185 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.613930359690375e-06 --1.996669914350086e-03 +-3.102980505173132e-06 +-1.764169677705276e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224736923759273e+00 - 1.727604369345407e+00 + 1.224734250142498e+00 + 1.726038909771355e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = - 1.323906085403597e-07 - 5.942649816521669e-09 +-5.638486266589039e-08 + 2.584225249452566e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.792483994089980e-03 --1.011380145583167e+00 +-2.084751631291204e-03 +-1.175219084137678e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0096217015959768 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00894777244166999 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740537689633e+00 - 1.729601039259757e+00 + 1.224737353123003e+00 + 1.727803079449061e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.319517392721469e-06 --2.886915861729133e-03 +-6.677248604273114e-07 +-3.685714499404828e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -456,26 +517,26 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.1107245052612964 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.319132944655035e-06 --2.886915966152777e-03 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +-6.679217845010916e-07 +-3.685712565861450e-04 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224735218556688e+00 - 1.726714123293604e+00 + 1.224736685201219e+00 + 1.727434508192474e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 4.122099237854816e-07 --1.095223920873532e-07 + 3.454598609317890e-09 + 4.509906086579563e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.964006789510561e-03 --1.107586717695246e+00 +-1.826444237612392e-03 +-1.030440228113085e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0101697255559211 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.011989772486879 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740537689633e+00 - 1.729601039259757e+00 + 1.224737353123003e+00 + 1.727803079449061e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.221883402692100e-06 --3.511063786708314e-03 +-7.184264103028344e-06 +-4.031777482878873e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -488,45 +549,77 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001459084170060892 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.221866304284086e-06 --3.511063806863626e-03 +-7.184143579705253e-06 +-4.031777654965989e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224734315823329e+00 - 1.726089975452893e+00 + 1.224730168979424e+00 + 1.723771301794095e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = - 8.138888609102549e-09 --1.622328961169911e-08 + 1.952471007111250e-07 +-2.833833399884771e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.075868645069754e-03 --1.170246218742307e+00 +-2.447372802673784e-03 +-1.377815802890072e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499325085793 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224737353123003e+00 + 1.727803079449061e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.094461008509475e-05 +-6.165544299184769e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 2524.632948028877 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 1.849220051021347 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.00222993820597665 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.094475366724205e-05 +-6.165544004896254e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224726408369336e+00 + 1.721637535444164e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.469015109209494e-07 + 4.940222024906433e-07 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.745414588788657e-03 +-1.543682835852246e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224734315814070e+00 - 1.726089959024652e+00 + 1.224726408367123e+00 + 1.721638029753690e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0218479371399207, h_cfl = 3.65349306629522e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0209740196543238, h_cfl = 1.82674653314761e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.74081277115774 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000415148091486067 - 1.016972555592109e-02 1.224734315814070e+00 1.726089959024652e+00 2.482614114285298e-11 2.127358289527592e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0323678799833477, h_cfl = 4.86720007233434e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0310731647840138, h_cfl = 2.43360003616717e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.38419714049497 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250838296790761 + 1.344993250857926e-02 1.224726408367123e+00 1.721638029753690e+00 6.483680259350422e-11 2.560827105924091e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0101697255559211 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365349306629522 -Current step size = 0.0209740196543238 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 55 -NLS iters = 35 -NLS fails = 0 -NLS iters per step = 11.6666666666667 -LS setups = 0 +Current time = 0.0134499325085793 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486720007233434 +Current step size = 0.0310731647840138 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 63 +NLS iters = 40 +NLS fails = 0 +NLS iters per step = 13.3333333333333 +LS setups = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out index f1aff1e2db..513fcde7e0 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_0.out @@ -17,13 +17,13 @@ Using GMRES iterative linear solver -0.000000000000000e+00 -0.000000000000000e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.017488092132379e-21 - 2.133686292096463e-21 + 1.490639117513395e-21 + 1.054041028295653e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -32,26 +32,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368628977311079e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = - 1.956781877708985e-12 --3.937950118911585e-12 + 2.358974779413975e-13 +-4.747348181228313e-13 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224744871393546e+00 - 1.732050807564939e+00 + 1.224744871391825e+00 + 1.732050807568402e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 7.599595788509247e-08 --1.529459368010479e-07 + 1.854647758468320e-08 +-3.732492423360170e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.051096721952554e-05 --5.945899909806381e-03 +-5.192417808187580e-06 +-2.937274947948774e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.197521095218984e-10 --6.749419268841959e-08 +-1.921733874414383e-10 +-1.088713274174254e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -66,26 +66,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.04444410578228845 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.188863192950718e-10 --6.749419573225216e-08 +-1.914835028053464e-10 +-1.088713298209760e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744871272703e+00 - 1.732050740074681e+00 + 1.224744871200105e+00 + 1.732050698697547e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = --4.155400112580802e-13 --6.712853233069506e-13 +-2.236240248987060e-12 + 1.061482169712323e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.979282236178033e-06 --3.948078084147111e-03 +-8.864011650668493e-06 +-5.014241882978969e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.178589923305420e-10 --2.353817846324252e-07 +-1.212431794087011e-10 +-6.872086261116140e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -100,26 +100,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364231763626 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.148395920218062e-10 --2.353817952671801e-07 +-1.208077175961062e-10 +-6.872086412568040e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744870976749e+00 - 1.732050572187082e+00 + 1.224744871270781e+00 + 1.732050738848013e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = --7.861804788114690e-13 --2.861286460980473e-12 +-1.587765967358656e-12 + 8.175615529687512e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.303359935355068e-05 --7.372916189451336e-03 +-7.042348039503128e-06 +-3.983753485706856e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.867235708402093e-10 --4.424097250610919e-07 +-6.228458170335291e-12 +-3.444160649332622e-09 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -134,26 +134,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.00140599612163296 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --7.810484157709193e-10 --4.424097451707373e-07 -[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +-6.206629807996921e-12 +-3.444160731962981e-09 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224744870610541e+00 - 1.732050365159132e+00 + 1.224744871385382e+00 + 1.732050804124716e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 2.534390902427379e-12 --8.727570079475755e-12 + 3.745106122235791e-13 +-3.370426802579753e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.786864426969275e-05 --1.010802905147492e-02 +-1.576645083620417e-06 +-8.918851423525020e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.082482874197145e-09 --6.123446033270697e-07 +-5.307087768712286e-10 +-3.000482921834722e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -173,48 +173,87 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.074628153174405e-09 --6.123446305845441e-07 +-5.288074344618042e-10 +-3.000482988558768e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224744870316961e+00 - 1.732050195224247e+00 + 1.224744870862781e+00 + 1.732050507520578e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --1.572417373164042e-11 - 3.957544271800865e-12 +-2.926778654282478e-12 + 2.222056115529945e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.102193442965980e-05 --1.189179771748711e-02 +-1.471535410746999e-05 +-8.324259903136431e-03 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224744871391589e+00 + 1.732050807568877e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.082482907098963e-09 +-6.123446052504915e-07 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.2499781581065444, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.3535225014913209, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.168070754129446e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.168070754129446e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749870902664 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.240163117980688e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.078602624717070e-09 +-6.123446188416722e-07 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224744870312986e+00 + 1.732050195224258e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-7.769418155780860e-12 + 1.958535474437245e-12 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.102193442972801e-05 +-1.189179771748703e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744870309106e+00 1.732050195224277e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00671992349786713, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00645112655795245, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.6407953872611 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.74232503124238e-10 - 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 4.440892098500626e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00645112655795245 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00883306917774521, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0084797464106354, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.9626087705981e-11 + 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = - 6.638452836376340e-16 --1.379181051519915e-16 + 3.012479618476830e-16 +-4.726877470450377e-17 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = -2.102193442979462e-05 -1.189179771748691e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00332854930458573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.780757974872087e-08 --3.835774603853926e-05 +-4.403038623702346e-08 +-2.490733896568293e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -237,26 +276,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = - 4.106576873181635e-07 --3.932337140776740e-05 + 8.722002408671879e-08 +-2.517196199272420e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224745280966793e+00 - 1.732010871852869e+00 + 1.224744957529130e+00 + 1.732025023262284e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 2.966706207060811e-04 --5.987324452699412e-04 + 1.253287076981611e-04 +-2.526838742387707e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.794357998387111e-04 --3.840728004048381e-01 +-4.485590258903313e-04 +-2.536656219718786e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00224476004284972 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.199493442690216e-07 --2.899004722580756e-04 +-1.221534562687040e-06 +-7.807099754711342e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -279,26 +318,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.192767113539394e-07 --2.899012187667875e-04 +-1.221908760567277e-06 +-7.807098064248849e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744251032395e+00 - 1.731760294005510e+00 + 1.224743648400346e+00 + 1.731269485417852e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = - 4.050384761771544e-07 --4.388184216620371e-07 +-4.449728488519436e-07 + 3.367379125990902e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --4.582095722746319e-04 --2.591589661363382e-01 +-7.508731289885935e-04 +-4.245669689880614e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00410268449154003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.144229503968731e-06 --9.703982748658864e-04 +-7.505106596680054e-07 +-4.998393785787074e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -321,26 +360,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.142225753914586e-06 --9.703998811165129e-04 +-7.508699176865163e-07 +-4.998391455553608e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224742728083352e+00 - 1.731079795343160e+00 + 1.224744119439189e+00 + 1.731550356078722e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = - 1.106923196774777e-06 --7.249510682412585e-07 +-3.789227291723935e-07 + 2.942581787482170e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.374560811965147e-04 --4.734712157838854e-01 +-6.008799664910189e-04 +-3.398111762399963e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00558644359986909 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.312101092422723e-06 --1.798735866304803e-03 +-1.324435599763874e-07 +-3.087299214106880e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -363,26 +402,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.307249102747105e-06 --1.798739234644042e-03 +-1.322589965071566e-07 +-3.087307680520368e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224740563060003e+00 - 1.730251455989633e+00 + 1.224744738050110e+00 + 1.732019322147472e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 3.009333591591614e-06 --2.087652175869839e-06 + 1.761099034274036e-07 +-8.059104128018762e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.140326104794326e-03 --6.443951160739589e-01 +-1.508410112316067e-04 +-8.532700476193940e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00655411258356196 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.383126113536366e-06 --2.477742898487328e-03 +-3.884359646608259e-06 +-2.103154345250727e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -411,48 +450,96 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006656918969127018 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.383163222269969e-06 --2.477742832095051e-03 +-3.883815868505790e-06 +-2.103154837846137e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224740487145884e+00 - 1.729572452392182e+00 + 1.224740986493238e+00 + 1.729947040386431e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --2.135229898016881e-08 - 4.282771978330489e-08 + 5.200207262655104e-07 +-4.695933916348701e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --1.337847839796577e-03 --7.557196336461041e-01 +-1.232663043989930e-03 +-6.964534571128101e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224744870309106e+00 + 1.732050195224277e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-7.517056820467860e-06 +-4.247369129966323e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 1735.696266435071, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 2454.645200152823, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.806765737992726 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.563499989384819e-16 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.563499989384819e-16 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.889229165088 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.002718457019141684, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.003844478785198506, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 3.315013662036427e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 3.315013662036427e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.002713245768397989 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-7.517192382398384e-06 +-4.247368868534333e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224737353116724e+00 + 1.727802826355743e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.262819677265137e-07 + 2.528063739408919e-07 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-1.751932167891296e-03 +-9.886134615373062e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224740487151591e+00 - 1.729572495016884e+00 + 1.224737353124336e+00 + 1.727803079448646e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00380277404237487, h_cfl = 6.45112655795245e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00365066308067988, h_cfl = 3.22556327897622e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.565895436693863 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.0041006787317522 - 6.554112583561956e-03 1.224740487151591e+00 1.729572495016884e+00 2.946975996565016e-11 2.206064220189319e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411258356196, h = 0.00365066308067988 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411258356196 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0050699916222012, h_cfl = 8.4797464106354e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00486719195731315, h_cfl = 4.2398732053177e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.573978480206514 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228354849744912 + 8.582732436244913e-03 1.224737353124336e+00 1.727803079448646e+00 6.165579158334822e-11 2.519142672241514e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486719195731315 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = - 1.224740487151591e+00 - 1.729572495016884e+00 + 1.224737353124336e+00 + 1.727803079448646e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.136373772420610e-11 - 2.058715195519611e-10 + 2.492687557044697e-10 +-2.827421584101487e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --1.337847839790342e-03 --7.557196150216613e-01 +-1.751932167880407e-03 +-9.886133167227411e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00837944412390189 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00978492884970126 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151591e+00 - 1.729572495016884e+00 + 1.224737353124336e+00 + 1.727803079448646e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.442015905022889e-06 --1.379438848764702e-03 +-2.106166419009627e-06 +-1.188507383829219e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -475,26 +562,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.355299672613734e-06 --1.379613644374814e-03 +-2.081390597635186e-06 +-1.188557297798552e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224738131851919e+00 - 1.728192881372509e+00 + 1.224735271733739e+00 + 1.726614522150848e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 9.473988312584611e-05 --1.909733432095170e-04 + 4.101377470723995e-05 +-8.263031665055967e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.710436265059755e-03 --9.652018631544285e-01 +-1.997324020453067e-03 +-1.126202881210895e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00776613272634767 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350100859744 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151591e+00 - 1.729572495016884e+00 + 1.224737353124336e+00 + 1.727803079448646e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.790715544847301e-06 --1.000202215551731e-03 +-3.995551790945722e-06 +-2.269988537844492e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -517,26 +604,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.790482851781279e-06 --1.000202619972454e-03 +-3.995142760690005e-06 +-2.269989419260284e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224738696668740e+00 - 1.728572292396911e+00 + 1.224733357981576e+00 + 1.725533090029386e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = - 1.107969715756071e-07 --1.547888929304741e-07 +-6.331292226800329e-08 + 2.125119179592694e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.585247261616345e-03 --8.949517374725695e-01 +-2.170841828910038e-03 +-1.223390143399643e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.01021324174194482 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132417419448 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151591e+00 - 1.729572495016884e+00 + 1.224737353124336e+00 + 1.727803079448646e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.628228879523811e-06 --2.004737896624731e-03 +-3.102942429964217e-06 +-1.764166497603381e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -559,26 +646,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.628109308433671e-06 --2.004737890918151e-03 +-3.102706775558605e-06 +-1.764167021740043e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224736859042283e+00 - 1.727567757125966e+00 + 1.224734250417561e+00 + 1.726038912426906e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = - 1.316293331060020e-07 - 6.868153519418230e-09 +-5.719331218870492e-08 + 2.651626940965561e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.799857938950768e-03 --1.015519218622998e+00 +-2.084751075929079e-03 +-1.175218773875949e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.008947771833043398 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0089477718330434 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151591e+00 - 1.729572495016884e+00 + 1.224737353124336e+00 + 1.727803079448646e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.338300710456768e-06 --2.897736704487339e-03 +-6.677233014990733e-07 +-3.685708227538193e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -601,26 +688,26 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.337927395846944e-06 --2.897736803673657e-03 +-6.677098032970409e-07 +-3.685708189351618e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224735149224196e+00 - 1.726674758213210e+00 + 1.224736685414533e+00 + 1.727434508629711e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 4.103251004221358e-07 --1.073917944483702e-07 + 2.935235583110178e-09 + 4.539507862187760e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.971247845412680e-03 --1.111644852487838e+00 +-1.826444113063039e-03 +-1.030440158511644e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0102047756642418 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0119897668063641 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151591e+00 - 1.729572495016884e+00 + 1.224737353124336e+00 + 1.727803079448646e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.244237094839627e-06 --3.523606907892102e-03 +-7.184252855861910e-06 +-4.031769658025377e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -649,56 +736,104 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001410289763273809 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.244231330306126e-06 --3.523606924522105e-03 +-7.184136475807547e-06 +-4.031769829352219e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224734242920261e+00 - 1.726048888092361e+00 + 1.224730168987860e+00 + 1.723771309619294e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = - 8.219480524149682e-09 --1.632054434716060e-08 + 1.952572803041914e-07 +-2.833845699427187e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.083023032875643e-03 --1.174251381297420e+00 +-2.447371643196113e-03 +-1.377815156414020e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499243935581 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224737353124336e+00 + 1.727803079448646e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.094459118248338e-05 +-6.165531758597682e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2524.627810473625, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 3570.362889516092, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 1.503016169962119 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.200228842881807e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.200228842881807e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.120349586974 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.003298297688278241, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 0.004664497323506916, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 2.308595340591967e-06 +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 1, p-solves = 0, resnorm = 2.308595340591967e-06 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003294669935556694 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.094474188932949e-05 +-6.165531463953559e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224726408382447e+00 + 1.721637547984693e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.468764156235096e-07 + 4.940041014946046e-07 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.745412932412359e-03 +-1.543681915800524e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224734242922404e+00 - 1.726048871574017e+00 + 1.224726408387387e+00 + 1.721638042281484e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0219022787840823, h_cfl = 3.65066308067988e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.021026187632719, h_cfl = 1.82533154033994e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.75955303681522 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000413855519066101 - 1.020477566424183e-02 1.224734242922404e+00 1.726048871574017e+00 3.169020601490047e-11 2.147166888732954e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0323678508513491, h_cfl = 4.86719195731315e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0310731368172952, h_cfl = 2.43359597865657e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.38420203883814 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250838084546844 + 1.344992439355806e-02 1.224726408387387e+00 1.721638042281484e+00 6.685163533859395e-11 2.568647516909550e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047756642418 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066308067988 -Current step size = 0.021026187632719 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 47 -NLS iters = 27 -NLS fails = 0 -NLS iters per step = 10.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 33 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 33 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 29 -LS iters per NLS iter = 1.07407407407407 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.0134499243935581 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719195731315 +Current step size = 0.0310731368172952 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 55 +NLS iters = 32 +NLS fails = 0 +NLS iters per step = 10.6666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 33 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 33 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 33 +LS iters per NLS iter = 1.03125 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out index 256c0bfd52..237fb4ec44 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl5_2_1_1.out @@ -17,13 +17,13 @@ Using dense direct linear solver -0.000000000000000e+00 -0.000000000000000e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.543754832554857e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 2.54375483255486e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.017488092132379e-21 - 2.133686292096463e-21 + 1.490639117513395e-21 + 1.054041028295653e-21 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -32,26 +32,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2.368573862746562e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = - 1.956630432318020e-12 --3.937823545522448e-12 + 2.358884585428673e-13 +-4.747272800678816e-13 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224744871393546e+00 - 1.732050807564939e+00 + 1.224744871391825e+00 + 1.732050807568402e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 7.599595837588729e-08 --1.529459371480922e-07 + 1.854647758468320e-08 +-3.732492423360170e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.051096721952554e-05 --5.945899909806380e-03 +-5.192417808187580e-06 +-2.937274947948774e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 3.41913605023568e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 4.34246112433045e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.197521095247176e-10 --6.749419268841759e-08 +-1.921733874414383e-10 +-1.088713274174254e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -60,26 +60,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.0444441057897963 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.197520755388791e-10 --6.749419271704656e-08 +-1.921733983258580e-10 +-1.088713274083279e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744871271837e+00 - 1.732050740074685e+00 + 1.224744871199416e+00 + 1.732050698697550e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = - 1.317645966555847e-12 --1.107386138454019e-12 +-8.552864629954594e-13 + 7.143367850972273e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --6.979282236182966e-06 --3.948078084147104e-03 +-8.864011650673487e-06 +-5.014241882978963e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 6.38513358778952e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 3.45003185791853e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.178589121458505e-10 --2.353817846525954e-07 +-1.212431848369958e-10 +-6.872086260979687e-08 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -88,26 +88,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.02805364232183439 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.178587767208325e-10 --2.353817847655235e-07 +-1.212431939459776e-10 +-6.872086260218836e-08 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224744870973730e+00 - 1.732050572187092e+00 + 1.224744871270346e+00 + 1.732050738848015e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = - 5.257771413718879e-12 --4.381472606879587e-12 +-7.159739172394168e-13 + 5.981552936772426e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.303359935358281e-05 --7.372916189451292e-03 +-7.042348039505632e-06 +-3.983753485706853e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 8.75381217680821e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 7.72395192071313e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.867232500163708e-10 --4.424097251417847e-07 +-6.228462175737922e-12 +-3.444160648334647e-09 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -116,32 +116,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.001405996121470046 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.2284568554284771e-12 --3.4441606527614664e-09 - +-6.228456855428477e-12 +-3.444160652761466e-09 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = -1.2247448713853606e+00 -1.7320508041247165e+00 - + 1.224744871385361e+00 + 1.732050804124716e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = -4.1802229080014114e-13 --3.4792059990211575e-13 - + 4.180222908001411e-13 +-3.479205999021158e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.5766450836204445e-06 --8.9188514235250200e-04 - +-1.576645083620444e-06 +-8.918851423525020e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.209021792665588e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 7.20902179266559e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = -1.2247448713915889e+00 -1.7320508075688772e+00 - + 1.224744871391589e+00 + 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.3070872848419706e-10 --3.0004829219564342e-07 - +-5.307087284841971e-10 +-3.000482921956434e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -155,26 +149,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.259048948413402e-13 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --7.867228923074513e-10 --4.424097254400453e-07 +-5.307087173006615e-10 +-3.000482922049936e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224744870604866e+00 - 1.732050365159152e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 1.389349418390794e-11 --1.158450834620550e-11 -[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.786864426977554e-05 --1.010802905147481e-02 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = + 1.224744870860880e+00 + 1.732050507520585e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = + 8.792938921718925e-13 +-7.351455128864254e-13 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = +-1.471535410749284e-05 +-8.324259903136400e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.000102986025609508 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.082482739236659e-09 --6.123446033610183e-07 +-1.082482739254287e-09 +-6.123446052926929e-07 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -183,30 +177,30 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2499749871485559 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.082482739968958e-09 --6.123446033595462e-07 +-1.082482739888513e-09 +-6.123446052914206e-07 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 1 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = 1.224744870309106e+00 - 1.732050195224274e+00 -[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --1.301221510004719e-15 - 3.157670169000300e-15 -[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = + 1.732050195224272e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.134505635367971e-15 + 4.824238419726803e-15 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = -2.102193442979462e-05 --1.189179771748693e-02 +-1.189179771748694e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744870309106e+00 1.732050195224277e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00671992595128985, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00645112891323825, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 62.6408182572164 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.74231985255431e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00883306917774521, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0084797464106354, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.96260358491064e-11 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 0.000000000000000e+00 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00645112891323825 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0084797464106354 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744870309106e+00 @@ -218,13 +212,13 @@ Using dense direct linear solver -2.102193442979461e-05 -1.189179771748691e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00332855048222863 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00219748338903645 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.780760450651468e-08 --3.835776004283006e-05 +-4.403038623759303e-08 +-2.490733896568279e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -238,26 +232,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.016614577411573e-06 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = - 4.106578502488779e-07 --3.932338579555043e-05 + 8.721993795044764e-08 +-2.517196182009491e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224745280966957e+00 - 1.732010871838481e+00 + 1.224744957529044e+00 + 1.732025023262457e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 2.966708377383890e-04 --5.987328827061323e-04 + 1.253287079564259e-04 +-2.526838744545261e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --6.794360402225594e-04 --3.840729360924409e-01 +-4.485590258903628e-04 +-2.536656219718534e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00224476082480461 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00367851667789299 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.199498196330883e-07 --2.899006744256987e-04 +-1.221534562361340e-06 +-7.807099754713296e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -271,26 +265,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 9.187893730682911e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.192964865413311e-07 --2.899013822231200e-04 +-1.222000271908111e-06 +-7.807096230629376e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224744251012620e+00 - 1.731760293842054e+00 + 1.224743648308835e+00 + 1.731269485601214e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = - 4.050969065655120e-07 --4.388673243403577e-07 +-4.446981457975710e-07 + 3.365087951017479e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --4.582097318975818e-04 --2.591590563773238e-01 +-7.508731290446976e-04 +-4.245669689430947e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00410268595181722 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00294370107317237 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.144231027141941e-06 --9.703989659337479e-04 +-7.505107482694159e-07 +-4.998393785342568e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -304,26 +298,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 3.764993563400174e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.142444746651001e-06 --9.704001360015572e-04 +-7.509074566568488e-07 +-4.998390704710553e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224742727864360e+00 - 1.731079795088275e+00 + 1.224744119401650e+00 + 1.731550356153806e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = - 1.107576993035880e-06 --7.254964673672054e-07 +-3.788101094618903e-07 + 2.941643251733666e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --8.374563794221056e-04 --4.734713839988317e-01 +-6.008799665094360e-04 +-3.398111762252614e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00558644560186202 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.000738967006407164 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.312103116065720e-06 --1.798737155944588e-03 +-1.324438015130134e-07 +-3.087299196752394e-05 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -337,26 +331,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.438321343380526e-07 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.307249720213732e-06 --1.798740522874548e-03 +-1.322593696380069e-07 +-3.087307636703998e-05 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224740563059386e+00 - 1.730251454701402e+00 + 1.224744738049737e+00 + 1.732019322147910e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 3.009331182579705e-06 --2.087653188463474e-06 + 1.761108688104458e-07 +-8.059166615179380e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.140326513445058e-03 --6.443953465214798e-01 +-1.508410112316526e-04 +-8.532700476191780e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.006038808513054291 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00603880851305429 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = 1.224744870309106e+00 1.732050195224277e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.383126319834061e-06 --2.477744680621206e-03 +-3.884359089838668e-06 +-2.103154345295510e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -370,48 +364,81 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0006675017140435614 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --4.383160774113160e-06 --2.477744611545688e-03 +-3.883814501279800e-06 +-2.103154837076660e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224740487148332e+00 - 1.729572450612731e+00 + 1.224740986494605e+00 + 1.729947040387200e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = --2.136325574511599e-08 - 4.283003427992505e-08 + 5.200183762225624e-07 +-4.695934773055388e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --1.337848320555999e-03 --7.557199044417758e-01 +-1.232663043988554e-03 +-6.964534571125004e-01 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.00858273243624491 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224744870309106e+00 + 1.732050195224277e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-7.517055759108773e-06 +-4.247369132527718e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 1733.884798165494 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00272110725063923 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-7.517188016479663e-06 +-4.247368867775086e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224737353121090e+00 + 1.727802826356502e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-1.262903202865005e-07 + 2.528077978468415e-07 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-1.751932167885051e-03 +-9.886134615368719e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224740487151368e+00 - 1.729572493235030e+00 + 1.224737353125386e+00 + 1.727803079447940e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00380277912621703, h_cfl = 6.45112891323825e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00365066796116835, h_cfl = 3.22556445661913e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.565895986619779 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00410065531616961 - 6.554114938847760e-03 1.224740487151368e+00 1.729572493235030e+00 2.654254593892347e-11 2.225244433162743e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00655411493884776, h = 0.00365066796116835 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00655411493884776 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0050699919030929, h_cfl = 8.4797464106354e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00486719222696918, h_cfl = 4.2398732053177e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.573978512006525 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00228354784306147 + 8.582732436244913e-03 1.224737353125386e+00 1.727803079447940e+00 6.060552060205282e-11 2.512077212912800e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00858273243624491, h = 0.00486719222696918 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00858273243624491 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = - 1.224740487151368e+00 - 1.729572493235030e+00 + 1.224737353125386e+00 + 1.727803079447940e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_0(:) = --5.817712679240783e-11 - 2.092531303512937e-10 + 2.468149351683011e-10 +-2.815104608990131e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = --1.337848320552683e-03 --7.557198858183766e-01 +-1.751932167878905e-03 +-9.886133167231453e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00837944891943193 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0097849289163063 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151368e+00 - 1.729572493235030e+00 + 1.224737353125386e+00 + 1.727803079447940e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.442020053468623e-06 --1.379441187196495e-03 +-2.106166537170314e-06 +-1.188507449675595e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -425,26 +452,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0001400250965491854 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --2.355553181220959e-06 --1.379615483295073e-03 +-2.081513007516100e-06 +-1.188557118802187e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_1(:) = - 1.224738131598186e+00 - 1.728192877751735e+00 + 1.224735271612379e+00 + 1.726614522329138e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_1(:) = - 9.474087832669662e-05 --1.909744742566761e-04 + 4.101414380624049e-05 +-8.263063055585769e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = --1.710437244268601e-03 --9.652024123775750e-01 +-1.997324034246136e-03 +-1.126202888662441e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00776613670195565 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.0106350101996763 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151368e+00 - 1.729572493235030e+00 + 1.224737353125386e+00 + 1.727803079447940e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.790718928148534e-06 --1.000203992715193e-03 +-3.995551770437731e-06 +-2.269988676888282e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -458,26 +485,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0004483582992973109 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --1.790617453338206e-06 --1.000204134283504e-03 +-3.995589024434798e-06 +-2.269988664784665e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_2(:) = - 1.224738696533914e+00 - 1.728572289100746e+00 + 1.224733357536362e+00 + 1.725533090783155e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_2(:) = - 1.111849244286639e-07 --1.551149678237623e-07 +-6.197655305947990e-08 + 2.013583730131185e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = --1.585248073288056e-03 --8.949521936291133e-01 +-2.170841852907392e-03 +-1.223390155746994e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00881752907477213 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0102132418322796 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151368e+00 - 1.729572493235030e+00 + 1.224737353125386e+00 + 1.727803079447940e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.628235698325038e-06 --2.004741581465170e-03 +-3.102942642449569e-06 +-1.764166603706063e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -491,26 +518,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0002707998091281837 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --3.628115571068773e-06 --2.004741575194070e-03 +-3.102976536428763e-06 +-1.764166588171891e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_3(:) = - 1.224736859035797e+00 - 1.727567751659836e+00 + 1.224734250148850e+00 + 1.726038912859768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_3(:) = - 1.316222210395166e-07 - 6.871181107849010e-09 +-5.638675522456840e-08 + 2.584298343993854e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = --1.799859037355320e-03 --1.015519835152673e+00 +-2.084751094825186e-03 +-1.175218783830905e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00965718270584085 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0089477718532676 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151368e+00 - 1.729572493235030e+00 + 1.224737353125386e+00 + 1.727803079447940e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.338311664547483e-06 --2.897742154012963e-03 +-6.677237142418544e-07 +-3.685708433521803e-04 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -524,26 +551,26 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 1.181473423917798e-05 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --5.337937179687871e-06 --2.897742252024264e-03 +-6.677219296971952e-07 +-3.685708160824130e-04 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_4(:) = - 1.224735149214188e+00 - 1.726674750983005e+00 + 1.224736685403457e+00 + 1.727434508631857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_4(:) = - 4.103192763403265e-07 --1.073899914862367e-07 + 2.968807234744090e-09 + 4.536657288276652e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = --1.971249172939829e-03 --1.111645596456123e+00 +-1.826444117207667e-03 +-1.030440160814501e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0102047829000161 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0119897669951233 [DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = - 1.224740487151368e+00 - 1.729572493235030e+00 + 1.224737353125386e+00 + 1.727803079447940e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.244248767465176e-06 --3.523613624638300e-03 +-7.184251472648594e-06 +-4.031769916951210e-03 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -557,56 +584,89 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001414605565722521 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = --6.244241274878189e-06 --3.523613639531064e-03 +-7.184134108076308e-06 +-4.031770087292869e-03 [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_5(:) = - 1.224734242910093e+00 - 1.726048879595498e+00 + 1.224730168991278e+00 + 1.723771309360647e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_5(:) = - 8.209552090862255e-09 --1.631785049386921e-08 + 1.952502346280095e-07 +-2.833840580233567e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_5(:) = --2.083024509825088e-03 --1.174252208096812e+00 +-2.447371681717292e-03 +-1.377815177894831e+00 +[INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 6, implicit = 1, tcur = 0.0134499246632141 +[DEBUG][rank 0][arkStep_TakeStep_Z][predictor] zpred(:) = + 1.224737353125386e+00 + 1.727803079447940e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = +-1.094458910047650e-05 +-6.165532185036037e-03 +[INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 2523.115136876571 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue +[INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.003307199228182218 +[INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success +[DEBUG][rank 0][arkStep_Nls][correction] zcor(:) = +-1.094473750745215e-05 +-6.165531888084034e-03 +[INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit stage] z_6(:) = + 1.224726408387879e+00 + 1.721637547559856e+00 +[DEBUG][rank 0][arkStep_TakeStep_Z][implicit RHS] Fi_6(:) = +-2.468930473816117e-07 + 4.940157616692895e-07 +[DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_6(:) = +-2.745412987439341e-03 +-1.543681946380435e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = - 1.224734242910499e+00 - 1.726048863075356e+00 + 1.224726408390497e+00 + 1.721638041863508e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0219022863431355, h_cfl = 3.65066796116835e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.02102619488941, h_cfl = 1.82533398058417e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.75954732478078 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000413856921149471 - 1.020478290001611e-02 1.224734242910499e+00 1.726048863075356e+00 2.852318381485475e-11 2.167570567479515e-10 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0323679044372543, h_cfl = 4.86719222696919e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0310731882597642, h_cfl = 2.43359611348459e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.38421225436447 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000250835982466583 + 1.344992466321410e-02 1.224726408390497e+00 1.721638041863508e+00 6.300071575537913e-11 2.551518996085633e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0102047829000161 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.00365066796116835 -Current step size = 0.02102619488941 -Explicit RHS fn evals = 20 -Implicit RHS fn evals = 46 -NLS iters = 26 -NLS fails = 0 -NLS iters per step = 8.66666666666667 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0384615384615385 -Prec evals per NLS iter = 0 +Current time = 0.0134499246632141 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00486719222696918 +Current step size = 0.0310731882597642 +Explicit RHS fn evals = 23 +Implicit RHS fn evals = 54 +NLS iters = 31 +NLS fails = 0 +NLS iters per step = 10.3333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.032258064516129 +Prec evals per NLS iter = 0 End ARKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out index cf80f33b75..12a95c6ace 100644 --- a/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out +++ b/test/unit_tests/logging/test_logging_arkode_erkstep_lvl5.out @@ -11,37 +11,37 @@ Start ERKStep Logging test 1.171999045219503e-16 8.287284724188699e-17 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.119441024380336e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 4.11944102438034e-05 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.043496537897763e-05 --5.946052860646057e-03 +-8.360132597416402e-06 +-4.756818119085545e-03 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.179161536570504e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 6.1791615365705e-05 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.058698081617044e-05 --5.945748000209881e-03 +-1.268613372466950e-05 +-7.134934008088961e-03 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.000102986025609508 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --2.102191095056220e-05 --1.189179773693832e-02 +-2.096663473515184e-05 +-1.189190821131643e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 7.72395192071313e-05 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.000102986025609508 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.576644642703775e-05 --8.918849671266287e-03 +-2.102193442949337e-05 +-1.189179771748695e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = 1.224744870309106e+00 1.732050195224277e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00897229833671632, h_cfl = 1.02986025609508e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00888257535334916, h_cfl = 5.14930128047542e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 86.2502975600706 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.41924903763708e-08 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0217585207051027, h_cfl = 1.02986025609508e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0215409354980517, h_cfl = 5.14930128047542e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 209.163674105925 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.59451001562519e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224277e+00 2.220446049250313e-16 0.000000000000000e+00 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00888257535334916 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0215409354980517 [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.000102986025609508 [DEBUG][rank 0][erkStep_TakeStep][stage] z_0(:) = 1.224744870309106e+00 @@ -50,37 +50,37 @@ Start ERKStep Logging test -2.102193442949337e-05 -1.189179771748695e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00454427370228409 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00871936022483019 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --3.625987201943709e-04 --5.251586361293774e-01 + 3.427875016608340e-04 +-1.006061005611773e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00454427370228409 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0130275473244405 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.499349780659759e-03 --5.235704258241071e-01 +-5.933525289159925e-03 +-1.494916776735215e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00898556137895866 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0216439215236612 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.822007051315857e-03 --1.034772701159183e+00 +-1.860853156800079e-03 +-2.457920874518047e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00676491754062138 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0216439215236612 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.378667673420380e-03 --7.799540173582585e-01 +-4.417513047362663e-03 +-2.460013610428244e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = - 1.224736628869178e+00 - 1.727395544204769e+00 + 1.224696861227145e+00 + 1.705216058315891e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00117830976664616, h_cfl = 8.88257535334916e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0011665266689797, h_cfl = 4.44128767667458e+27 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.13132752862489 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 2.46247515531987, kflag = 5 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0011665266689797 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00676491754062138 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00189997443642627, h_cfl = 2.15409354980517e+28 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00215409354980517, h_cfl = 1.07704677490259e+28 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 0.1 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = failed error test, dsm = 3.14020178746167, kflag = 5 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00215409354980517 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.0216439215236612 [DEBUG][rank 0][erkStep_TakeStep][stage] z_0(:) = 1.224744870309106e+00 1.732050195224277e+00 @@ -88,86 +88,86 @@ Start ERKStep Logging test -2.102193442949337e-05 -1.189179771748695e-02 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000686249360099358 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.000964623445531577 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.303290419262240e-04 --7.925873161023209e-02 +-1.756233426413182e-04 +-1.114217343451547e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.000686249360099358 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00139544215549261 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.498478708720716e-04 --7.922126846267036e-02 +-3.168645343085730e-04 +-1.610629894742690e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00126951269458921 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225707957541468 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --2.591049672526661e-04 --1.465828486538186e-01 +-4.363175075785103e-04 +-2.606223311841785e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002257079575414679 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225707957541468 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.996029076101870e-04 --1.129123803024676e-01 +-4.607242364413065e-04 +-2.605808401526039e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = - 1.224744706901909e+00 - 1.731957760691857e+00 + 1.224744351443893e+00 + 1.731756706754134e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00135115207491398, h_cfl = 1.1665266689797e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0011665266689797, h_cfl = 5.8326333448985e+26 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00222404807423718, h_cfl = 2.15409354980517e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00215409354980517, h_cfl = 1.07704677490259e+27 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 1 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000728262871970895 - 1.269512694589208e-03 1.224744706901909e+00 1.731957760691857e+00 7.771561172376096e-14 3.164135620181696e-13 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00126951269458921, h = 0.0011665266689797 -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00126951269458921 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000309364878860331 + 2.257079575414679e-03 1.224744351443893e+00 1.731756706754134e+00 1.945554828353124e-12 6.253886297713507e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00225707957541468, h = 0.00215409354980517 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 0, tcur = 0.00225707957541468 [DEBUG][rank 0][erkStep_TakeStep][stage] z_0(:) = - 1.224744706901909e+00 - 1.731957760691857e+00 + 1.224744351443893e+00 + 1.731756706754134e+00 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = --2.591381585268815e-04 --1.465828239078786e-01 +-4.607242364413065e-04 +-2.605808401526039e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185277602907906 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00311871699533675 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --3.684472091871751e-04 --2.139328606909261e-01 +-6.153388607680750e-04 +-3.600355441706103e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00185277602907906 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00354953570529778 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --3.879611205197779e-04 --2.138984619112947e-01 +-7.565389995426193e-04 +-4.096438768168740e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00243603936356891 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00441117312521985 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --4.972228094611491e-04 --2.812339715151517e-01 +-8.760501420238329e-04 +-5.090623890407202e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00214440769632398 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00441117312521985 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --4.377193521055413e-04 --2.475769190858401e-01 +-9.004254701890689e-04 +-5.090279564780155e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = - 1.224744265725872e+00 - 1.731708225192427e+00 + 1.224742885419741e+00 + 1.730927737926684e+00 [INFO][rank 0][erkStep_TakeStep][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368497103587255, h_cfl = 1.1665266689797e+27 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00364812132551383, h_cfl = 5.8326333448985e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.12733641032369 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000728392353011924 - 2.436039363568907e-03 1.224744265725872e+00 1.731708225192427e+00 1.558753126573720e-13 5.899725152858082e-13 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00780187598998323, h_cfl = 2.15409354980517e+27 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0077238572300834, h_cfl = 1.07704677490259e+27 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.5856647130214 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000313007462932101 + 4.411173125219851e-03 1.224742885419741e+00 1.730927737926684e+00 3.891109656706249e-12 1.122124615449138e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00243603936356891 -Steps = 3 -Step attempts = 4 -Stability limited steps = 0 -Accuracy limited steps = 4 -Error test fails = 1 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.0011665266689797 -Current step size = 0.00364812132551383 -RHS fn evals = 21 +Current time = 0.00441117312521985 +Steps = 3 +Step attempts = 4 +Stability limited steps = 0 +Accuracy limited steps = 4 +Error test fails = 1 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.00215409354980517 +Current step size = 0.0077238572300834 +RHS fn evals = 19 End ERKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out index 6f5ef8493d..a80ea79507 100644 --- a/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out +++ b/test/unit_tests/logging/test_logging_arkode_forcingstep_lvl5.out @@ -13,19 +13,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.999000000000000e+00 +-1.999200000000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.999000500000000e+00 +-1.998800600000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.998000999500000e+00 +-1.998000817636364e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.998500562328109e+00 +-1.998000999666750e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -41,19 +41,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.997001999166917e+00 +-1.997201799266883e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0008 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.997002498667167e+00 +-1.996802798467250e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.996003997168083e+00 +-1.996003815486219e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.996503060683062e+00 +-1.996003997334666e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -75,19 +75,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.997505152294373e-01 + 9.998004096935331e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.997504528660264e-01 + 9.997005471751909e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.995009368416509e-01 + 9.995009595157127e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.996257143504459e-01 + 9.995009368546337e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -103,19 +103,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.992513896309703e-01 + 9.993012965831953e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.992513272675214e-01 + 9.992014090897950e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.990017488211632e-01 + 9.990017714952387e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.991265575370675e-01 + 9.990017488341454e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -129,21 +129,21 @@ Start ForcingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.990017488341454e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.987521392196275e-01 + 9.988020586475305e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.987520768561716e-01 + 9.987021462040131e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.985024360501318e-01 + 9.985024587242103e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.986272759419805e-01 + 9.985024360631136e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -157,21 +157,21 @@ Start ForcingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.985024360631136e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00085 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.982527641200968e-01 + 9.983026960112048e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.982527017566651e-01 + 9.982027586425544e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.980029986533536e-01 + 9.980030213274235e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.981278696899268e-01 + 9.980029986663349e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -196,19 +196,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.997002999665667e+00 +-1.997202799865734e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.997003499166167e+00 +-1.996803798866201e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.996004997166834e+00 +-1.996004815484879e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.996504060931845e+00 +-1.996004997333418e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -224,19 +224,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.995006994834751e+00 +-1.995206595334484e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.995007493836000e+00 +-1.994807993136517e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.994009989839582e+00 +-1.994009808339218e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.994508554790276e+00 +-1.994009990005998e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -258,19 +258,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.977537628971357e-01 + 9.978036075609540e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.977537006582141e-01 + 9.977038447925554e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.975044337598309e-01 + 9.975044563886328e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.976290866589280e-01 + 9.975044337727803e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -286,19 +286,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.972551357996222e-01 + 9.973049929017438e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.972550735607247e-01 + 9.972052052580127e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.970057444895323e-01 + 9.970057671183257e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.971304284711325e-01 + 9.970057445024809e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -314,19 +314,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.967563843876727e-01 + 9.968062539156340e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.967563221488307e-01 + 9.967064414215357e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.965069309671917e-01 + 9.965069535959652e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.966316460000991e-01 + 9.965069309801400e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -342,19 +342,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.962575087860992e-01 + 9.963073907274147e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.962574465473436e-01 + 9.962075534079582e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.960079933177304e-01 + 9.960080159464726e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.961327393706944e-01 + 9.960079933306779e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -379,19 +379,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.995005999328669e+00 +-1.995205599728802e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.995006498329670e+00 +-1.994806997729737e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.994008994831004e+00 +-1.994008813330731e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.994507559532915e+00 +-1.994008994997421e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -407,19 +407,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.993011990499922e+00 +-1.993211391399422e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.993012489002171e+00 +-1.992813187803121e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.992015982508419e+00 +-1.992015801189555e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.992514048894827e+00 +-1.992015982674670e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -441,19 +441,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.957590070612821e-01 + 9.958088018251445e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.957589449468495e-01 + 9.957091390060410e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.955099276727747e-01 + 9.955099502563172e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.956344557130311e-01 + 9.955099276856904e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -469,19 +469,19 @@ Start ForcingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.952608794612281e-01 + 9.953106866136181e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.952608173468820e-01 + 9.952109990188071e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.950117381489210e-01 + 9.950117607324322e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.951362971471998e-01 + 9.950117381618361e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -495,21 +495,21 @@ Start ForcingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.950117381618361e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.947626280446779e-01 + 9.948124475731190e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.947625659304488e-01 + 9.947127352275907e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00275 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.945134248710263e-01 + 9.945134474544952e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0026875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00275 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.946380147961006e-01 + 9.945134248839409e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -523,21 +523,21 @@ Start ForcingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.945134248839409e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00285 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.942642529365655e-01 + 9.943140848285603e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.942641908224847e-01 + 9.942143477573482e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.940149879641341e-01 + 9.940150105475493e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.941396087847225e-01 + 9.940149879770479e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -552,17 +552,17 @@ Start ForcingStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 9.970030029929939e-01 2.993993026279007e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End ForcingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_0.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_0.out index b2237df0ff..317297088a 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_0.out @@ -78,21 +78,21 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.32342730346899e-12 9.774571052271429e-08 9.774571052271400e-08 2.646977960169689e-23 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_1.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_1.out index 1cdbcddbd5..fd17fb6be3 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_1.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_1.out @@ -78,21 +78,21 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.11748368555039e-12 9.774571052271429e-08 9.774571052271410e-08 1.323488980084844e-22 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 9 -Number of dom_eig updates = 1 -Max. num. of stages used = 2 -Max. num. of stages allowed = 200 -Max. spectral radius = 999.9 -Min. spectral radius = 999.9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 9 +Number of dom_eig updates = 1 +Max. num. of stages used = 2 +Max. num. of stages allowed = 200 +Max. spectral radius = 999.9 +Min. spectral radius = 999.9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_2.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_2.out index 5dde04e2f5..449f73eee5 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_2.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_2.out @@ -165,17 +165,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.01047602983307e-10 1.281744384765625e-06 1.281744384764889e-06 3.388131789017201e-20 --------------------------------------------------------------------- -Current time = 1.28174438476563e-06 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 1.220703125e-06 -Current step size = 2.44140625e-05 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 1.28174438476563e-06 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 1.220703125e-06 +Current step size = 2.44140625e-05 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_3.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_3.out index 3081295c25..502bdf7a6e 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_3.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_3.out @@ -159,17 +159,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.64685460693799e-13 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 29 -Number of stages used = 9 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 29 +Number of stages used = 9 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_4.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_4.out index f1abb38a26..97bf110561 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_4.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_4.out @@ -93,17 +93,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.64685460693799e-13 9.774571052271429e-08 9.774571052271397e-08 0.000000000000000e+00 --------------------------------------------------------------------- -Current time = 9.77457105227143e-08 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 9.30853400067517e-08 -Current step size = 1.86170680013503e-06 -RHS fn evals = 14 -Number of stages used = 4 +Current time = 9.77457105227143e-08 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 9.30853400067517e-08 +Current step size = 1.86170680013503e-06 +RHS fn evals = 14 +Number of stages used = 4 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_5.out b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_5.out index d3bf17ab32..82a58bbcb7 100644 --- a/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_5.out +++ b/test/unit_tests/logging/test_logging_arkode_lsrkstep_lvl5_5.out @@ -165,17 +165,17 @@ Start LSRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.30870562015982e-14 8.765030586579745e-09 8.765030586579742e-09 3.308722450212111e-24 --------------------------------------------------------------------- -Current time = 8.76503058657974e-09 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 3 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 8.25637088037414e-09 -Current step size = 1.65127417607483e-07 -RHS fn evals = 32 -Number of stages used = 10 +Current time = 8.76503058657974e-09 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 3 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 8.25637088037414e-09 +Current step size = 1.65127417607483e-07 +RHS fn evals = 32 +Number of stages used = 10 End LSRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out index bf5b5d708a..3c464d651c 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_0.out @@ -26,49 +26,49 @@ Using Ex-MRI-GARK method 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 - 4.740684686309824e-25 + 5.363472462651037e-25 + 3.792547749047860e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.605385668208542e-07 +-5.284308531452550e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 --3.778565806125622e-15 + 8.045208693976554e-25 +-4.534278964820709e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 1.732050807568873e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.605385631031278e-07 +-7.926462762979867e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.340868115662759e-24 --7.557131569717244e-15 +-6.183107643128006e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568870e+00 + 1.732050807568871e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.321077129931421e-06 +-1.321077131341592e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.005651086747069e-24 --4.250886515790269e-15 + 1.340868115662759e-24 +-7.557131591407494e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568873e+00 + 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.908078474683970e-07 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -78,7 +78,7 @@ Using Ex-MRI-GARK method [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -86,113 +86,113 @@ Using Ex-MRI-GARK method 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.321077130187816e-06 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --6.222451941113600e-13 + 4.416219200084156e-23 +-4.977961551924758e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807568248e+00 + 1.732050807568372e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --5.570904686127248e-05 +-4.483145086737755e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --2.623971446165533e-11 + 6.624328800126235e-23 +-3.148765590729659e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807542630e+00 + 1.732050807537382e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --5.570902124451572e-05 +-6.658661313831470e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.104054800021039e-22 --5.247940479163293e-11 +-4.316396251523771e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807525706e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100970002651333e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.280411000157793e-23 --2.975301166851349e-11 + 1.104054800021039e-22 +-5.247941685328034e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807539117e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --8.290301250483422e-05 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --8.519485979621789e-10 + 7.255296877907247e-22 +-6.815588783681561e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050806664442e+00 + 1.732050806834831e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.003626680781257e-03 +-8.249201913315123e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --7.766228088407805e-09 + 1.088294531686087e-21 +-9.319467304884009e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050799750162e+00 + 1.732050798196923e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.003619770508034e-03 +-1.182325154164649e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.813824219476811e-21 --1.553234923115737e-08 +-1.301807061325939e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050791984041e+00 + 1.732050794498320e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.897149442288220e-03 +-1.897151953812628e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.360368164607609e-21 --9.056447227802648e-09 + 1.813824219476811e-21 +-1.553240265742450e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050798459943e+00 + 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.450386336891641e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -202,7 +202,7 @@ Using Ex-MRI-GARK method [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -210,61 +210,61 @@ Using Ex-MRI-GARK method 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.897149442234820e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --2.936090793186576e-07 + 1.451059375581449e-20 +-2.348872634548944e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050498374909e+00 + 1.732050557096724e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.976902055413174e-02 +-1.619443445926535e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --3.059518557005590e-06 + 2.176589063372174e-20 +-3.671373083283668e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732047732465431e+00 + 1.732047120610904e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.976628621162498e-02 +-2.334043553263640e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.627648438953623e-20 --6.118190762355293e-06 +-5.112441511176575e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044673793225e+00 + 1.732045679542476e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.763806080342232e-02 +-3.763904469703569e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.720736329215218e-20 --3.551745333115306e-06 + 3.627648438953623e-20 +-6.118608958942269e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732047240238655e+00 + 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.870287451025137e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732044673375029e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -272,681 +272,681 @@ Using Ex-MRI-GARK method 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.763806039431327e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.388273736413877e-07 + 3.458319534077176e-22 +-1.110618989131094e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732044534547655e+00 + 1.732044562313130e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.806396587819438e-02 +-3.797878466688875e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.403983190920096e-07 + 5.187479301115764e-22 +-1.684779822767520e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732044532976710e+00 + 1.732044504897046e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.806396434177242e-02 +-3.814914530311398e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.645798835192939e-22 --2.807966268498843e-07 +-2.802253743688813e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044392578402e+00 + 1.732044393149654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.848986972070141e-02 +-3.848987027925907e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.484349126394704e-22 --2.100083698679253e-07 + 8.645798835192939e-22 +-2.807966323879119e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732044463366659e+00 + 1.732044392578396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.827691742853397e-02 +-3.848986972069577e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_1(:) = --6.806406062879225e-05 +-6.806406062904865e-05 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00075 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.531441364149290e-04 +-1.531441364155059e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.848986972069628e-02 +-3.848986972069577e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.129739313042564e-08 --2.839385169768619e-06 +-9.037914504374555e-09 +-2.271508135814865e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860094196e+00 - 1.732041553193227e+00 + 1.224744862353675e+00 + 1.732042121070260e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --4.700824941796365e-02 +-4.530452861148729e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.129739313042564e-08 --3.467783269278776e-06 +-1.355687175656183e-08 +-4.161334958396014e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860094196e+00 - 1.732040924795127e+00 + 1.224744857834717e+00 + 1.732040231243438e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --4.700763807471475e-02 +-4.871125949587549e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.259478626085127e-08 --6.935476341372310e-06 +-2.259478626093639e-08 +-6.706971085636169e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744848796803e+00 - 1.732037457102055e+00 + 1.732037685607311e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.552596611653807e-02 +-5.552618729631707e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.694608969563845e-08 --4.965992030820221e-06 +-2.259478626093639e-08 +-6.935520169763402e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854445499e+00 - 1.732039426586366e+00 + 1.224744848796803e+00 + 1.732037457058226e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.126696196790888e-02 +-5.552596607411438e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744848796803e+00 - 1.732037457058227e+00 + 1.732037457058226e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788660851858, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157114417783, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.30812367862605 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161864018577e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00172842521625946, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928820760908, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.2464113041003 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321594358247e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000269127317202885 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744848796803e+00 - 1.732037457058227e+00 + 1.732037457058226e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.552596607411488e-02 +-5.552596607411438e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000615436341398557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000588523609678269 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.060763528935124e-08 --7.471777142312468e-06 +-1.648610823154309e-08 +-5.977421713849921e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744828189167e+00 - 1.732029985281085e+00 + 1.224744832310694e+00 + 1.732031479636513e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.106457503714970e-02 +-6.795671298027009e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000615436341398557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000642349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.060763528935124e-08 --9.562709213955598e-06 +-2.472916234731464e-08 +-1.147522274503619e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744828189167e+00 - 1.732027894349013e+00 + 1.224744824067640e+00 + 1.732025981835481e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.106256989411690e-02 +-7.417010378252313e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.121527057870247e-08 --1.912487878914617e-05 +-4.121527057885773e-08 +-1.836455580816529e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744807581532e+00 - 1.732018332179438e+00 + 1.732019092502418e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --8.660092001755119e-02 +-8.660164232423241e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000682718170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00075 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.091145293402685e-08 --1.355976410643057e-05 +-4.121527057885773e-08 +-1.912513699839883e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744817885350e+00 - 1.732023897294120e+00 + 1.224744807581532e+00 + 1.732018331921228e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --7.883228211451955e-02 +-8.660091977225205e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744807581532e+00 - 1.732018331921229e+00 + 1.732018331921228e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00234276892422077, h_cfl = 2.69127317202885e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00224905816725194, h_cfl = 1.34563658601442e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.35685574629519 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.06135212545027e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00352358095495283, h_cfl = 2.69127317202885e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00338263771675472, h_cfl = 1.34563658601442e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.5689125574892 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.52483663017869e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744807581532e+00 - 1.732018331921229e+00 + 1.732018331921228e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = --1.530803019979747e-04 +-1.530803019981670e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.530079563254264e-04 +-1.530079563251828e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00075, h = 0.00025 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00075 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744807581532e+00 - 1.732018331921229e+00 + 1.732018331921228e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --8.660091977225243e-02 +-8.660091977225205e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00085 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.912599454067828e-08 --1.082511497153154e-05 +-1.530079563251827e-08 +-8.660091977225198e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744788455538e+00 - 1.732007506806257e+00 + 1.224744792280736e+00 + 1.732009671829251e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.010345703886573e-01 +-9.814772926285063e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000875 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0009 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.912599454067828e-08 --1.262932129858215e-05 +-2.295119344877741e-08 +-1.515516474532503e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744788455538e+00 - 1.732005702599930e+00 + 1.224744784630339e+00 + 1.732003176756483e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.010328714276992e-01 +-1.039194304467819e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.825198908135656e-08 --2.525821785692477e-05 +-3.825198908129567e-08 +-2.460215201478012e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769329543e+00 - 1.731993073703372e+00 + 1.731993729769213e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662049835078e-01 +-1.154668173115190e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0009375 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.868899181101742e-08 --1.826724777467533e-05 +-3.825198908129567e-08 +-2.525841701618850e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744778892540e+00 - 1.732000064673454e+00 + 1.224744769329543e+00 + 1.731993073504212e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.082500053983899e-01 +-1.154662047976253e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769329543e+00 - 1.731993073504213e+00 + 1.731993073504212e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00209267799391301, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00200897087415649, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.03588349662598 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53493868930233e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00351400165016488, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00337344158415828, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.4937663366331 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.61386796390857e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744769329543e+00 - 1.731993073504213e+00 + 1.731993073504212e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.224744769329543e+00 - 1.731993073504213e+00 + 1.731993073504212e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 1.000000000000000e-03 1.224744769329543e+00 1.731993073504212e+00 2.242650509742816e-14 3.330669073875470e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.224744769329543e+00 - 1.731993073504213e+00 + 1.731993073504212e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_0(:) = --2.041241282674955e-04 +-2.041241282678160e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041241282674955e-04 +-2.041241282678160e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744769329543e+00 - 1.731993073504213e+00 + 1.731993073504212e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662047976259e-01 +-1.154662047976253e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068804458254e-08 --1.924436746627096e-05 +-2.721655043570877e-08 +-1.539549397301669e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744735308855e+00 - 1.731973829136746e+00 + 1.224744742112993e+00 + 1.731977678010239e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.347104280868105e-01 +-1.308614057773048e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068804458254e-08 --2.245173801446839e-05 +-4.082482565356315e-08 +-2.694204120444491e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744735308855e+00 - 1.731970621766198e+00 + 1.224744728504717e+00 + 1.731966131463007e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.347074701784153e-01 +-1.385559949033505e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804137608916509e-08 --4.490249005947173e-05 +-6.804137608927192e-08 +-4.373618636840395e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744701288167e+00 - 1.731948171014153e+00 + 1.731949337317844e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.539509428035012e-01 +-1.539520054354297e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103103206687381e-08 --3.247448114699685e-05 +-6.804137608927192e-08 +-4.490294134064805e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744718298511e+00 - 1.731960599023066e+00 + 1.224744701288167e+00 + 1.731948170562871e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.443300464862995e-01 +-1.539509423923333e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744701288167e+00 - 1.731948170562872e+00 + 1.731948170562871e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201946784487499, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193868913107999, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.81606739323999 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185275272059e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0033898507755688, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00325425674454605, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.76277023363816 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846971899371e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744701288167e+00 - 1.731948170562872e+00 + 1.731948170562871e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_1(:) = --2.721881643190094e-04 +-2.721881643194581e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00175 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.572682093834019e-04 +-3.572682093840109e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000416666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744701288167e+00 - 1.731948170562872e+00 + 1.731948170562871e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.539509423923341e-01 +-1.539509423923333e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0015 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.443087695487534e-08 --3.207311299840292e-05 +-5.954470156400177e-08 +-2.565849039872220e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744626857290e+00 - 1.731916097449874e+00 + 1.224744641743465e+00 + 1.731922512072472e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.780044782541772e-01 +-1.731935331856046e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00154166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00158333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.443087695487534e-08 --3.708426630295356e-05 +-8.931705234600267e-08 +-4.450104522098057e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744626857290e+00 - 1.731911086296569e+00 + 1.224744611971115e+00 + 1.731903669517650e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.779999821360704e-01 +-1.828101570139302e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00175 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.488617539097507e-07 --7.416665922336261e-05 +-1.488617539100045e-07 +-7.234442413094191e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744552426413e+00 - 1.731874003903649e+00 + 1.731875826138740e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.020519692735180e-01 +-2.020535789137817e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164583333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.116463154323130e-07 --5.374653461245189e-05 +-1.488617539100044e-07 +-7.416748836432653e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744589641851e+00 - 1.731894424028260e+00 + 1.224744552426413e+00 + 1.731874003074507e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.900273063840317e-01 +-2.020519685411092e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744552426413e+00 - 1.731874003074508e+00 + 1.731874003074507e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232511042063515, h_cfl = 4.16666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223210600380974, h_cfl = 2.08333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.35705440914338 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.18475298463355e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00390124994980181, h_cfl = 4.16666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00374519995180974, h_cfl = 2.08333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.98847988434338 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.3543510588853e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744552426413e+00 - 1.731874003074508e+00 + 1.731874003074507e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = --3.572043643565395e-04 +-3.572043643569882e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.571320066594288e-04 +-3.571320066596959e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00175, h = 0.00025 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00175 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744552426413e+00 - 1.731874003074508e+00 + 1.731874003074507e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.020519685411102e-01 +-2.020519685411092e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.464150083242857e-08 --2.525649606763875e-05 +-3.571320066596956e-08 +-2.020519685411091e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744507784912e+00 - 1.731848746578440e+00 + 1.224744516713212e+00 + 1.731853797877653e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.164817697059637e-01 +-2.135957369983521e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0019 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.464150083242857e-08 --2.706022121324544e-05 +-5.356980099895435e-08 +-3.247225186689939e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744507784912e+00 - 1.731846942853294e+00 + 1.224744498856612e+00 + 1.731841530822640e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.164801914464587e-01 +-2.193659469144153e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.928300166485713e-08 --5.412004786161464e-05 +-8.928300166492390e-08 +-5.346414331751362e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463143411e+00 - 1.731819883026646e+00 + 1.731820538931189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093145761476e-01 +-2.309098830266619e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.696225124864285e-08 --3.991379222558678e-05 +-8.928300166492390e-08 +-5.412021689258560e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744485464162e+00 - 1.731834089282282e+00 + 1.224744463143411e+00 + 1.731819882857614e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.236952351512349e-01 +-2.309093144296532e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463143411e+00 - 1.731819882857615e+00 + 1.731819882857614e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212147380375288, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00203661485160277, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14645940641107 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53544085372349e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0035587375143278, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00341638801375469, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.6655520550188 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.65337543179745e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744463143411e+00 - 1.731819882857615e+00 + 1.731819882857614e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.224744463143411e+00 - 1.731819882857615e+00 + 1.731819882857614e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463143411e+00 1.731819882857614e+00 4.485301019485632e-14 5.107025913275720e-15 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.224744463143411e+00 - 1.731819882857615e+00 + 1.731819882857614e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_0(:) = --4.082481544727934e-04 +-4.082481544732421e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082481544727932e-04 +-4.082481544732420e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463143411e+00 - 1.731819882857615e+00 + 1.731819882857614e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144296539e-01 +-2.309093144296532e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804135907879885e-08 --3.848488573827564e-05 +-5.443308726309891e-08 +-3.078790859062041e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744395102052e+00 - 1.731781397971877e+00 + 1.224744408710324e+00 + 1.731789094949024e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.501473355728424e-01 +-2.462996222002521e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804135907879885e-08 --4.169122259547372e-05 +-8.164963089464836e-08 +-5.002943982858034e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744395102052e+00 - 1.731778191635019e+00 + 1.224744381493781e+00 + 1.731769853417785e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.501445923735220e-01 +-2.539918168277392e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.360827181575977e-07 --8.338153079117399e-05 +-1.360827181577473e-07 +-8.221557056264540e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744327060693e+00 - 1.731736501326824e+00 + 1.731737667287051e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.693812210320848e-01 +-2.693822056204556e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020620386181983e-07 --6.133412917689445e-05 +-1.360827181577473e-07 +-8.338191063079154e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744361081373e+00 - 1.731758548728438e+00 + 1.224744327060693e+00 + 1.731736500946983e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.597637732503920e-01 +-2.693812207113306e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744327060693e+00 - 1.731736500946984e+00 + 1.731736500946983e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00190501389643213, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00182881334057484, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.48644002172452 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335258683e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00319459596981735, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00306681213102466, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.20043639307398 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044822996605e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744327060693e+00 - 1.731736500946984e+00 + 1.731736500946983e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_1(:) = --4.763121319149923e-04 +-4.763121319153129e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 0, tcur = 0.00275 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.613921037177414e-04 +-5.613921037179017e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000416666666666666 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744327060693e+00 - 1.731736500946984e+00 + 1.731736500946983e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.693812207113311e-01 +-2.693812207113306e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0025 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.169566882745293e-07 --5.612108764819389e-05 +-9.356535061965013e-08 +-4.489687011855503e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744210104005e+00 - 1.731680379859336e+00 + 1.224744233495343e+00 + 1.731691604076865e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.934252657077353e-01 +-2.886163258833888e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00254166666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00258333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.169566882745293e-07 --6.113026368911142e-05 +-1.403480259294752e-07 +-7.335627554410070e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744210104005e+00 - 1.731675370683295e+00 + 1.224744186712667e+00 + 1.731663144671439e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.934211053087140e-01 +-2.982292885086837e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.339133765490585e-07 --1.222587938786306e-04 +-2.339133765491253e-07 +-1.204372144470812e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744093147317e+00 - 1.731614242153105e+00 + 1.731616063732536e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.174625985538955e-01 +-3.174640861765073e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264583333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.754350324117939e-07 --8.981633768190336e-05 +-2.339133765491253e-07 +-1.222594834234259e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744151625661e+00 - 1.731646684609302e+00 + 1.224744093147317e+00 + 1.731614241463560e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.054432240637767e-01 +-3.174625979907668e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744093147317e+00 1.731614241463560e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00232493376520392, h_cfl = 4.16666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00223193641459576, h_cfl = 2.08333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.35664739502983 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.18531991537069e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00389739554807504, h_cfl = 4.16666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00374149972615204, h_cfl = 2.08333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.9795993427649 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.38201984966596e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744093147317e+00 1.731614241463560e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_2(:) = --5.613282481132176e-04 +-5.613282481134100e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.612558784280904e-04 +-5.612558784283194e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00275, h = 0.00025 @@ -956,61 +956,61 @@ Using Ex-MRI-GARK method 1.731614241463560e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.174625979907671e-01 +-3.174625979907668e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.015698480351130e-08 --3.968282474884590e-05 +-5.612558784283195e-08 +-3.174625979907669e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744022990332e+00 - 1.731574558638812e+00 + 1.224744037021729e+00 + 1.731582495203761e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.318856618406987e-01 +-3.290010151525495e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0029 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.015698480351130e-08 --4.148570773008734e-05 +-8.418838176424792e-08 +-4.978284291644928e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744022990332e+00 - 1.731572755755830e+00 + 1.224744008958935e+00 + 1.731564458620644e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.318842045102679e-01 +-3.347685788573920e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.403139696070226e-07 --8.297105112756697e-05 +-1.403139696070799e-07 +-8.231543914109095e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952833347e+00 - 1.731531270412433e+00 + 1.731531926024419e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062292210318e-01 +-3.463067537105557e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.052354772052670e-07 --6.155235197071232e-05 +-1.403139696070799e-07 +-8.297118999639960e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224743987911840e+00 - 1.731552689111590e+00 + 1.224743952833347e+00 + 1.731531270273564e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.390957139125660e-01 +-3.463062291099366e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952833347e+00 1.731531270273564e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212127354646127, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00203642260460282, h_cfl = 1.25e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14569041841128 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.53635312385524e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00355535798661042, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003413143667146, h_cfl = 1.25e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.652574668584 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.6876838675859e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224743952833347e+00 @@ -1022,22 +1022,22 @@ Using Ex-MRI-GARK method [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952833347e+00 1.731531270273564e+00 6.727951529228449e-14 6.661338147750939e-15 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out index bf6c52e7fc..5485dfac3e 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_0.out @@ -27,49 +27,49 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 - 4.740684686309824e-25 + 5.363472462651037e-25 + 3.792547749047860e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.605385668208542e-07 +-5.284308531452550e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 --3.778565806125622e-15 + 8.045208693976554e-25 +-4.534278964820709e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 1.732050807568873e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.605385631031278e-07 +-7.926462762979867e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.340868115662759e-24 --7.557131569717244e-15 +-6.183107643128006e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568870e+00 + 1.732050807568871e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.321077129931421e-06 +-1.321077131341592e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.005651086747069e-24 --4.250886515790269e-15 + 1.340868115662759e-24 +-7.557131591407494e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568873e+00 + 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.908078474683970e-07 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -79,7 +79,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -87,113 +87,113 @@ Using fixed-point nonlinear solver 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.321077130187816e-06 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --6.222451941113600e-13 + 4.416219200084156e-23 +-4.977961551924758e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807568248e+00 + 1.732050807568372e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --5.570904686127248e-05 +-4.483145086737755e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --2.623971446165533e-11 + 6.624328800126235e-23 +-3.148765590729659e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807542630e+00 + 1.732050807537382e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --5.570902124451572e-05 +-6.658661313831470e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.104054800021039e-22 --5.247940479163293e-11 +-4.316396251523771e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807525706e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100970002651333e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.280411000157793e-23 --2.975301166851349e-11 + 1.104054800021039e-22 +-5.247941685328034e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807539117e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --8.290301250483422e-05 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --8.519485979621789e-10 + 7.255296877907247e-22 +-6.815588783681561e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050806664442e+00 + 1.732050806834831e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.003626680781257e-03 +-8.249201913315123e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --7.766228088407805e-09 + 1.088294531686087e-21 +-9.319467304884009e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050799750162e+00 + 1.732050798196923e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.003619770508034e-03 +-1.182325154164649e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.813824219476811e-21 --1.553234923115737e-08 +-1.301807061325939e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050791984041e+00 + 1.732050794498320e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.897149442288220e-03 +-1.897151953812628e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.360368164607609e-21 --9.056447227802648e-09 + 1.813824219476811e-21 +-1.553240265742450e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050798459943e+00 + 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.450386336891641e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -203,7 +203,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -211,61 +211,61 @@ Using fixed-point nonlinear solver 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.897149442234820e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --2.936090793186576e-07 + 1.451059375581449e-20 +-2.348872634548944e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050498374909e+00 + 1.732050557096724e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.976902055413174e-02 +-1.619443445926535e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --3.059518557005590e-06 + 2.176589063372174e-20 +-3.671373083283668e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732047732465431e+00 + 1.732047120610904e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.976628621162498e-02 +-2.334043553263640e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.627648438953623e-20 --6.118190762355293e-06 +-5.112441511176575e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044673793225e+00 + 1.732045679542476e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.763806080342232e-02 +-3.763904469703569e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.720736329215218e-20 --3.551745333115306e-06 + 3.627648438953623e-20 +-6.118608958942269e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732047240238655e+00 + 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.870287451025137e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732044673375029e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -273,65 +273,65 @@ Using fixed-point nonlinear solver 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.763806039431327e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.388273736413877e-07 + 3.458319534077176e-22 +-1.110618989131094e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732044534547655e+00 + 1.732044562313130e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.806396587819438e-02 +-3.797878466688875e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.403983190920096e-07 + 5.187479301115764e-22 +-1.684779822767520e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732044532976710e+00 + 1.732044504897046e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.806396434177242e-02 +-3.814914530311398e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.645798835192939e-22 --2.807966268498843e-07 +-2.802253743688813e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044392578402e+00 + 1.732044393149654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.848986972070141e-02 +-3.848987027925907e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.484349126394704e-22 --2.100083698679253e-07 + 8.645798835192939e-22 +-2.807966323879119e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732044463366659e+00 + 1.732044392578396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.827691742853397e-02 +-3.848986972069577e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = @@ -339,7 +339,7 @@ Using fixed-point nonlinear solver 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -5.108351470510600e-20 --6.414990480596572e-06 +-6.414990481040661e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -349,84 +349,84 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0007928652557433674 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.964220317636248e-08 --6.414990480596572e-06 +-2.964220317647424e-08 +-6.414990481040661e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744841749386e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.000333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --6.800477786917274e-05 +-6.800477786942914e-05 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.301432720696692e-04 +-1.301432720701598e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744841749386e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.848988454179788e-02 +-3.848988454179737e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.600626849123470e-09 --2.839386263116463e-06 +-7.680501479327733e-09 +-2.271509010493141e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744832148759e+00 - 1.732041553192133e+00 + 1.224744834068884e+00 + 1.732042121069386e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --4.700826338961868e-02 +-4.530454275303071e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.600626849123470e-09 --3.467784299963223e-06 +-1.152075221899160e-08 +-4.161336195217249e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744832148759e+00 - 1.732040924794097e+00 + 1.224744830228634e+00 + 1.732040231242201e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --4.700765204643064e-02 +-4.871127329771524e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.920125369824694e-08 --6.935478402750183e-06 +-1.920125369831934e-08 +-6.706973169801730e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744822548132e+00 - 1.732037457099994e+00 + 1.732037685605226e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.552597923887841e-02 +-5.552620041863519e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.440094027368520e-08 --4.965993600348706e-06 +-1.920125369831934e-08 +-6.935522231138513e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744827348446e+00 - 1.732039426584796e+00 + 1.224744822548132e+00 + 1.732037457056165e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.126697551491289e-02 +-5.552597919645447e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744822548132e+00 1.732037457056165e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788663195465, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157116667647, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.30812369387529 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161861252328e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00172842527587933, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928826484416, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.2464116920312 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321473334872e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -434,73 +434,73 @@ Using fixed-point nonlinear solver 1.732037457056165e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.552597919645472e-02 +-5.552597919645447e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.208991849582138e-08 --5.158196441583581e-06 +-9.671934796693573e-09 +-4.126557153266846e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744810458214e+00 - 1.732032298859724e+00 + 1.224744812876197e+00 + 1.732033330499012e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.625298102326145e-02 +-6.410751301148392e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.208991849582138e-08 --6.154702643772770e-06 +-1.450790219504036e-08 +-7.385633746304462e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744810458214e+00 - 1.732031302353521e+00 + 1.224744808040230e+00 + 1.732030071422419e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.625202263472843e-02 +-6.839733368966627e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.417983699164277e-08 --1.230922722472190e-05 +-2.417983699173393e-08 +-1.194686672033891e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744798368295e+00 - 1.732025147828941e+00 + 1.732025510189445e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --7.697890935140241e-02 +-7.697925560696062e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.813487774373208e-08 --8.858298034615910e-06 +-2.417983699173393e-08 +-1.230931269167274e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744804413254e+00 - 1.732028598758131e+00 + 1.224744798368295e+00 + 1.732025147743473e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --7.161572113634805e-02 +-7.697890926973373e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744798368295e+00 - 1.732025147743474e+00 + 1.732025147743473e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00215407159676274, h_cfl = 1.85793983869552e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00206790873289223, h_cfl = 9.28969919347758e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1301167552558 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68176961607164e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00324007174976714, h_cfl = 1.85793983869552e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046887977645, h_cfl = 9.28969919347758e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.7414940731362 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824276166962e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744798368295e+00 - 1.732025147743474e+00 + 1.732025147743473e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.898626732860975e-08 --2.565982540359002e-05 +-2.898626732844372e-08 +-2.565982540381206e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -510,88 +510,88 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.003186689134226742 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.826759722831895e-08 --2.565982540359002e-05 +-8.826759722836683e-08 +-2.565982540381206e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744783123992e+00 - 1.732025147743474e+00 + 1.732025147743473e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.000666666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --1.359969516168852e-04 +-1.359969516170134e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = - 2.255112343384504e-04 + 2.255112343381546e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744783123992e+00 - 1.732025147743474e+00 + 1.732025147743473e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --7.697891689188588e-02 +-7.697891689188563e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.758520572307505e-08 --1.282981948198097e-05 + 3.006816457842060e-08 +-1.026385558558474e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744820709197e+00 - 1.732012317923992e+00 + 1.224744813192156e+00 + 1.732014883887888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --9.622432188774140e-02 +-9.237504041224476e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.758520572307505e-08 --1.603738698129022e-05 + 4.510224686763089e-08 +-1.924481425846690e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744820709197e+00 - 1.732009110356492e+00 + 1.224744828226239e+00 + 1.732005902929215e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --9.622129251843614e-02 +-1.000700735369236e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.517041144615009e-08 --3.207376417281203e-05 + 7.517041144605148e-08 +-3.090739966847802e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744858294403e+00 - 1.731993073979301e+00 + 1.731994240343805e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154661607586131e-01 +-1.154672493651430e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.637780858461257e-08 --2.285286957973619e-05 + 7.517041144605148e-08 +-3.207423924794686e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744839501800e+00 - 1.732002294873894e+00 + 1.224744858294403e+00 + 1.731993073504225e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.058445577601986e-01 +-1.154661603152095e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744858294403e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024220627, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193296983251802, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.79890949755406 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151446454876e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00338105535169012, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581313762252, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.73743941286757 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749033047e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744858294403e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.001 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = @@ -599,7 +599,7 @@ Using fixed-point nonlinear solver 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.309718578040410e-08 --5.773406465148234e-05 +-5.773406465170439e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -609,100 +609,100 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007218531540241768 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.020789439329069e-07 --5.773406465148234e-05 +-1.020789439329628e-07 +-5.773406465170439e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = -1, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 1.000000000000000e-03 1.224744769312645e+00 1.731993073504225e+00 1.687561201890730e-11 1.021405182655144e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_0(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --2.041240944676420e-04 +-2.041240944677702e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041240944676420e-04 +-2.041240944677702e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048060873e-01 +-1.154662048060870e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068241127363e-08 --1.924436746768119e-05 +-2.721654592903600e-08 +-1.539549397414492e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744735291962e+00 - 1.731973829136758e+00 + 1.224744742096099e+00 + 1.731977678010251e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.347104280952676e-01 +-1.308614057857631e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068241127363e-08 --2.245173801587791e-05 +-4.082481889355399e-08 +-2.694204120613640e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744735291962e+00 - 1.731970621766210e+00 + 1.224744728487826e+00 + 1.731966131463019e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.347074701868725e-01 +-1.385559949118069e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804136482254725e-08 --4.490249006229077e-05 +-6.804136482258999e-08 +-4.373618637122331e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744701271280e+00 - 1.731948171014163e+00 + 1.731949337317854e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.539509428119539e-01 +-1.539520054438828e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103102361691043e-08 --3.247448114911140e-05 +-6.804136482258999e-08 +-4.490294134346717e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744718281621e+00 - 1.731960599023077e+00 + 1.224744701271280e+00 + 1.731948170562882e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.443300464947545e-01 +-1.539509424007866e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744701271280e+00 1.731948170562882e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00229974696142012, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00220775708296332, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.62327124888996 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185281911249e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00386034158888383, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00370592792532848, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1177837759854 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846977432031e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744701271280e+00 @@ -711,9 +711,9 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = - 2.092949424699360e-08 + 2.092949424704947e-08 -4.490294134340544e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -732,12 +732,12 @@ Using fixed-point nonlinear solver 1.731948170562882e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00133333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --2.721288382253330e-04 +-2.721288382254612e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.342673012567931e-04 +-3.342673012569213e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 @@ -747,61 +747,61 @@ Using fixed-point nonlinear solver 1.731948170562882e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.539509572255137e-01 +-1.539509572255135e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.571121687613213e-08 --2.565849287091893e-05 +-4.456897350092279e-08 +-2.052679429673511e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744615910609e+00 - 1.731922512070011e+00 + 1.224744627052853e+00 + 1.731927643768585e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.731935460998178e-01 +-1.693448735035631e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.571121687613213e-08 --2.886559101663626e-05 +-6.685346025138418e-08 +-3.463867051461508e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744615910609e+00 - 1.731919304971866e+00 + 1.224744604768366e+00 + 1.731913531892368e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731906597114851e-01 +-1.770388376047066e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.114224337522643e-07 --5.773021990382831e-05 +-1.114224337523070e-07 +-5.656400446151187e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744560199393e+00 - 1.731890440342978e+00 + 1.731891606558421e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.924322840021958e-01 +-1.924333206378398e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.356682531419820e-08 --4.209537396951458e-05 +-1.114224337523070e-07 +-5.773064738057231e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744588055001e+00 - 1.731906075188913e+00 + 1.224744560199393e+00 + 1.731890439915502e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.828123207126024e-01 +-1.924322836222163e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744560199393e+00 1.731890439915502e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212728077468874, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204218954370119, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12656863110357 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234106734159e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356962389566371, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683893983716, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2805168195115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78264578729677e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744560199393e+00 @@ -810,10 +810,10 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00166666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --7.610538881963766e-08 --1.026335887241991e-04 +-7.610538881958173e-08 +-1.026335887239771e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -823,8 +823,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01281058040587075 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.243720669364326e-07 --1.026335887241991e-04 +-2.243720669363766e-07 +-1.026335887239771e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744544940578e+00 @@ -836,7 +836,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = - 2.138695286969588e-05 + 2.138695286918566e-05 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 @@ -848,59 +848,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -1.924322912516240e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.564492144949312e-09 --3.207204854193732e-05 + 2.851593715891420e-09 +-2.565763883354985e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744548505070e+00 - 1.731858367866960e+00 + 1.224744547792172e+00 + 1.731864782276668e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.116727774485059e-01 +-2.078245482236373e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.564492144949312e-09 --3.527879624141765e-05 + 4.277390573837130e-09 +-4.233452249332810e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744548505070e+00 - 1.731855161119260e+00 + 1.224744549217969e+00 + 1.731848105393008e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.116699626366323e-01 +-2.155177000485405e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.128984289898625e-09 --7.055665421221072e-05 + 7.128984289728551e-09 +-6.939055539672663e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744552069562e+00 - 1.731819883261289e+00 + 1.731821049360105e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309092703164310e-01 +-2.309102809351186e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.346738217423968e-09 --5.171532439955674e-05 + 7.128984289728550e-09 +-7.055705787434541e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744550287316e+00 - 1.731838724591102e+00 + 1.224744552069562e+00 + 1.731819882857627e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.212904741805274e-01 +-2.309092699665907e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744552069562e+00 1.731819882857627e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212723636931111, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204214691453867, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12644074361601 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85298346722214e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356837598914512, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342564094957932, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2769228487379 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663319968874e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744552069562e+00 @@ -909,10 +909,10 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.002 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.224744769312645e+00 - 1.731993073504226e+00 + 1.731993073504225e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.282722236224802e-07 --1.731906465984867e-04 +-1.282722236224243e-07 +-1.731906465982647e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -922,8 +922,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02165342185631074 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.062465506470882e-07 --1.731906465984867e-04 +-3.062465506470323e-07 +-1.731906465982647e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224744463066094e+00 @@ -963,59 +963,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -2.309093144683231e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804133330973011e-08 --3.848488574472051e-05 +-5.443306664778409e-08 +-3.078790859577640e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744395024761e+00 - 1.731781397971883e+00 + 1.224744408633028e+00 + 1.731789094949032e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.501473356114930e-01 +-2.462996222389071e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804133330973011e-08 --4.169122260191550e-05 +-8.164959997167613e-08 +-5.002943983631059e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744395024761e+00 - 1.731778191635025e+00 + 1.224744381416494e+00 + 1.731769853417791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.501445924121727e-01 +-2.539918168663871e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.360826666194602e-07 --8.338153080405753e-05 +-8.221557057553041e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744326983428e+00 - 1.731736501326823e+00 + 1.731737667287052e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.693812210707169e-01 +-2.693822056590886e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020619999645952e-07 --6.133412918655825e-05 +-1.360826666194602e-07 +-8.338191064367537e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744361004094e+00 - 1.731758548728441e+00 + 1.224744326983428e+00 + 1.731736500946984e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.597637732890332e-01 +-2.693812207499636e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744326983428e+00 1.731736500946984e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212718371220666, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020420963637184, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1262890911552 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375330832108e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356718377157207, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342449642070918, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2734892621276 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044820229997e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744326983428e+00 @@ -1062,59 +1062,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -2.693812355783070e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.973184607209575e-08 --4.489687259638443e-05 +-7.178547685767660e-08 +-3.591749807710755e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207594895e+00 - 1.731691604074387e+00 + 1.224744225541264e+00 + 1.731700583448907e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886163388315482e-01 +-2.847692318841083e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.973184607209575e-08 --4.810272313859129e-05 +-1.076782152865149e-07 +-5.772324619211163e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207594895e+00 - 1.731688398223845e+00 + 1.224744189648526e+00 + 1.731678777700792e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886136672894110e-01 +-2.924602882192593e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.794636921441915e-07 --9.620455576313685e-05 +-9.503876156436789e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744117863049e+00 - 1.731640296391221e+00 + 1.731641462185419e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.078471640648578e-01 +-3.078481226065108e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.345977691081436e-07 --7.095157354593590e-05 +-1.794636921441915e-07 +-9.620491177137570e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744162728972e+00 - 1.731665549373438e+00 + 1.224744117863049e+00 + 1.731640296035212e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.982312910605189e-01 +-3.078471637721398e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744117863049e+00 1.731640296035212e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711998329191, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204203518396023, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1261055518807 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467352756314e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356605473112958, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342341254188439, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2702376256532 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407653932745e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744117863049e+00 @@ -1161,59 +1161,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -3.078471714087959e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.045620866801464e-08 --5.130786190146596e-05 +-2.436496693441171e-08 +-4.104628952117277e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744072133529e+00 - 1.731588988173311e+00 + 1.224744078224770e+00 + 1.731599249745691e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.270788883527032e-01 +-3.232324815199211e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.045620866801464e-08 --5.451314805878385e-05 +-3.654745040161756e-08 +-6.541576180954045e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744072133529e+00 - 1.731585782887153e+00 + 1.224744066042287e+00 + 1.731574880273403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.270762885094521e-01 +-3.309222122310184e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.091241733602927e-08 --1.090254295031506e-04 +-6.091241733602929e-08 +-1.078598297212806e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744041677320e+00 - 1.731531270605709e+00 + 1.731532436205491e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463061849536681e-01 +-3.463071174332747e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.568431300202195e-08 --8.056743376231361e-05 +-6.091241733602927e-08 +-1.090257616714641e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744056905424e+00 - 1.731559728601450e+00 + 1.224744041677320e+00 + 1.731531270273541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.366921209440693e-01 +-3.463061846879333e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744041677320e+00 1.731531270273541e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212704593542942, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204196409801224, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12589229403673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574823479096e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356498634984438, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342238689585061, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2671606875518 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751566853444e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744041677320e+00 @@ -1225,7 +1225,7 @@ Using fixed-point nonlinear solver 1.731819882857627e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -2.434471387076844e-07 --2.886125840866338e-04 +-2.886125840864118e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1235,8 +1235,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03608300450074117 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.104138961564881e-07 --2.886125840866338e-04 +-5.104138961564601e-07 +-2.886125840864118e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224743952652198e+00 @@ -1254,22 +1254,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952652198e+00 1.731531270273541e+00 1.810818162084615e-10 2.953193245502916e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out index 22664fd7d9..0ca45529b4 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_0.out @@ -28,49 +28,49 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 - 4.740684686309824e-25 + 5.363472462651037e-25 + 3.792547749047860e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.605385668208542e-07 +-5.284308531452550e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 --3.778565806125622e-15 + 8.045208693976554e-25 +-4.534278964820709e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 1.732050807568873e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.605385631031278e-07 +-7.926462762979867e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.340868115662759e-24 --7.557131569717244e-15 +-6.183107643128006e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568870e+00 + 1.732050807568871e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.321077129931421e-06 +-1.321077131341592e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.005651086747069e-24 --4.250886515790269e-15 + 1.340868115662759e-24 +-7.557131591407494e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568873e+00 + 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.908078474683970e-07 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -80,7 +80,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -88,113 +88,113 @@ Using GMRES iterative linear solver 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.321077130187816e-06 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --6.222451941113600e-13 + 4.416219200084156e-23 +-4.977961551924758e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807568248e+00 + 1.732050807568372e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --5.570904686127248e-05 +-4.483145086737755e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --2.623971446165533e-11 + 6.624328800126235e-23 +-3.148765590729659e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807542630e+00 + 1.732050807537382e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --5.570902124451572e-05 +-6.658661313831470e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.104054800021039e-22 --5.247940479163293e-11 +-4.316396251523771e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807525706e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100970002651333e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.280411000157793e-23 --2.975301166851349e-11 + 1.104054800021039e-22 +-5.247941685328034e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807539117e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --8.290301250483422e-05 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --8.519485979621789e-10 + 7.255296877907247e-22 +-6.815588783681561e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050806664442e+00 + 1.732050806834831e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.003626680781257e-03 +-8.249201913315123e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --7.766228088407805e-09 + 1.088294531686087e-21 +-9.319467304884009e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050799750162e+00 + 1.732050798196923e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.003619770508034e-03 +-1.182325154164649e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.813824219476811e-21 --1.553234923115737e-08 +-1.301807061325939e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050791984041e+00 + 1.732050794498320e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.897149442288220e-03 +-1.897151953812628e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.360368164607609e-21 --9.056447227802648e-09 + 1.813824219476811e-21 +-1.553240265742450e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050798459943e+00 + 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.450386336891641e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -204,7 +204,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -212,61 +212,61 @@ Using GMRES iterative linear solver 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.897149442234820e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --2.936090793186576e-07 + 1.451059375581449e-20 +-2.348872634548944e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050498374909e+00 + 1.732050557096724e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.976902055413174e-02 +-1.619443445926535e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --3.059518557005590e-06 + 2.176589063372174e-20 +-3.671373083283668e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732047732465431e+00 + 1.732047120610904e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.976628621162498e-02 +-2.334043553263640e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.627648438953623e-20 --6.118190762355293e-06 +-5.112441511176575e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044673793225e+00 + 1.732045679542476e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.763806080342232e-02 +-3.763904469703569e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.720736329215218e-20 --3.551745333115306e-06 + 3.627648438953623e-20 +-6.118608958942269e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732047240238655e+00 + 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.870287451025137e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732044673375029e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -274,65 +274,65 @@ Using GMRES iterative linear solver 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.763806039431327e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.388273736413877e-07 + 3.458319534077176e-22 +-1.110618989131094e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732044534547655e+00 + 1.732044562313130e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.806396587819438e-02 +-3.797878466688875e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.403983190920096e-07 + 5.187479301115764e-22 +-1.684779822767520e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732044532976710e+00 + 1.732044504897046e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.806396434177242e-02 +-3.814914530311398e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.645798835192939e-22 --2.807966268498843e-07 +-2.802253743688813e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044392578402e+00 + 1.732044393149654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.848986972070141e-02 +-3.848987027925907e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.484349126394704e-22 --2.100083698679253e-07 + 8.645798835192939e-22 +-2.807966323879119e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732044463366659e+00 + 1.732044392578396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.827691742853397e-02 +-3.848986972069577e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = @@ -340,7 +340,7 @@ Using GMRES iterative linear solver 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -5.108351470510600e-20 --6.414990480596572e-06 +-6.414990481040661e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -363,84 +363,84 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.964100542068838e-08 --6.414990480596572e-06 +-2.964100542078336e-08 +-6.414990481040660e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744841750584e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.000333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --6.800478026442422e-05 +-6.800478026468062e-05 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.301432766535510e-04 +-1.301432766540417e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744841750584e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.848988454119905e-02 +-3.848988454119855e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.600627187274939e-09 --2.839386263072288e-06 +-7.680501749848909e-09 +-2.271509010457801e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744832149956e+00 - 1.732041553192134e+00 + 1.224744834070082e+00 + 1.732042121069386e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --4.700826338902007e-02 +-4.530454275243197e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.600627187274939e-09 --3.467784299919063e-06 +-1.152075262477336e-08 +-4.161336195164249e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744832149956e+00 - 1.732040924794097e+00 + 1.224744830229831e+00 + 1.732040231242201e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --4.700765204583190e-02 +-4.871127329711659e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.920125437454988e-08 --6.935478402661846e-06 +-1.920125437462227e-08 +-6.706973169713398e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744822549329e+00 - 1.732037457099994e+00 + 1.732037685605226e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.552597923827990e-02 +-5.552620041803667e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.440094078091241e-08 --4.965993600282453e-06 +-1.920125437462227e-08 +-6.935522231050183e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744827349643e+00 - 1.732039426584796e+00 + 1.224744822549329e+00 + 1.732037457056165e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.126697551431438e-02 +-5.552597919585621e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744822549329e+00 1.732037457056165e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788639759392, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157094169016, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.30812354138289 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161888914814e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00172842516515673, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928815855046, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.2464109715882 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321698092567e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -448,61 +448,61 @@ Using GMRES iterative linear solver 1.732037457056165e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.552597919585646e-02 +-5.552597919585621e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.208991892165022e-08 --5.158196441528004e-06 +-9.671935137356638e-09 +-4.126557153222385e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744810459410e+00 - 1.732032298859724e+00 + 1.224744812877394e+00 + 1.732033330499012e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.625298102266325e-02 +-6.410751301088560e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.208991892165022e-08 --6.154702643717199e-06 +-1.450790270603496e-08 +-7.385633746237763e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744810459410e+00 - 1.732031302353522e+00 + 1.224744808041426e+00 + 1.732030071422419e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.625202263413035e-02 +-6.839733368906845e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.417983784330043e-08 --1.230922722461078e-05 +-2.417983784339160e-08 +-1.194686672022784e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744798369491e+00 - 1.732025147828941e+00 + 1.732025510189445e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --7.697890935080454e-02 +-7.697925560636301e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.813487838247532e-08 --8.858298034532560e-06 +-2.417983784339160e-08 +-1.230931269156164e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744804414451e+00 - 1.732028598758131e+00 + 1.224744798369491e+00 + 1.732025147743474e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --7.161572113575035e-02 +-7.697890926913588e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744798369491e+00 1.732025147743474e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00215407150105728, h_cfl = 1.85793983869552e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00206790864101499, h_cfl = 9.28969919347758e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1301162607445 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68177094387627e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0032400719897559, h_cfl = 1.85793983869552e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046911016567, h_cfl = 9.28969919347758e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.7414953131613 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824231215243e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744798369491e+00 @@ -513,8 +513,8 @@ Using GMRES iterative linear solver 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.898506962325916e-08 --2.565982540336798e-05 +-2.898506962309313e-08 +-2.565982540359002e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -537,20 +537,20 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.826155566440832e-08 --2.565982540336798e-05 +-8.826155566429001e-08 +-2.565982540359002e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744783130033e+00 1.732025147743474e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.000666666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --1.359969636992801e-04 +-1.359969636994084e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = - 2.255112640154300e-04 + 2.255112640151342e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 @@ -560,61 +560,61 @@ Using GMRES iterative linear solver 1.732025147743474e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --7.697891688886534e-02 +-7.697891688886507e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.758521066923831e-08 --1.282981948147755e-05 + 3.006816853535121e-08 +-1.026385558518200e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744820715244e+00 - 1.732012317923992e+00 + 1.224744813198202e+00 + 1.732014883887888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --9.622432188471861e-02 +-9.237504040922270e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.758521066923831e-08 --1.603738698078642e-05 + 4.510225280302681e-08 +-1.924481425786241e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744820715244e+00 - 1.732009110356493e+00 + 1.224744828232286e+00 + 1.732005902929216e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --9.622129251541338e-02 +-1.000700735339006e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.517042133847661e-08 --3.207376417180444e-05 + 7.517042133837801e-08 +-3.090739966747057e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744858300455e+00 - 1.731993073979302e+00 + 1.731994240343806e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154661607555884e-01 +-1.154672493621184e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.637781600385747e-08 --2.285286957898063e-05 + 7.517042133837801e-08 +-3.207423924693934e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744839507849e+00 - 1.732002294873895e+00 + 1.224744858300455e+00 + 1.731993073504227e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.058445577571752e-01 +-1.154661603121848e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744858300455e+00 1.731993073504227e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351024912287, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193296983915796, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.79890951747387 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151475224181e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00338105525334132, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581304320767, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.73743912962302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410748687262e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744858300455e+00 @@ -626,7 +626,7 @@ Using GMRES iterative linear solver 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.309113417674147e-08 --5.773406465037212e-05 +-5.773406465059416e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -649,8 +649,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.020618073427794e-07 --5.773406465037214e-05 +-1.020618073428274e-07 +-5.773406465059418e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224744769329781e+00 @@ -673,12 +673,12 @@ Using GMRES iterative linear solver 1.224744769329781e+00 1.731993073504227e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --2.041241287373374e-04 +-2.041241287374015e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041241287373374e-04 +-2.041241287374015e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 @@ -688,61 +688,61 @@ Using GMRES iterative linear solver 1.731993073504227e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662047975199e-01 +-1.154662047975198e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068812288952e-08 --1.924436746625331e-05 +-2.721655049832017e-08 +-1.539549397300263e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744735309093e+00 - 1.731973829136761e+00 + 1.224744742113231e+00 + 1.731977678010254e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.347104280867044e-01 +-1.308614057771992e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068812288952e-08 --2.245173801445071e-05 +-4.082482574748025e-08 +-2.694204120442377e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744735309093e+00 - 1.731970621766212e+00 + 1.224744728504956e+00 + 1.731966131463022e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.347074701783092e-01 +-1.385559949032447e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804137624577904e-08 --4.490249005943636e-05 +-6.804137624580042e-08 +-4.373618636836872e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744701288405e+00 - 1.731948171014167e+00 + 1.731949337317858e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.539509428033951e-01 +-1.539520054353241e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103103218433429e-08 --3.247448114697033e-05 +-6.804137624580042e-08 +-4.490294134061282e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744718298749e+00 - 1.731960599023080e+00 + 1.224744701288405e+00 + 1.731948170562886e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.443300464861934e-01 +-1.539509423922277e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744701288405e+00 1.731948170562886e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00229974695125317, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00220775707320304, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.62327121960914 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185279698184e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00386034163382714, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00370592796847405, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1177839054222 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.778469746657e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744701288405e+00 @@ -753,7 +753,7 @@ Using GMRES iterative linear solver 1.224744769329781e+00 1.731993073504227e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = - 2.092949763768706e-08 + 2.092949763771500e-08 -4.490294134051886e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -777,20 +777,20 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --9.768225496119943e-08 --4.490294134051885e-05 +-9.768225496171103e-08 +-4.490294134051887e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744671647527e+00 1.731948170562886e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00133333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --2.721288896178085e-04 +-2.721288896179367e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.342673682949894e-04 +-3.342673682951762e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 @@ -800,61 +800,61 @@ Using GMRES iterative linear solver 1.731948170562886e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.539509572126673e-01 +-1.539509572126671e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.571122804916484e-08 --2.565849286877786e-05 +-4.456898243935678e-08 +-2.052679429502226e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744615936298e+00 - 1.731922512070017e+00 + 1.224744627078544e+00 + 1.731927643768591e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.731935460869787e-01 +-1.693448734907229e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.571122804916484e-08 --2.886559101449642e-05 +-6.685347365903518e-08 +-3.463867051204734e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744615936298e+00 - 1.731919304971872e+00 + 1.224744604794053e+00 + 1.731913531892374e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731906596986459e-01 +-1.770388375918689e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.114224560983297e-07 --5.773021989954857e-05 +-1.114224560983920e-07 +-5.656400445723167e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744560225070e+00 - 1.731890440342987e+00 + 1.731891606558429e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.924322839893643e-01 +-1.924333206250082e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.356684207374726e-08 --4.209537396630432e-05 +-1.114224560983920e-07 +-5.773064737629264e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744588080684e+00 - 1.731906075188920e+00 + 1.224744560225070e+00 + 1.731890439915510e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.828123206997671e-01 +-1.924322836093848e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744560225070e+00 1.731890439915510e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212728076980462, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204218953901244, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12656861703731 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234106734158e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356962387594432, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683892090655, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2805167627197 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.7826458287928e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744560225070e+00 @@ -865,7 +865,7 @@ Using GMRES iterative linear solver 1.224744769329781e+00 1.731993073504227e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --7.609682162686130e-08 +-7.609682162679190e-08 -1.026335887168717e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -889,7 +889,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.243435512950149e-07 +-2.243435512961433e-07 -1.026335887168717e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = @@ -897,12 +897,12 @@ Using GMRES iterative linear solver 1.731890439915510e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00166666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.401210443655308e-04 +-3.401210443656590e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = - 2.138704326075055e-05 + 2.138704326070805e-05 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 @@ -912,61 +912,61 @@ Using GMRES iterative linear solver 1.731890439915510e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.924322912288054e-01 +-1.924322912288051e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.564507210125090e-09 --3.207204853813422e-05 + 2.851605768094406e-09 +-2.565763883050735e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744548550737e+00 - 1.731858367866972e+00 + 1.224744547837836e+00 + 1.731864782276679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.116727774256830e-01 +-2.078245482008150e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.564507210125090e-09 --3.527879623761382e-05 + 4.277408652141608e-09 +-4.233452248876348e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744548550737e+00 - 1.731855161119272e+00 + 1.224744549263639e+00 + 1.731848105393021e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.116699626138093e-01 +-2.155177000257167e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.129014420250181e-09 --7.055665420460308e-05 + 7.129014420236015e-09 +-6.939055538911923e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744552115245e+00 - 1.731819883261305e+00 + 1.731821049360121e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309092702936039e-01 +-2.309102809122913e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.346760815187635e-09 --5.171532439385129e-05 + 7.129014420236013e-09 +-7.055705786673771e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744550332991e+00 - 1.731838724591116e+00 + 1.224744552115245e+00 + 1.731819882857643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.212904741577024e-01 +-2.309092699437631e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744552115245e+00 1.731819882857643e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212723636400783, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204214690944752, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12644072834256 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85298353361799e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356837602351592, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342564098257529, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2769229477259 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663313052637e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744552115245e+00 @@ -977,7 +977,7 @@ Using GMRES iterative linear solver 1.224744769329781e+00 1.731993073504227e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.282436628531027e-07 +-1.282436628530748e-07 -1.731906465836097e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1001,7 +1001,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.061835081691176e-07 +-3.061835081710900e-07 -1.731906465836097e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = @@ -1025,12 +1025,12 @@ Using GMRES iterative linear solver 1.224744463146273e+00 1.731819882857643e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --4.082481601816990e-04 +-4.082481601818272e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082481601816988e-04 +-4.082481601818271e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 @@ -1040,61 +1040,61 @@ Using GMRES iterative linear solver 1.731819882857643e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144282474e-01 +-2.309093144282472e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804136003028311e-08 --3.848488573804122e-05 +-5.443308802424359e-08 +-3.078790859043295e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744395104913e+00 - 1.731781397971905e+00 + 1.224744408713185e+00 + 1.731789094949053e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.501473355714364e-01 +-2.462996221988465e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804136003028311e-08 --4.169122259523938e-05 +-8.164963203636538e-08 +-5.002943982829924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744395104913e+00 - 1.731778191635048e+00 + 1.224744381496641e+00 + 1.731769853417815e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.501445923721158e-01 +-2.539918168263339e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.360827200605662e-07 --8.338153079070525e-05 +-1.360827200606090e-07 +-8.221557056217690e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744327063553e+00 - 1.731736501326852e+00 + 1.731737667287081e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.693812210306789e-01 +-2.693822056190502e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020620400454247e-07 --6.133412917654288e-05 +-1.360827200606090e-07 +-8.338191063032303e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744361084233e+00 - 1.731758548728467e+00 + 1.224744327063553e+00 + 1.731736500947013e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.597637732489860e-01 +-2.693812207099253e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744327063553e+00 1.731736500947013e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212718370674266, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204209635847296, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12628907541887 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375339685247e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356718375114552, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0034244964010997, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2734892032991 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.7904482230495e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744327063553e+00 @@ -1105,7 +1105,7 @@ Using GMRES iterative linear solver 1.224744463146273e+00 1.731819882857643e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = - 4.185898550918017e-08 + 4.185898550923605e-08 -8.338191063028688e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1129,7 +1129,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.657232708772831e-07 +-1.657232708772839e-07 -8.338191063028688e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = @@ -1137,12 +1137,12 @@ Using GMRES iterative linear solver 1.731736500947013e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00233333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --4.762528680446736e-04 +-4.762528680448018e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.383912982777970e-04 +-5.383912982779252e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 @@ -1152,61 +1152,61 @@ Using GMRES iterative linear solver 1.731736500947013e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.693812355302010e-01 +-2.693812355302008e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.973188304629936e-08 --4.489687258836675e-05 +-7.178550643705657e-08 +-3.591749807069339e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207691119e+00 - 1.731691604074425e+00 + 1.224744225637496e+00 + 1.731700583448942e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886163387834670e-01 +-2.847692318360220e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.973188304629936e-08 --4.810272313057775e-05 +-1.076782596555849e-07 +-5.772324618249536e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207691119e+00 - 1.731688398223882e+00 + 1.224744189744743e+00 + 1.731678777700830e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886136672413298e-01 +-2.924602881711829e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.794637660925987e-07 --9.620455574710978e-05 +-1.794637660926415e-07 +-9.503876154833925e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744117959236e+00 - 1.731640296391266e+00 + 1.731641462185464e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.078471640168012e-01 +-3.078481225584541e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.345978245694490e-07 --7.095157353391405e-05 +-1.794637660926414e-07 +-9.620491175534856e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744162825178e+00 - 1.731665549373479e+00 + 1.224744117959236e+00 + 1.731640296035257e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.982312910124502e-01 +-3.078471637240832e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744117959236e+00 1.731640296035257e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997753779, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204203517843628, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12610553530885 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467361609875e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356605473330791, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0034234125439756, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2702376319268 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407655316113e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744117959236e+00 @@ -1217,7 +1217,7 @@ Using GMRES iterative linear solver 1.224744463146273e+00 1.731819882857643e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.232083502690907e-07 +-1.232083502690348e-07 -1.795868223857244e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1241,7 +1241,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.604245072041052e-07 +-3.604245072041070e-07 -1.795868223857245e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = @@ -1249,12 +1249,12 @@ Using GMRES iterative linear solver 1.731640296035257e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00266666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --5.442449615941378e-04 +-5.442449615942661e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.827371884066053e-04 +-1.827371884067337e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 @@ -1264,61 +1264,61 @@ Using GMRES iterative linear solver 1.731640296035257e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.078471713428188e-01 +-3.078471713428186e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.045619806776754e-08 --5.130786189046978e-05 +-2.436495845423115e-08 +-4.104628951237580e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744072265568e+00 - 1.731588988173367e+00 + 1.224744078356808e+00 + 1.731599249745745e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.270788882867292e-01 +-3.232324814539461e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.045619806776754e-08 --5.451314804778818e-05 +-3.654743768134672e-08 +-6.541576179634558e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744072265568e+00 - 1.731585782887210e+00 + 1.224744066174329e+00 + 1.731574880273461e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.270762884434779e-01 +-3.309222121650450e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.091239613553508e-08 --1.090254294811593e-04 +-6.091239613557787e-08 +-1.078598296992891e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744041809370e+00 - 1.731531270605776e+00 + 1.731532436205558e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463061848876968e-01 +-3.463071173673034e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.568429710165131e-08 --8.056743374581993e-05 +-6.091239613557787e-08 +-1.090257616494727e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744057037469e+00 - 1.731559728601512e+00 + 1.224744041809370e+00 + 1.731531270273608e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.366921208780966e-01 +-3.463061846219620e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744041809370e+00 1.731531270273608e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212704593685159, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204196409937753, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12589229813259 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574823479083e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0035649863610007, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342238690656067, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.267160719682 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751564086545e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744041809370e+00 @@ -1329,8 +1329,8 @@ Using GMRES iterative linear solver 1.224744463146273e+00 1.731819882857643e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.433951978761393e-07 --2.886125840353415e-04 +-2.433951978760834e-07 +-2.886125840351195e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1353,8 +1353,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.103024546552572e-07 --2.886125840353415e-04 +-5.103024546519183e-07 +-2.886125840351194e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224743952843819e+00 @@ -1372,33 +1372,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952843819e+00 1.731531270273608e+00 1.053868103895184e-11 3.752553823233029e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out index f3a222cc94..d3c07ef46a 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_1_1_1.out @@ -28,49 +28,49 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.576345419843337e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.57634541984334e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 - 4.740684686309824e-25 + 5.363472462651037e-25 + 3.792547749047860e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.605385668208542e-07 +-5.284308531452550e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765003e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.864518129765e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.704340578313795e-25 --3.778565806125622e-15 + 8.045208693976554e-25 +-4.534278964820709e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 1.732050807568873e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.605385631031278e-07 +-7.926462762979867e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.340868115662759e-24 --7.557131569717244e-15 +-6.183107643128006e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568870e+00 + 1.732050807568871e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.321077129931421e-06 +-1.321077131341592e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.005651086747069e-24 --4.250886515790269e-15 + 1.340868115662759e-24 +-7.557131591407494e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568873e+00 + 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.908078474683970e-07 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -80,7 +80,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 9.81278174283713e-07, h_cfl = 1.14408635496083e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 9.42027047312365e-07, h_cfl = 5.72043177480417e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.05431102766815e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.81663103431959e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.14408635496083e-08, h = 9.42027047312365e-07 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.14408635496083e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -88,113 +88,113 @@ Using dense direct linear solver 1.732050807568870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.321077130187816e-06 +-1.321077129931421e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 3.88251682474554e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --6.222451941113600e-13 + 4.416219200084156e-23 +-4.977961551924758e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807568248e+00 + 1.732050807568372e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --5.570904686127248e-05 +-4.483145086737755e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 4.82454387205791e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 5.76657091937027e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.520274000105195e-23 --2.623971446165533e-11 + 6.624328800126235e-23 +-3.148765590729659e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807542630e+00 + 1.732050807537382e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --5.570902124451572e-05 +-6.658661313831470e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.104054800021039e-22 --5.247940479163293e-11 +-4.316396251523771e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807525706e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100970002651333e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 7.17961149033882e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.280411000157793e-23 --2.975301166851349e-11 + 1.104054800021039e-22 +-5.247941685328034e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807539117e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --8.290301250483422e-05 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.6121175493516e-05, h_cfl = 9.42027047312365e+23 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.54763284737753e-05, h_cfl = 4.71013523656182e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.1253185299632e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.97593896787527e-18 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 9.53467910861973e-07, h = 1.54763284737753e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 9.53467910861973e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050807516391e+00 + 1.732050807516390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.100969909505096e-04 +-1.100969909502532e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.14399930037211e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --8.519485979621789e-10 + 7.255296877907247e-22 +-6.815588783681561e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050806664442e+00 + 1.732050806834831e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.003626680781257e-03 +-8.249201913315123e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.69163214774965e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02392649951272e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.069121097384057e-22 --7.766228088407805e-09 + 1.088294531686087e-21 +-9.319467304884009e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050799750162e+00 + 1.732050798196923e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.003619770508034e-03 +-1.182325154164649e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.813824219476811e-21 --1.553234923115737e-08 +-1.301807061325939e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050791984041e+00 + 1.732050794498320e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.897149442288220e-03 +-1.897151953812628e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.25607142661935e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.360368164607609e-21 --9.056447227802648e-09 + 1.813824219476811e-21 +-1.553240265742450e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050798459943e+00 + 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.450386336891641e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -204,7 +204,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000570603728832698, h_cfl = 1.54763284737753e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000309526569475507, h_cfl = 7.73816423688767e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.25382075988464e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.18226413922484e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 1.64297963846373e-05, h = 0.000309526569475507 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.64297963846373e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -212,61 +212,61 @@ Using dense direct linear solver 1.732050791983988e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.897149442234820e-03 +-1.897149442234564e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00014024042417484 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --2.936090793186576e-07 + 1.451059375581449e-20 +-2.348872634548944e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050498374909e+00 + 1.732050557096724e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.976902055413174e-02 +-1.619443445926535e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000171193081122391 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000202145738069941 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.813824219476812e-20 --3.059518557005590e-06 + 2.176589063372174e-20 +-3.671373083283668e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732047732465431e+00 + 1.732047120610904e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.976628621162498e-02 +-2.334043553263640e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.627648438953623e-20 --6.118190762355293e-06 +-5.112441511176575e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044673793225e+00 + 1.732045679542476e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.763806080342232e-02 +-3.763904469703569e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000248574723491267 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.720736329215218e-20 --3.551745333115306e-06 + 3.627648438953623e-20 +-6.118608958942269e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732047240238655e+00 + 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.870287451025137e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732044673375029e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00138764135348931, h_cfl = 3.09526569475507e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00133213569934974, h_cfl = 1.54763284737753e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.30378465282331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.60677674424831e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263337433215072, h_cfl = 3.09526569475507e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00252803935886469, h_cfl = 1.54763284737753e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.16743894764334 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.31211175143817e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000325956365860144, h = 7.37696747318908e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000325956365860144 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -274,65 +274,65 @@ Using dense direct linear solver 1.732044673375029e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.763806039431327e-02 +-3.763806039431302e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00032890715284942 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.388273736413877e-07 + 3.458319534077176e-22 +-1.110618989131094e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732044534547655e+00 + 1.732044562313130e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.806396587819438e-02 +-3.797878466688875e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000329644849596739 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000330382546344058 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.322899417596469e-22 --1.403983190920096e-07 + 5.187479301115764e-22 +-1.684779822767520e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732044532976710e+00 + 1.732044504897046e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.806396434177242e-02 +-3.814914530311398e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 8.645798835192939e-22 --2.807966268498843e-07 +-2.802253743688813e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732044392578402e+00 + 1.732044393149654e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.848986972070141e-02 +-3.848987027925907e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0003333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.484349126394704e-22 --2.100083698679253e-07 + 8.645798835192939e-22 +-2.807966323879119e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732044463366659e+00 + 1.732044392578396e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.827691742853397e-02 +-3.848986972069577e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000583269506000124, h_cfl = 7.37696747318909e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00046251825782768, h_cfl = 7.37696747318909e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000147539349463782, h_cfl = 3.68848373659454e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.1651091253845e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.23689798248315e-14 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744871391589e+00 - 1.732044392578397e+00 + 1.732044392578396e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.000333333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = @@ -340,7 +340,7 @@ Using dense direct linear solver 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -5.108351470510600e-20 --6.414990480596572e-06 +-6.414990481040661e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -354,84 +354,84 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001112474382938587 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.964100676347447e-08 --6.414989319323836e-06 +-2.964100676355834e-08 +-6.414989319767925e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744841750582e+00 - 1.732044392579558e+00 + 1.732044392579557e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.000333333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --6.800477968109612e-05 +-6.800477968128841e-05 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.301432755372143e-04 +-1.301432755375823e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 6, tn = 0.000333333333333333, h = 0.000147539349463782 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000333333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744841750582e+00 - 1.732044392579558e+00 + 1.732044392579557e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.848988454233514e-02 +-3.848988454233476e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000392349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.600627104923145e-09 --2.839386263156096e-06 +-7.680501683960234e-09 +-2.271509010524855e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744832149955e+00 - 1.732041553193295e+00 + 1.224744834070080e+00 + 1.732042121070547e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --4.700826339015032e-02 +-4.530454275356362e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000407103008065224 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000421856943011602 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.600627104923145e-09 --3.467784300002442e-06 +-1.152075252594035e-08 +-4.161336195264326e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744832149955e+00 - 1.732040924795258e+00 + 1.224744830229830e+00 + 1.732040231243362e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --4.700765204696229e-02 +-4.871127329824596e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.920125420984629e-08 --6.935478402828621e-06 +-1.920125420990059e-08 +-6.706973169880346e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744822549328e+00 - 1.732037457101155e+00 + 1.732037685606387e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.552597923940419e-02 +-5.552620041916109e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00044398784543117 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.440094065738472e-08 --4.965993600407691e-06 +-1.920125420990059e-08 +-6.935522231216969e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744827349642e+00 - 1.732039426585958e+00 + 1.224744822549328e+00 + 1.732037457057326e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.126697551544190e-02 +-5.552597919698062e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744822549328e+00 1.732037457057326e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000815788590543756, h_cfl = 1.47539349463782e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000783157046922006, h_cfl = 7.37696747318908e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.3081232211496 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.86161947005909e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0017284251821912, h_cfl = 1.47539349463782e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00165928817490355, h_cfl = 7.37696747318908e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.246411082427 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.78321663514006e-09 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000480872682797115, h = 0.000185793983869552 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000480872682797115 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -439,73 +439,73 @@ Using dense direct linear solver 1.732037457057326e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.552597919698087e-02 +-5.552597919698062e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000555190276344936 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.208991881794590e-08 --5.158196441632458e-06 +-9.671935054384066e-09 +-4.126557153305949e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744810459409e+00 - 1.732032298860885e+00 + 1.224744812877393e+00 + 1.732033330500173e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.625298102378052e-02 +-6.410751301200428e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000573769674731891 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000592349073118846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.208991881794590e-08 --6.154702643820990e-06 +-1.450790258157610e-08 +-7.385633746362308e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744810459409e+00 - 1.732031302354683e+00 + 1.224744808041425e+00 + 1.732030071423580e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.625202263524761e-02 +-6.839733369018403e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.417983763589179e-08 --1.230922722481836e-05 +-2.417983763596017e-08 +-1.194686672043562e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744798369490e+00 - 1.732025147830102e+00 + 1.732025510190606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --7.697890935191426e-02 +-7.697925560747271e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000620218170699279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.813487822691884e-08 --8.858298034688497e-06 +-2.417983763596017e-08 +-1.230931269176919e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744804414450e+00 - 1.732028598759292e+00 + 1.224744798369490e+00 + 1.732025147744634e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --7.161572113686360e-02 +-7.697890927024559e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744798369490e+00 - 1.732025147744635e+00 + 1.732025147744634e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0021540716514567, h_cfl = 1.85793983869552e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00206790878539843, h_cfl = 9.28969919347758e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1301170378603 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.68176978204408e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00324007195283482, h_cfl = 1.85793983869552e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00311046907472143, h_cfl = 9.28969919347758e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.7414951223896 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.70824238130778e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744798369490e+00 - 1.732025147744635e+00 + 1.732025147744634e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.000666666666666667 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.898507088917626e-08 --2.565982424251878e-05 +-2.898507088905174e-08 +-2.565982424274083e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -519,84 +519,84 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004452567171086871 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.826159308500036e-08 --2.565981959463479e-05 +-8.826159308493172e-08 +-2.565981959485683e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744783129996e+00 - 1.732025147749283e+00 + 1.732025147749282e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.000666666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --1.359969607198690e-04 +-1.359969607199972e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = - 2.255112566779967e-04 + 2.255112566778704e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.000666666666666667, h = 0.000333333333333333 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000666666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744783129996e+00 - 1.732025147749283e+00 + 1.732025147749282e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --7.697891689443465e-02 +-7.697891689443441e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0008 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.758520944633275e-08 --1.282981948240577e-05 + 3.006816755704937e-08 +-1.026385558592458e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744820715205e+00 - 1.732012317929800e+00 + 1.224744813198163e+00 + 1.732014883893696e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --9.622432189022313e-02 +-9.237504041474023e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000833333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000866666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.758520944633275e-08 --1.603738698170385e-05 + 4.510225133557405e-08 +-1.924481425896333e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744820715205e+00 - 1.732009110362301e+00 + 1.224744828232247e+00 + 1.732005902935023e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --9.622129252091791e-02 +-1.000700735393923e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.517041889266551e-08 --3.207376417363928e-05 + 7.517041889262341e-08 +-3.090739966930939e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744858300415e+00 - 1.731993073985109e+00 + 1.731994240349613e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154661607610282e-01 +-1.154672493675580e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000916666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.637781416949914e-08 --2.285286958036081e-05 + 7.517041889262341e-08 +-3.207423924877420e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744839507810e+00 - 1.732002294879702e+00 + 1.224744858300415e+00 + 1.731993073510034e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.058445577626473e-01 +-1.154661603176245e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744858300415e+00 1.731993073510034e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00201351019053982, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00193296978291823, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.79890934875468 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85151478542089e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00338105526484789, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00324581305425397, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.73743916276192 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77410749724022e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744858300415e+00 @@ -608,7 +608,7 @@ Using dense direct linear solver 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.309117414477036e-08 --5.773405884346161e-05 +-5.773405884368366e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -622,8 +622,8 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01002676147692884 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.020620443203336e-07 --5.773404837683972e-05 +-1.020620443203894e-07 +-5.773404837706176e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224744769329545e+00 @@ -646,12 +646,12 @@ Using dense direct linear solver 1.224744769329545e+00 1.731993073520500e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --2.041241201267512e-04 +-2.041241201268153e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041241201267512e-04 +-2.041241201268153e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000333333333333333 @@ -661,72 +661,72 @@ Using dense direct linear solver 1.731993073520500e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048128269e-01 +-1.154662048128268e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068668779182e-08 --1.924436746880447e-05 +-2.721654935024201e-08 +-1.539549397504356e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744735308858e+00 - 1.731973829153032e+00 + 1.224744742112995e+00 + 1.731977678026525e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.347104281018275e-01 +-1.308614057923591e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.402068668779182e-08 --2.245173801697123e-05 +-4.082482402536301e-08 +-2.694204120744839e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744735308858e+00 - 1.731970621782483e+00 + 1.224744728504721e+00 + 1.731966131479293e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.347074701934324e-01 +-1.385559949183312e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804137337558364e-08 --4.490249006447743e-05 +-6.804137337560502e-08 +-4.373618637342096e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744701288171e+00 - 1.731948171030436e+00 + 1.731949337334127e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.539509428183345e-01 +-1.539520054502633e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00133333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103103003168773e-08 --3.247448115076263e-05 +-6.804137337560502e-08 +-4.490294134565389e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744718298515e+00 - 1.731960599039349e+00 + 1.224744701288171e+00 + 1.731948170579154e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.443300465012246e-01 +-1.539509424071670e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744701288171e+00 - 1.731948170579155e+00 + 1.731948170579154e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00229974698355001, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00220775710420801, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.62327131262405 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85185266415239e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00386034163600841, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00370592797056808, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 11.1177839117042 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.77846973280864e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744701288171e+00 - 1.731948170579155e+00 + 1.731948170579154e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 2, stage type = 2, tcur = 0.00133333333333333 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.224744769329545e+00 1.731993073520500e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = - 2.092949677120067e-08 + 2.092949677122861e-08 -4.490294134562589e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -741,7 +741,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.007796994789490242 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --9.768237010686826e-08 +-9.768237010689617e-08 -4.490293320686740e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = @@ -749,12 +749,12 @@ Using dense direct linear solver 1.731948170587293e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00133333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --2.721288767099533e-04 +-2.721288767100815e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.342673514605599e-04 +-3.342673514607466e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00133333333333333, h = 0.000333333333333333 @@ -764,61 +764,61 @@ Using dense direct linear solver 1.731948170587293e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.539509572350810e-01 +-1.539509572350808e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.001466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00146666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.571122524342659e-08 --2.565849287251348e-05 +-4.456898019476617e-08 +-2.052679429801076e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744615935949e+00 - 1.731922512094421e+00 + 1.224744627078194e+00 + 1.731927643792995e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.731935461091163e-01 +-1.693448735129157e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00153333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.571122524342659e-08 --2.886559101818603e-05 +-6.685347029214925e-08 +-3.463867051647484e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744615935949e+00 - 1.731919304996275e+00 + 1.224744604793704e+00 + 1.731913531916777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731906597207838e-01 +-1.770388376139515e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.114224504868532e-07 --5.773021990692789e-05 +-1.114224504869154e-07 +-5.656400446462769e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744560224724e+00 - 1.731890440367386e+00 + 1.731891606582829e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.924322840112263e-01 +-1.924333206468701e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00158333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00166666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.356683786513988e-08 --4.209537397185604e-05 +-1.114224504869154e-07 +-5.773064738367189e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744588080336e+00 - 1.731906075213322e+00 + 1.224744560224724e+00 + 1.731890439939910e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.828123207217670e-01 +-1.924322836312466e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744560224724e+00 1.731890439939910e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212728075962138, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204218952923652, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12656858770958 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85234113366686e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356962388134533, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342683892609152, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2805167782746 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78264580801967e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744560224724e+00 @@ -829,7 +829,7 @@ Using dense direct linear solver 1.224744769329545e+00 1.731993073520500e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --7.609693763064796e-08 +-7.609693763057847e-08 -1.026335805904832e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -844,7 +844,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01782130916736246 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.243443038600463e-07 +-2.243443038600327e-07 -1.026335619879371e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = @@ -852,12 +852,12 @@ Using dense direct linear solver 1.731890439958512e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00166666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.401210208858320e-04 +-3.401210208858961e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = - 2.138701891802046e-05 + 2.138701891778671e-05 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00166666666666667, h = 0.000333333333333333 @@ -867,61 +867,61 @@ Using dense direct linear solver 1.731890439958512e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.924322912675243e-01 +-1.924322912675242e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0018 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.564503153003409e-09 --3.207204854458736e-05 + 2.851602522371560e-09 +-2.565763883566988e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744548549744e+00 - 1.731858367909968e+00 + 1.224744547836843e+00 + 1.731864782319676e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.116727774639204e-01 +-2.078245482391487e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00183333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00186666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.564503153003409e-09 --3.527879624398673e-05 + 4.277403783557340e-09 +-4.233452249641094e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744548549744e+00 - 1.731855161162268e+00 + 1.224744549262645e+00 + 1.731848105436016e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.116699626520470e-01 +-2.155177000638580e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.129006306006818e-09 --7.055665421734898e-05 + 7.129006305928901e-09 +-6.939055540189429e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744552114247e+00 - 1.731819883304295e+00 + 1.731821049403110e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309092703313602e-01 +-2.309102809500476e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00191666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.346754729505113e-09 --5.171532440344076e-05 + 7.129006305928900e-09 +-7.055705787948356e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744550331996e+00 - 1.731838724634109e+00 + 1.224744552114247e+00 + 1.731819882900633e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.212904741956991e-01 +-2.309092699815197e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744552114247e+00 1.731819882900633e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212723638487479, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020421469294798, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.1264407884394 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.8529833343099e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0035683760081954, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342564096786758, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2769229036028 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.78663316506319e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744552114247e+00 @@ -932,7 +932,7 @@ Using dense direct linear solver 1.224744769329545e+00 1.731993073520500e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.282444273309854e-07 +-1.282444273309575e-07 -1.731906198674249e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -971,12 +971,12 @@ Using dense direct linear solver 1.224744463143431e+00 1.731819882932031e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --4.082481173030981e-04 +-4.082481173032263e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082481173030980e-04 +-4.082481173032262e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000333333333333333 @@ -986,61 +986,61 @@ Using dense direct linear solver 1.731819882932031e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144941382e-01 +-2.309093144941379e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804135288384963e-08 --3.848488574902302e-05 +-5.443308230709680e-08 +-3.078790859921838e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744395102078e+00 - 1.731781398046282e+00 + 1.224744408710348e+00 + 1.731789095023431e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.501473356364873e-01 +-2.462996222640653e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.804135288384963e-08 --4.169122260608121e-05 +-8.164962346064520e-08 +-5.002943984130940e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744395102078e+00 - 1.731778191709425e+00 + 1.224744381493807e+00 + 1.731769853492189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.501445924371674e-01 +-2.539918168912175e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.360827057676993e-07 --8.338153081238909e-05 +-1.360827057677420e-07 +-8.221557058391165e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744327060725e+00 - 1.731736501401218e+00 + 1.731737667361447e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.693812210948910e-01 +-2.693822056832624e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002333333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00233333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020620293257744e-07 --6.133412919285817e-05 +-1.360827057677420e-07 +-8.338191065200679e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744361081401e+00 - 1.731758548802838e+00 + 1.224744327060725e+00 + 1.731736501021379e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.597637733136176e-01 +-2.693812207741375e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744327060725e+00 1.731736501021379e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212718370342642, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204209635528936, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12628906586808 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85375335237828e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356718377337255, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342449642243764, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2734892673129 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79044818147349e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744327060725e+00 @@ -1051,7 +1051,7 @@ Using dense direct linear solver 1.224744463143431e+00 1.731819882932031e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = - 4.185898103068826e-08 + 4.185898103074413e-08 -8.338191065204725e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1061,7 +1061,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 34.02874272231964 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.657163001854719e-07 +-1.657163001854720e-07 -8.334642626585352e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = @@ -1069,12 +1069,12 @@ Using dense direct linear solver 1.731736536505765e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00233333333333333 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --4.762350969229060e-04 +-4.762350969230342e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.383573282010485e-04 +-5.383573282011767e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00233333333333333, h = 0.000333333333333333 @@ -1084,61 +1084,61 @@ Using dense direct linear solver 1.731736536505765e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.693812655555275e-01 +-2.693812655555273e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.002466666666666666 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00246666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.972622136684127e-08 --4.489687759258784e-05 +-7.178097709349011e-08 +-3.591750207407025e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207700909e+00 - 1.731691639628172e+00 + 1.224744225646153e+00 + 1.731700619003691e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886163684066734e-01 +-2.847692615396470e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002533333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00253333333333333 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.972622136684127e-08 --4.810272806777882e-05 +-1.076714656402352e-07 +-5.772325210713527e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207700909e+00 - 1.731688433777697e+00 + 1.224744189755665e+00 + 1.731678813253658e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886136968646357e-01 +-2.924603177140928e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.794524427336825e-07 --9.620456562154509e-05 +-1.794524427337253e-07 +-9.503877144715158e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744117974688e+00 - 1.731640331940143e+00 + 1.731641497734318e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.078471932381527e-01 +-3.078481517797702e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00258333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.345893320502619e-07 --7.095158096485888e-05 +-1.794524427337253e-07 +-9.620492162977654e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744162837798e+00 - 1.731665584924800e+00 + 1.224744117974688e+00 + 1.731640331584135e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.982313204347335e-01 +-3.078471929454347e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744117974688e+00 1.731640331584135e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212711997252938, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0020420351736282, h_cfl = 1.66666666666666e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12610552088462 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85467369349205e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356605480316245, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342341261103595, h_cfl = 1.66666666666666e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2702378331079 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79407635032002e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744117974688e+00 @@ -1149,7 +1149,7 @@ Using dense direct linear solver 1.224744463143431e+00 1.731819882932031e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.232015549881936e-07 +-1.232015549881377e-07 -1.795513478957123e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1167,12 +1167,12 @@ Using dense direct linear solver 1.731640407994052e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00266666666666667 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --5.441890311996731e-04 +-5.441890311998014e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.828568367068591e-04 +-1.828568367069872e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00266666666666667, h = 0.000333333333333333 @@ -1182,61 +1182,61 @@ Using dense direct linear solver 1.731640407994052e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.078472633855733e-01 +-3.078472633855731e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0028 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.047613945114317e-08 --5.130787723092886e-05 +-2.438091156093162e-08 +-4.104630178474307e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744072270133e+00 - 1.731589100116821e+00 + 1.224744078365361e+00 + 1.731599361692267e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.270789790829610e-01 +-3.232325724994650e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00283333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00286666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.047613945114317e-08 --5.451316318049348e-05 +-3.657136734139743e-08 +-6.541577995558757e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744072270133e+00 - 1.731585894830872e+00 + 1.224744066174905e+00 + 1.731574992214096e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.270763792400071e-01 +-3.309223027123535e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.095227890228634e-08 --1.090254597466690e-04 +-6.095227890232906e-08 +-1.078598600403640e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744041793993e+00 - 1.731531382534305e+00 + 1.731532548134012e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062744382080e-01 +-3.463072069177089e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00291666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.571420917671475e-08 --8.056745652281744e-05 +-6.095227890232906e-08 +-1.090257919149609e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744057032063e+00 - 1.731559840537529e+00 + 1.224744041793993e+00 + 1.731531382202137e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.366922110514798e-01 +-3.463062741724732e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744041793993e+00 1.731531382202137e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00212704593646759, h_cfl = 3.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00204196409900889, h_cfl = 1.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.12589229702666 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.85574827502414e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00356498659229012, h_cfl = 3.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00342238712859851, h_cfl = 1.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.2671613857955 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.79751497127544e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744041793993e+00 @@ -1247,7 +1247,7 @@ Using dense direct linear solver 1.224744463143431e+00 1.731819882932031e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --2.434077505393448e-07 +-2.434077505392889e-07 -2.885007298936149e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1276,33 +1276,33 @@ Using dense direct linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952869449e+00 1.731531504991570e+00 3.616884569623835e-11 2.347179994810489e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out index a57c7a4972..20a8371b72 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_0.out @@ -30,111 +30,111 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.766592820632933e-25 - 6.198917231370851e-25 + 7.013274256506347e-25 + 4.959133785096680e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.637199431170860e-07 +-6.909759539707148e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.766592820632933e-25 --6.460654625319765e-15 + 1.051991138475952e-24 +-7.752785544702116e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568871e+00 + 1.732050807568869e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.637199367072135e-07 +-1.036463924828005e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.753318564126587e-24 --1.292130915474740e-14 +-1.057198020409911e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568864e+00 + 1.732050807568867e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.727439879927881e-06 +-1.727439882107236e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.314988923094940e-24 --7.268236417283047e-15 + 1.753318564126587e-24 +-1.292130920239452e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568870e+00 + 1.732050807568864e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.295579909818203e-06 +-1.727439879927881e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568864e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.28311891337164e-06, h_cfl = 1.49600681952621e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.23179415683677e-06, h_cfl = 7.48003409763106e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568864e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.727439880056078e-06 +-1.727439879927881e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.218307878598316e-23 --1.063925175269948e-12 + 5.774646302878653e-23 +-8.511401401527935e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807567801e+00 + 1.732050807568013e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.284513056218472e-05 +-5.862158892509025e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.218307878598316e-23 --4.486510309025556e-11 + 8.661969454317980e-23 +-5.383812047425289e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807524000e+00 + 1.732050807515026e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.284508676291099e-05 +-8.706862139011699e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.443661575719663e-22 --8.973015222882166e-11 +-7.380245361382353e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807479134e+00 + 1.732050807495062e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.439627774004741e-04 +-1.439627933266656e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.082746181789747e-22 --5.087219268709568e-11 + 1.443661575719663e-22 +-8.973017919524425e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807517992e+00 + 1.732050807479134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.084039430373934e-04 +-1.439627774002177e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -144,7 +144,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.10800420549587e-05, h_cfl = 1.23179415683677e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.02368403727603e-05, h_cfl = 6.15897078418387e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -152,51 +152,51 @@ Using fixed-point nonlinear solver 1.732050807479134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.439627774004741e-04 +-1.439627774002177e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.185877879756730e-21 --1.456675872936312e-09 + 9.487023038053844e-22 +-1.165340698346975e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050806022458e+00 + 1.732050806313793e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.312343195494865e-03 +-1.078666169554574e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.185877879756730e-21 --1.327883988075390e-08 + 1.423053455708076e-21 +-1.593459355469944e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050794200295e+00 + 1.732050791544540e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.312331382288372e-03 +-1.546006517910086e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.371755759513461e-21 --2.655744069953370e-08 +-2.225848276290064e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050780921694e+00 + 1.732050785220651e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.480711763240323e-03 +-2.480716056040931e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.778816819635095e-21 --1.548485869344789e-08 + 2.371755759513461e-21 +-2.655756010524139e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050791994276e+00 + 1.732050780921574e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.896524532204000e-03 +-2.480711763120886e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -206,7 +206,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000746121187338192, h_cfl = 2.02368403727603e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000404736807455207, h_cfl = 1.01184201863802e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -216,121 +216,121 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -2.480711763120886e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.371755759513461e-20 --5.020176796110623e-07 + 1.897404607610769e-20 +-4.016141436888499e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050278903894e+00 + 1.732050379307430e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.585048569790203e-02 +-2.117617348052771e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.371755759513461e-20 --5.231321526267676e-06 + 2.846106911416153e-20 +-6.277477332586480e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732045549600048e+00 + 1.732044503444241e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.584582697166258e-02 +-3.051939545480693e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 4.743511519026922e-20 --1.046075749455039e-05 +-8.741089235670104e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732040320164079e+00 + 1.732042039832338e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --4.921538638034859e-02 +-4.921705718395472e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.557633639270191e-20 --6.072788975992386e-06 + 4.743511519026922e-20 +-1.046168580249801e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732044708132598e+00 + 1.732040319235771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.753181014047722e-02 +-4.921538547841801e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732040319235772e+00 + 1.732040319235771e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00147458509968142, h_cfl = 4.04736807455207e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00141560169569416, h_cfl = 2.02368403727603e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0027980429339929, h_cfl = 4.04736807455207e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00268612121663319, h_cfl = 2.02368403727603e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732040319235772e+00 + 1.732040319235771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --4.921538547841826e-02 +-4.921538547841801e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.652621395936123e-22 --2.373687436856639e-07 + 4.522097116748899e-22 +-1.898949949485302e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732040081867028e+00 + 1.732040129340777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --4.977229530614880e-02 +-4.966091315058449e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.652621395936123e-22 --2.400547530477681e-07 + 6.783145675123348e-22 +-2.880657022826183e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040079181019e+00 + 1.732040031170069e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --4.977229269732533e-02 +-4.988367442625952e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.130524279187225e-21 --4.801094809305133e-07 +-4.791327510910811e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732039839126291e+00 + 1.732039840103020e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.032920229113799e-02 +-5.032920323948598e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.478932093904185e-22 --3.590748666944920e-07 + 1.130524279187225e-21 +-4.801094931369567e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039960160905e+00 + 1.732039839126278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.005074817583913e-02 +-5.032920229112591e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732039839126278e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000822166909540028, h_cfl = 9.64611945545987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00065198560516465, h_cfl = 9.64611945545987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000192922389109197, h_cfl = 4.82305972772994e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744871391589e+00 @@ -380,59 +380,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -5.032920230061168e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.391046366195691e-08 --4.854814974897063e-06 +-1.112837092956553e-08 +-3.883851979917651e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744857462154e+00 - 1.732034984311303e+00 + 1.224744860244247e+00 + 1.732035955274298e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.146784006105126e-02 +-5.924003861372112e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.391046366195691e-08 --5.929261278980024e-06 +-1.669255639434830e-08 +-7.115102842741026e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744857462154e+00 - 1.732033909864999e+00 + 1.224744854680061e+00 + 1.732032724023436e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.146680374525022e-02 +-6.369443588222626e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.782092732391383e-08 --1.185832262943984e-05 +-1.146762118355348e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744843551690e+00 - 1.732027980803649e+00 + 1.732028371505095e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --7.260532630486229e-02 +-7.260570062835196e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.086569549293537e-08 --8.490900275769439e-06 +-2.782092732391383e-08 +-1.185841888956443e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744850506922e+00 - 1.732031348226003e+00 + 1.224744843551690e+00 + 1.732027980707389e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.703633979989043e-02 +-7.260532621263727e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744843551690e+00 1.732027980707389e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000836454572916771, h_cfl = 1.92922389109198e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0008029963900001, h_cfl = 9.64611945545988e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.16227682908068 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270566101614e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181052093431, h_cfl = 1.92922389109198e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093810009694, h_cfl = 9.64611945545988e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669622665817 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527834040216e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -440,65 +440,65 @@ Using fixed-point nonlinear solver 1.732027980707389e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --7.260532621263752e-02 +-7.260532621263727e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.427658546886841e-09 --3.236177310839729e-06 +-5.142126837509473e-09 +-2.588941848671774e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744837124031e+00 - 1.732024744530078e+00 + 1.224744838409563e+00 + 1.732025391765540e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.775196921025503e-02 +-7.672262554914104e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.427658546886841e-09 --3.465574383543507e-06 +-7.713190256264210e-09 +-4.158688253260441e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744837124031e+00 - 1.732024515133006e+00 + 1.224744835838500e+00 + 1.732023822019136e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.775175011098640e-02 +-7.878105758214063e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.285531709377368e-08 --6.931129235625097e-06 +-6.847712639339467e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744830696373e+00 - 1.732021049578153e+00 + 1.732021132994749e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --8.289836202461549e-02 +-8.289844144870642e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.641487820330260e-09 --5.112330435345686e-06 +-1.285531709377368e-08 +-6.931138539529054e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744833910202e+00 - 1.732022868376954e+00 + 1.224744830696373e+00 + 1.732021049568849e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --8.032511485594471e-02 +-8.289836201575658e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744830696373e+00 - 1.732021049568850e+00 + 1.732021049568849e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0019660248682391, h_cfl = 8.9144350136573e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710662895625, h_cfl = 8.9144350136573e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00178288700273146, h_cfl = 4.45721750682865e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098304156312e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05765842323553e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744830696373e+00 - 1.732021049568850e+00 + 1.732021049568849e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 4, stage type = 2, tcur = 0.00071793326075423 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = @@ -506,7 +506,7 @@ Using fixed-point nonlinear solver 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -3.530370123240978e-08 --2.975800002769091e-05 +-2.975800002791296e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -516,87 +516,87 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00372940147662568 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.532439656990651e-08 --2.975800002769091e-05 +-3.532439656996239e-08 +-2.975800002791296e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744836067192e+00 - 1.732021049568850e+00 + 1.732021049568849e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00071793326075423 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = -1.465475048226711e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.456082597770673e-08 +-3.456082610590644e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.608354606827596e-04 +-4.608354606823587e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 8, tn = 0.00071793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00071793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744836067192e+00 - 1.732021049568850e+00 + 1.732021049568849e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --8.289835933034720e-02 +-8.289835933034696e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.499317786180417e-08 --1.169143495256760e-05 +-5.199454228939811e-08 +-9.353147962054056e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744771074014e+00 - 1.732009358133897e+00 + 1.224744784072650e+00 + 1.732011696420887e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --9.918357873041390e-02 +-9.592639268090995e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.499317786180417e-08 --1.398819431960699e-05 +-7.799181343409717e-08 +-1.678580310756492e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744771074014e+00 - 1.732007061374530e+00 + 1.224744758075379e+00 + 1.732004263765742e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --9.918141349369053e-02 +-1.024382407180167e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.299863557236083e-07 --2.797577789795172e-05 +-1.299863557234953e-07 +-2.714060631061440e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744706080837e+00 - 1.731993073790951e+00 + 1.731993908962539e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662366896028e-01 +-1.154670161829097e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.748976679270626e-08 --2.012078118117280e-05 +-1.299863557234953e-07 +-2.797606464258477e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744738577426e+00 - 1.732000928787668e+00 + 1.224744706080837e+00 + 1.731993073504207e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.073244199766940e-01 +-1.154662364219743e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744706080837e+00 1.731993073504207e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293894332279, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00146202138558988, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18324631078177 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742283557524e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0025572582820009, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496795072086, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.70350030381214 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697163888963e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744706080837e+00 @@ -607,8 +607,8 @@ Using fixed-point nonlinear solver 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.302572442905554e-07 --5.773406467035613e-05 +-1.302572442905300e-07 +-5.773406467057818e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -618,8 +618,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007204341456084042 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.302435561799304e-07 --5.773406467035613e-05 +-1.302435561799329e-07 +-5.773406467057818e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224744741148033e+00 @@ -629,7 +629,7 @@ Using fixed-point nonlinear solver -2.041241329185004e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = - 5.636297230191152e-08 + 5.636297223781063e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.001 @@ -652,12 +652,12 @@ Using fixed-point nonlinear solver -2.041241282246820e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = - 3.715205851271546e-11 + 3.715199441182259e-11 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00143586652150846 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041240910726235e-04 +-2.041240910726876e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 0.001, h = 0.000435866521508459 @@ -667,61 +667,61 @@ Using fixed-point nonlinear solver 1.731993073504207e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048069207e-01 +-1.154662048069206e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.448542876595011e-08 --2.516392652048791e-05 +-3.558834301277127e-08 +-2.013114121639030e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744724825514e+00 - 1.731967909577686e+00 + 1.224744733722600e+00 + 1.731972942362990e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.406303821098906e-01 +-1.355972482988694e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.448542876595011e-08 --3.064803773432170e-05 +-5.338251451915690e-08 +-3.677754775046387e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744724825514e+00 - 1.731962425466472e+00 + 1.224744715928428e+00 + 1.731956295956456e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.406253432841054e-01 +-1.456576300654362e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897085753190022e-08 --6.129387921317593e-05 +-8.897085753192817e-08 +-5.929968353540540e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744680340085e+00 - 1.731931779624994e+00 + 1.731933773820671e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.657881811583130e-01 +-1.657899844598081e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.672814314892516e-08 --4.391470954462443e-05 +-8.897085753192815e-08 +-6.129488003890159e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744702582799e+00 - 1.731949158794662e+00 + 1.224744680340085e+00 + 1.731931778624168e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.532082043043480e-01 +-1.657881802532906e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744680340085e+00 1.731931778624168e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00257210990416366, h_cfl = 4.35866521508459e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00246922550799711, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.66509558809782 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857379327764e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702712074304, h_cfl = 4.35866521508459e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00414434603591332, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.50829171639623 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.2026455278835e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744680340085e+00 @@ -732,7 +732,7 @@ Using fixed-point nonlinear solver 1.224744769310943e+00 1.731993073504207e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --8.897087376354157e-08 +-8.897087376351363e-08 -6.129488003892014e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -743,7 +743,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007673490841839424 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.899932215360264e-08 +-8.899932215363058e-08 -6.129488003892014e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = @@ -754,12 +754,12 @@ Using fixed-point nonlinear solver -2.930949713846630e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --3.868466316716440e-08 +-3.868466329537072e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.483318905841863e-04 +-3.483318905843051e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 @@ -769,61 +769,61 @@ Using fixed-point nonlinear solver 1.731931778624168e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.657881802675232e-01 +-1.657881802675230e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.912642027619790e-08 --2.338166570677509e-05 +-3.930113622097172e-08 +-1.870533256542005e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744631185200e+00 - 1.731908396958461e+00 + 1.224744641010484e+00 + 1.731913073291602e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.820706431086168e-01 +-1.788140435779716e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.912642027619790e-08 --2.567803630701393e-05 +-5.895170433145758e-08 +-3.081362094050959e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744631185200e+00 - 1.731906100587861e+00 + 1.224744621359916e+00 + 1.731900965003227e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.820685881477850e-01 +-1.853248332952723e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.825284055239581e-08 --5.135549297792678e-05 +-9.825284055242929e-08 +-5.052044865820785e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744582058780e+00 - 1.731880423131190e+00 + 1.731881258175509e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.983503248923743e-01 +-1.983510642998451e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.368963041429685e-08 --3.765570452213322e-05 +-9.825284055242930e-08 +-5.135574866136406e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744606621990e+00 - 1.731894122919646e+00 + 1.224744582058780e+00 + 1.731880422875506e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.902100650733083e-01 +-1.983503246659736e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744582058780e+00 1.731880422875506e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225773857955658, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216742903637431, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68410001891712 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792597983481e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378836644998163, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683179198237, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8935152074542 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382562764265e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744582058780e+00 @@ -834,7 +834,7 @@ Using fixed-point nonlinear solver 1.224744769310943e+00 1.731993073504207e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.818606738314497e-07 +-1.818606738313964e-07 -1.126506287003615e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -845,7 +845,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01409326137947841 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.818969806161548e-07 +-1.818969806161574e-07 -1.126506287003615e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = @@ -856,12 +856,12 @@ Using fixed-point nonlinear solver -3.506715672368343e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.447347273876481e-08 +-3.447347286697494e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --6.649593997723060e-04 +-6.649593997724086e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 @@ -871,61 +871,61 @@ Using fixed-point nonlinear solver 1.731880422875506e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.983503219883828e-01 +-1.983503219883826e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.378146481229947e-08 --2.797401427580588e-05 +-7.502517184985114e-08 +-2.237921142064467e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744493632497e+00 - 1.731852448861231e+00 + 1.224744512388790e+00 + 1.731858043664086e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.146312677970369e-01 +-2.113749855104073e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.378146481229947e-08 --3.027017092384795e-05 +-1.125377577747767e-07 +-3.632418540804014e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744493632497e+00 - 1.731850152704583e+00 + 1.224744474876204e+00 + 1.731844098690098e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.146292562056250e-01 +-2.178851858605106e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.875629296245989e-07 --6.053977444466565e-05 +-1.875629296246279e-07 +-5.970480238387039e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744399851032e+00 - 1.731819883101062e+00 + 1.731820718073122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093462868315e-01 +-2.309100699291379e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.406721972184492e-07 --4.454399240950264e-05 +-1.875629296246279e-07 +-6.054001791746922e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744446741765e+00 - 1.731835878883097e+00 + 1.224744399851032e+00 + 1.731819882857589e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.227699151613177e-01 +-2.309093460758216e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744399851032e+00 1.731819882857589e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188599062501867, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181055100001793, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41887450062079 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821343573973e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316368170790648, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303713443959022, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7674320187887 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107137187604e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744399851032e+00 @@ -936,7 +936,7 @@ Using fixed-point nonlinear solver 1.224744769310943e+00 1.731993073504207e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.344064561522661e-07 +-3.344064561522174e-07 -1.731906466178046e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -947,7 +947,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02163921128615572 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.344145077803360e-07 +-3.344145077803432e-07 -1.731906466178046e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = @@ -958,7 +958,7 @@ Using fixed-point nonlinear solver -4.082481637967301e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = - 5.649384941330599e-08 + 5.649384928509138e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.002 @@ -981,12 +981,12 @@ Using fixed-point nonlinear solver -4.082481544090977e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = - 1.680558746431014e-10 + 1.680557464284948e-10 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082479863532232e-04 +-4.082479863533515e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 @@ -996,61 +996,61 @@ Using fixed-point nonlinear solver 1.731819882857589e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144716717e-01 +-2.309093144716714e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897081486230601e-08 --5.032281984133514e-05 +-7.117665188986717e-08 +-4.025825587306807e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744374088516e+00 - 1.731769560037748e+00 + 1.224744391882679e+00 + 1.731779624601716e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.560652096298581e-01 +-2.510338493854913e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897081486230601e-08 --5.580512610035023e-05 +-1.067649778348008e-07 +-6.696609208199875e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744374088516e+00 - 1.731764077731489e+00 + 1.224744356294353e+00 + 1.731752916765507e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.560605379495409e-01 +-2.610910659759172e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.779416297246120e-07 --1.116082159716510e-04 +-1.779416297246679e-07 +-1.096146041417520e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744285117702e+00 - 1.731708274641617e+00 + 1.731710268253447e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.812139961944123e-01 +-2.812156660606556e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.334562222934590e-07 --8.165109391028020e-05 +-1.779416297246679e-07 +-1.116090570579737e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744329603109e+00 - 1.731738231763679e+00 + 1.224744285117702e+00 + 1.731708273800531e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.686387545586373e-01 +-2.812139954899106e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744285117702e+00 1.731708273800531e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00220576582519839, h_cfl = 4.35866521508458e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00211753519219046, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821940364228 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564303104e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0036985957599436, h_cfl = 4.35866521508458e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00355065192954585, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14619098814395 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102673e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744285117702e+00 @@ -1061,8 +1061,8 @@ Using fixed-point nonlinear solver 1.224744463059331e+00 1.731819882857589e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.779417029031627e-07 --1.116090570580930e-04 +-1.779417029031068e-07 +-1.116090570578709e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1072,8 +1072,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01396408830690622 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.779795848563395e-07 --1.116090570580930e-04 +-1.779795848562836e-07 +-1.116090570578709e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744285079746e+00 @@ -1088,7 +1088,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.524556406913978e-04 +-5.524556406914166e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 @@ -1100,59 +1100,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -2.812139955088883e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.791468057387774e-08 --3.966055737173341e-05 +-6.233174445910431e-08 +-3.172844589738673e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207165066e+00 - 1.731668613243159e+00 + 1.224744222748002e+00 + 1.731676545354633e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.974898456560649e-01 +-2.942346177348901e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.791468057387774e-08 --4.195599536146686e-05 +-9.349761668865647e-08 +-5.034718218675959e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207165066e+00 - 1.731666317805169e+00 + 1.224744191582130e+00 + 1.731657926618344e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.974879445589869e-01 +-3.007428243214213e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.558293611477555e-07 --8.391145448667993e-05 +-1.558293611477608e-07 +-8.307672964719434e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744129250385e+00 - 1.731624362346044e+00 + 1.731625197070884e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.137626089789828e-01 +-3.137632924552743e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.168720208608166e-07 --6.207301315914881e-05 +-1.558293611477608e-07 +-8.391166686243192e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744168207725e+00 - 1.731646200787372e+00 + 1.224744129250385e+00 + 1.731624362133668e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.056259043116503e-01 +-3.137626088050885e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744129250385e+00 1.731624362133668e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.002257553829679, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216725167649184, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68347123197489 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919341947655e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460754926259, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363322324729209, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8807219773842 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187823725386e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744129250385e+00 @@ -1163,8 +1163,8 @@ Using fixed-point nonlinear solver 1.224744463059331e+00 1.731819882857589e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.284175265278747e-07 --1.955207239205947e-04 +-3.284175265278694e-07 +-1.955207239203727e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1174,8 +1174,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02445379030804438 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.284693989193180e-07 --1.955207239205947e-04 +-3.284693989193127e-07 +-1.955207239203727e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744134589932e+00 @@ -1190,7 +1190,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.690829125582643e-04 +-8.690829125583155e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 @@ -1202,71 +1202,71 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -3.137626061353151e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.225696916397633e-07 --4.425099760492163e-05 +-9.805575331181639e-08 +-3.540079808393730e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744012020240e+00 - 1.731580111136064e+00 + 1.224744036534179e+00 + 1.731588961335585e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.300360200821527e-01 +-3.267812932488286e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.225696916397633e-07 --4.654609200911219e-05 +-1.470836299677246e-07 +-5.585530109343321e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744012020240e+00 - 1.731577816041659e+00 + 1.224743987506302e+00 + 1.731568506832575e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.300341624276100e-01 +-3.332885428632372e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.451393832795266e-07 --9.309166003566488e-05 +-2.451393832795410e-07 +-9.225705459148015e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743889450549e+00 - 1.731531270473633e+00 + 1.731532105079077e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062609613917e-01 +-3.463069286456385e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.838545374596449e-07 --6.895829271345800e-05 +-2.451393832795410e-07 +-9.309186018788900e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224743950735395e+00 - 1.731555403840955e+00 + 1.224743889450549e+00 + 1.731531270273481e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.381708445878439e-01 +-3.463062608012700e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743889450549e+00 - 1.731531270273480e+00 + 1.731531270273481e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188582026065544, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038745022922, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41829467405511 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48966846604958e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0031606784621389, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303425132365335, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7572106224461 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674516553139e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224743889450549e+00 - 1.731531270273480e+00 + 1.731531270273481e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 6, stage type = 2, tcur = 0.003 [DEBUG][rank 0][mriStep_StageDIRKNoFast][predictor] zpred(:) = 1.224744463059331e+00 1.731819882857589e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --5.385554403605183e-07 --2.886125841086162e-04 +-5.385554403605039e-07 +-2.886125841081721e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1276,48 +1276,48 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03606875840854498 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.385851829264586e-07 --2.886125841086162e-04 +-5.385851829263883e-07 +-2.886125841081721e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224743924474148e+00 - 1.731531270273480e+00 + 1.731531270273481e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = -6.123719905959306e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = - 5.671821905856280e-08 + 5.671821918679878e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.224743952637017e+00 - 1.731531270273480e+00 + 1.731531270273481e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.224743952637017e+00 - 1.731531270273480e+00 + 1.731531270273481e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952637017e+00 1.731531270273481e+00 1.962627838025810e-10 8.970602038971265e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out index 04ae2095ff..d733765624 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_0.out @@ -31,111 +31,111 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.766592820632933e-25 - 6.198917231370851e-25 + 7.013274256506347e-25 + 4.959133785096680e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.637199431170860e-07 +-6.909759539707148e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.766592820632933e-25 --6.460654625319765e-15 + 1.051991138475952e-24 +-7.752785544702116e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568871e+00 + 1.732050807568869e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.637199367072135e-07 +-1.036463924828005e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.753318564126587e-24 --1.292130915474740e-14 +-1.057198020409911e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568864e+00 + 1.732050807568867e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.727439879927881e-06 +-1.727439882107236e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.314988923094940e-24 --7.268236417283047e-15 + 1.753318564126587e-24 +-1.292130920239452e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568870e+00 + 1.732050807568864e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.295579909818203e-06 +-1.727439879927881e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568864e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.28311891337164e-06, h_cfl = 1.49600681952621e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.23179415683677e-06, h_cfl = 7.48003409763106e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568864e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.727439880056078e-06 +-1.727439879927881e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.218307878598316e-23 --1.063925175269948e-12 + 5.774646302878653e-23 +-8.511401401527935e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807567801e+00 + 1.732050807568013e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.284513056218472e-05 +-5.862158892509025e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.218307878598316e-23 --4.486510309025556e-11 + 8.661969454317980e-23 +-5.383812047425289e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807524000e+00 + 1.732050807515026e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.284508676291099e-05 +-8.706862139011699e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.443661575719663e-22 --8.973015222882166e-11 +-7.380245361382353e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807479134e+00 + 1.732050807495062e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.439627774004741e-04 +-1.439627933266656e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.082746181789747e-22 --5.087219268709568e-11 + 1.443661575719663e-22 +-8.973017919524425e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807517992e+00 + 1.732050807479134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.084039430373934e-04 +-1.439627774002177e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -145,7 +145,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.10800420549587e-05, h_cfl = 1.23179415683677e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.02368403727603e-05, h_cfl = 6.15897078418387e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -153,51 +153,51 @@ Using GMRES iterative linear solver 1.732050807479134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.439627774004741e-04 +-1.439627774002177e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.185877879756730e-21 --1.456675872936312e-09 + 9.487023038053844e-22 +-1.165340698346975e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050806022458e+00 + 1.732050806313793e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.312343195494865e-03 +-1.078666169554574e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.185877879756730e-21 --1.327883988075390e-08 + 1.423053455708076e-21 +-1.593459355469944e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050794200295e+00 + 1.732050791544540e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.312331382288372e-03 +-1.546006517910086e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.371755759513461e-21 --2.655744069953370e-08 +-2.225848276290064e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050780921694e+00 + 1.732050785220651e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.480711763240323e-03 +-2.480716056040931e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.778816819635095e-21 --1.548485869344789e-08 + 2.371755759513461e-21 +-2.655756010524139e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050791994276e+00 + 1.732050780921574e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.896524532204000e-03 +-2.480711763120886e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -207,7 +207,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000746121187338192, h_cfl = 2.02368403727603e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000404736807455207, h_cfl = 1.01184201863802e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -217,121 +217,121 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -2.480711763120886e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.371755759513461e-20 --5.020176796110623e-07 + 1.897404607610769e-20 +-4.016141436888499e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050278903894e+00 + 1.732050379307430e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.585048569790203e-02 +-2.117617348052771e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.371755759513461e-20 --5.231321526267676e-06 + 2.846106911416153e-20 +-6.277477332586480e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732045549600048e+00 + 1.732044503444241e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.584582697166258e-02 +-3.051939545480693e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 4.743511519026922e-20 --1.046075749455039e-05 +-8.741089235670104e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732040320164079e+00 + 1.732042039832338e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --4.921538638034859e-02 +-4.921705718395472e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.557633639270191e-20 --6.072788975992386e-06 + 4.743511519026922e-20 +-1.046168580249801e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732044708132598e+00 + 1.732040319235771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.753181014047722e-02 +-4.921538547841801e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732040319235772e+00 + 1.732040319235771e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00147458509968142, h_cfl = 4.04736807455207e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00141560169569416, h_cfl = 2.02368403727603e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0027980429339929, h_cfl = 4.04736807455207e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00268612121663319, h_cfl = 2.02368403727603e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732040319235772e+00 + 1.732040319235771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --4.921538547841826e-02 +-4.921538547841801e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.652621395936123e-22 --2.373687436856639e-07 + 4.522097116748899e-22 +-1.898949949485302e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732040081867028e+00 + 1.732040129340777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --4.977229530614880e-02 +-4.966091315058449e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.652621395936123e-22 --2.400547530477681e-07 + 6.783145675123348e-22 +-2.880657022826183e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040079181019e+00 + 1.732040031170069e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --4.977229269732533e-02 +-4.988367442625952e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.130524279187225e-21 --4.801094809305133e-07 +-4.791327510910811e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732039839126291e+00 + 1.732039840103020e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.032920229113799e-02 +-5.032920323948598e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.478932093904185e-22 --3.590748666944920e-07 + 1.130524279187225e-21 +-4.801094931369567e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039960160905e+00 + 1.732039839126278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.005074817583913e-02 +-5.032920229112591e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732039839126278e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000822166909540028, h_cfl = 9.64611945545987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00065198560516465, h_cfl = 9.64611945545987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000192922389109197, h_cfl = 4.82305972772994e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744871391589e+00 @@ -394,59 +394,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -5.032920229956682e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.391046400587856e-08 --4.854814974796274e-06 +-1.112837120470285e-08 +-3.883851979837019e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744857464243e+00 - 1.732034984311304e+00 + 1.224744860246336e+00 + 1.732035955274299e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.146784006000690e-02 +-5.924003861267669e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.391046400587856e-08 --5.929261278879285e-06 +-1.669255680705427e-08 +-7.115102842620141e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744857464243e+00 - 1.732033909864999e+00 + 1.224744854682150e+00 + 1.732032724023436e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.146680374420587e-02 +-6.369443588118166e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.782092801175711e-08 --1.185832262923836e-05 +-1.146762118335192e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744843553779e+00 - 1.732027980803649e+00 + 1.732028371505095e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --7.260532630381790e-02 +-7.260570062730770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.086569600881783e-08 --8.490900275618314e-06 +-2.782092801175711e-08 +-1.185841888936292e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744850509011e+00 - 1.732031348226003e+00 + 1.224744843553779e+00 + 1.732027980707389e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.703633979884621e-02 +-7.260532621159300e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744843553779e+00 1.732027980707389e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000836454563053799, h_cfl = 1.92922389109198e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000802996380531647, h_cfl = 9.64611945545988e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.1622767800016 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270599296684e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181049706912, h_cfl = 1.92922389109198e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093807718636, h_cfl = 9.64611945545988e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669610790272 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527847871496e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -456,59 +456,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -7.260532621159300e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.427658705803964e-09 --3.236177310793173e-06 +-5.142126964643172e-09 +-2.588941848634538e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744837126120e+00 - 1.732024744530078e+00 + 1.224744838411652e+00 + 1.732025391765540e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.775196920921051e-02 +-7.672262554809671e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.427658705803964e-09 --3.465574383496951e-06 +-7.713190446964758e-09 +-4.158688253204582e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744837126120e+00 - 1.732024515133006e+00 + 1.224744835840589e+00 + 1.732023822019136e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.775175010994190e-02 +-7.878105758109674e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.285531741160793e-08 --6.931129235531986e-06 +-6.847712639246411e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744830698462e+00 - 1.732021049578154e+00 + 1.732021132994750e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --8.289836202357133e-02 +-8.289844144766263e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.641488058705946e-09 --5.112330435275851e-06 +-1.285531741160793e-08 +-6.931138539435981e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744833912291e+00 - 1.732022868376954e+00 + 1.224744830698462e+00 + 1.732021049568850e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --8.032511485490058e-02 +-8.289836201471279e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744830698462e+00 1.732021049568850e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00196602415616299, h_cfl = 8.9144350136573e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710718901405, h_cfl = 8.9144350136573e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00178288700273146, h_cfl = 4.45721750682865e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098774423023e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05764977862688e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744830698462e+00 @@ -571,59 +571,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -8.289835932646444e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.499317320883651e-08 --1.169143495202001e-05 +-5.199453856706922e-08 +-9.353147961616004e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744771081785e+00 - 1.732009358133898e+00 + 1.224744784080420e+00 + 1.732011696420888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --9.918357872652939e-02 +-9.592639267702602e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.499317320883651e-08 --1.398819431905914e-05 +-7.799180785060382e-08 +-1.678580310690754e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744771081785e+00 - 1.732007061374531e+00 + 1.224744758083151e+00 + 1.732004263765743e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --9.918141348980576e-02 +-1.024382407141320e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.299863464176730e-07 --2.797577789685596e-05 +-2.714060630951885e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744706088612e+00 - 1.731993073790953e+00 + 1.731993908962540e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662366857164e-01 +-1.154670161790234e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.748975981325476e-08 --2.012078118035110e-05 +-1.299863464176730e-07 +-2.797606464148913e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744738585199e+00 - 1.732000928787669e+00 + 1.224744706088612e+00 + 1.731993073504208e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.073244199728086e-01 +-1.154662364180881e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744706088612e+00 1.731993073504208e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293912788855, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00146202156277301, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18324693894206 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742295729181e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00255725810521718, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496778100849, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.70349970213761 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697163888963e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744706088612e+00 @@ -709,59 +709,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -1.154662047975011e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.448543697763387e-08 --2.516392651843506e-05 +-3.558834958210710e-08 +-2.013114121474805e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744724844347e+00 - 1.731967909577690e+00 + 1.224744733741435e+00 + 1.731972942362993e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.406303821004768e-01 +-1.355972482894549e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.448543697763387e-08 --3.064803773227013e-05 +-5.338252437316064e-08 +-3.677754774800212e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744724844347e+00 - 1.731962425466476e+00 + 1.224744715947260e+00 + 1.731956295956460e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.406253432746918e-01 +-1.456576300560240e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897087395526774e-08 --6.129387920907283e-05 +-8.897087395526776e-08 +-5.929968353130192e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744680358910e+00 - 1.731931779624999e+00 + 1.731933773820677e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.657881811489054e-01 +-1.657899844504005e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.672815546645081e-08 --4.391470954154661e-05 +-8.897087395526773e-08 +-6.129488003479860e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744702601629e+00 - 1.731949158794667e+00 + 1.224744680358910e+00 + 1.731931778624173e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.532082042949372e-01 +-1.657881802438831e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744680358910e+00 1.731931778624173e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00257210975511551, h_cfl = 4.35866521508459e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00246922536491089, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.66509525981791 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857377999926e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702724698721, h_cfl = 4.35866521508459e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00414434615710772, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.50829199445018 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.20264559704176e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744680358910e+00 @@ -824,59 +824,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -1.657881802522136e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.912642842557462e-08 --2.338166570461594e-05 +-3.930114274045970e-08 +-1.870533256369275e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744631215821e+00 - 1.731908396958469e+00 + 1.224744641041107e+00 + 1.731913073291610e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.820706430933131e-01 +-1.788140435626671e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.912642842557462e-08 --2.567803630485560e-05 +-5.895171411068954e-08 +-3.081362093791966e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744631215821e+00 - 1.731906100587869e+00 + 1.224744621390535e+00 + 1.731900965003236e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.820685881324814e-01 +-1.853248332799702e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.825285685114924e-08 --5.135549297361015e-05 +-9.825285685114923e-08 +-5.052044865389100e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744582089393e+00 - 1.731880423131200e+00 + 1.731881258175520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.983503248770767e-01 +-1.983510642845477e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.368964263836193e-08 --3.765570451889543e-05 +-9.825285685114924e-08 +-5.135574865704751e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744606652607e+00 - 1.731894122919654e+00 + 1.224744582089393e+00 + 1.731880422875516e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.902100650580076e-01 +-1.983503246506764e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744582089393e+00 1.731880422875516e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225773857827753, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216742903514643, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68410001456395 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792595770338e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378836643134772, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683177409381, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8935151440347 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382590428546e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744582089393e+00 @@ -888,7 +888,7 @@ Using GMRES iterative linear solver 1.731993073504208e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.818488773025374e-07 --1.126506286919238e-04 +-1.126506286917017e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -911,8 +911,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.818631680834705e-07 --1.126506286919237e-04 +-1.818631680834225e-07 +-1.126506286917017e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744587466616e+00 @@ -922,12 +922,12 @@ Using GMRES iterative linear solver -3.506715672217582e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.457877648588936e-08 +-3.457877635767923e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --6.649593138309538e-04 +-6.649593138313547e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 @@ -937,61 +937,61 @@ Using GMRES iterative linear solver 1.731880422875516e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.983503219620643e-01 +-1.983503219620645e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.378145269170097e-08 --2.797401427209409e-05 +-7.502516215340602e-08 +-2.237921141767529e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744493685164e+00 - 1.731852448861244e+00 + 1.224744512441454e+00 + 1.731858043664099e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.146312677707154e-01 +-2.113749854840868e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.378145269170097e-08 --3.027017092013574e-05 +-1.125377432301090e-07 +-3.632418540358556e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744493685164e+00 - 1.731850152704596e+00 + 1.224744474928873e+00 + 1.731844098690113e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.146292561793036e-01 +-2.178851858341888e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.875629053834019e-07 --6.053977443724126e-05 +-1.875629053835150e-07 +-5.970480237644622e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744399903711e+00 - 1.731819883101079e+00 + 1.731820718073140e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093462605070e-01 +-2.309100699028139e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.406721790375515e-07 --4.454399240393450e-05 +-1.875629053835150e-07 +-6.054001791004492e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744446794437e+00 - 1.731835878883112e+00 + 1.224744399903711e+00 + 1.731819882857606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.227699151349948e-01 +-2.309093460494976e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744399903711e+00 1.731819882857606e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188599063091926, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181055100568248, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41887452070312 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821339147555e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316368171320478, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303713444467659, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7674320368212 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107137187599e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744399903711e+00 @@ -1002,8 +1002,8 @@ Using GMRES iterative linear solver 1.224744769329784e+00 1.731993073504208e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.343725866706662e-07 --1.731906466022615e-04 +-3.343725866706916e-07 +-1.731906466018174e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1026,8 +1026,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.343461787054534e-07 --1.731906466022615e-04 +-3.343461787053829e-07 +-1.731906466018174e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224744434983606e+00 @@ -1037,7 +1037,7 @@ Using GMRES iterative linear solver -4.082481637676731e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = - 5.631951587669425e-08 + 5.631951613312347e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.002 @@ -1060,12 +1060,12 @@ Using GMRES iterative linear solver -4.082481543800408e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_0(:) = --6.277653950672957e-12 +-6.277397521459824e-12 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 1, stage type = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082481606576949e-04 +-4.082481606574385e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 12, tn = 0.002, h = 0.000435866521508458 @@ -1075,61 +1075,61 @@ Using GMRES iterative linear solver 1.731819882857606e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144281007e-01 +-2.309093144281012e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897085284904788e-08 --5.032281983183958e-05 +-7.117668227919361e-08 +-4.025825586547175e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744374175649e+00 - 1.731769560037774e+00 + 1.224744391969820e+00 + 1.731779624601741e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.560652095863140e-01 +-2.510338493419426e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897085284904788e-08 --5.580512609086053e-05 +-1.067650234187904e-07 +-6.696609207061132e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744374175649e+00 - 1.731764077731515e+00 + 1.224744356381479e+00 + 1.731752916765536e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.560605379059970e-01 +-2.610910659323792e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.779417056980958e-07 --1.116082159526717e-04 +-1.779417056979840e-07 +-1.096146041227707e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744285204797e+00 - 1.731708274641653e+00 + 1.731710268253484e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.812139961508946e-01 +-2.812156660171386e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.334562792735718e-07 --8.165109389604350e-05 +-1.779417056979840e-07 +-1.116090570389946e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744329690223e+00 - 1.731738231763710e+00 + 1.224744285204797e+00 + 1.731708273800567e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.686387545151067e-01 +-2.812139954463936e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744285204797e+00 1.731708273800567e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0022057658204453, h_cfl = 4.35866521508458e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00211753518762749, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821939317356 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912565188417e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00369859575621362, h_cfl = 4.35866521508458e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00355065192596507, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14619097992863 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731339102668e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744285204797e+00 @@ -1140,7 +1140,7 @@ Using GMRES iterative linear solver 1.224744463146502e+00 1.731819882857606e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.779417028562689e-07 +-1.779417028563807e-07 -1.116090570389972e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1164,7 +1164,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.779578273617876e-07 +-1.779578273630592e-07 -1.116090570389972e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = @@ -1175,12 +1175,12 @@ Using GMRES iterative linear solver -4.972189178835323e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --3.875270679592011e-08 +-3.875270660358581e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.524558520869922e-04 +-5.524558520867904e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 @@ -1190,61 +1190,61 @@ Using GMRES iterative linear solver 1.731708273800567e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.812139954544541e-01 +-2.812139954544545e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.791471038771074e-08 --3.966055736405637e-05 +-6.233176831014584e-08 +-3.172844589124514e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207273964e+00 - 1.731668613243203e+00 + 1.224744222856906e+00 + 1.731676545354676e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.974898456016520e-01 +-2.942346176804733e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.791471038771074e-08 --4.195599535379282e-05 +-9.349765246521874e-08 +-5.034718217755080e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207273964e+00 - 1.731666317805213e+00 + 1.224744191691022e+00 + 1.731657926618390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.974879445045738e-01 +-3.007428242670126e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.558294207754215e-07 --8.391145447133181e-05 +-1.558294207753646e-07 +-8.307672963184519e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744129359254e+00 - 1.731624362346096e+00 + 1.731625197070936e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.137626089245904e-01 +-3.137632924008821e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.168720655815661e-07 --6.207301314763663e-05 +-1.558294207753646e-07 +-8.391166684708388e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744168316609e+00 - 1.731646200787419e+00 + 1.224744129359254e+00 + 1.731624362133720e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.056259042572476e-01 +-3.137626087506964e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744129359254e+00 1.731624362133720e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0022575538397657, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216725168617507, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68347126630447 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919337520793e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460751626231, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363322321561182, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8807218650694 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187865227148e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744129359254e+00 @@ -1255,8 +1255,8 @@ Using GMRES iterative linear solver 1.224744463146502e+00 1.731819882857606e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.283957354056739e-07 --1.955207238863998e-04 +-3.283957354057604e-07 +-1.955207238861778e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1279,8 +1279,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.284084366090734e-07 --1.955207238863998e-04 +-3.284084366112281e-07 +-1.955207238861777e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744134738065e+00 @@ -1290,12 +1290,12 @@ Using GMRES iterative linear solver -5.547954542837812e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.458874962429450e-08 +-3.458874923960725e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.690828676907322e-04 +-8.690828676911160e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 @@ -1305,61 +1305,61 @@ Using GMRES iterative linear solver 1.731624362133720e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.137626060612901e-01 +-3.137626060612908e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.225696853119440e-07 --4.425099759448164e-05 +-9.805574824959853e-08 +-3.540079807558539e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744012168380e+00 - 1.731580111136125e+00 + 1.224744036682317e+00 + 1.731588961335645e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.300360200081327e-01 +-3.267812931748081e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.225696853119440e-07 --4.654609199867290e-05 +-1.470836223743978e-07 +-5.585530108090615e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744012168380e+00 - 1.731577816041721e+00 + 1.224743987654443e+00 + 1.731568506832639e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.300341623535901e-01 +-3.332885427892185e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.451393706238881e-07 --9.309166001478632e-05 +-2.451393706239963e-07 +-9.225705457060142e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743889598695e+00 - 1.731531270473705e+00 + 1.731532105079150e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062608873763e-01 +-3.463069285716236e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.838545279679160e-07 --6.895829269779882e-05 +-2.451393706239963e-07 +-9.309186016701053e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224743950883537e+00 - 1.731555403841022e+00 + 1.224743889598695e+00 + 1.731531270273553e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.381708445138262e-01 +-3.463062607272551e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743889598695e+00 1.731531270273553e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188582026439872, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038745382277, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.4182946867952 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.4896684217788e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316067845377299, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303425131562207, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7572105939732 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674544222306e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224743889598695e+00 @@ -1370,8 +1370,8 @@ Using GMRES iterative linear solver 1.224744463146502e+00 1.731819882857606e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --5.384943597857191e-07 --2.886125840533271e-04 +-5.384943597858482e-07 +-2.886125840531051e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1394,8 +1394,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.384646236690077e-07 --2.886125840533272e-04 +-5.384646236722668e-07 +-2.886125840531051e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224743924681878e+00 @@ -1405,7 +1405,7 @@ Using GMRES iterative linear solver -6.123719904920655e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = - 5.630279498515531e-08 + 5.630279530574526e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 @@ -1420,33 +1420,33 @@ Using GMRES iterative linear solver [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952844747e+00 1.731531270273553e+00 1.146727157674832e-11 1.709743457922741e-14 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 30 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 30 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out index 6edc515afd..ef295d8203 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_2_1_1.out @@ -31,111 +31,111 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.98402727810485e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.766592820632933e-25 - 6.198917231370851e-25 + 7.013274256506347e-25 + 4.959133785096680e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.637199431170860e-07 +-6.909759539707148e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.48003409763106e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.97604091715727e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.766592820632933e-25 --6.460654625319765e-15 + 1.051991138475952e-24 +-7.752785544702116e-15 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568871e+00 + 1.732050807568869e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.637199367072135e-07 +-1.036463924828005e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.753318564126587e-24 --1.292130915474740e-14 +-1.057198020409911e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568864e+00 + 1.732050807568867e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.727439879927881e-06 +-1.727439882107236e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.12200511464466e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.314988923094940e-24 --7.268236417283047e-15 + 1.753318564126587e-24 +-1.292130920239452e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568870e+00 + 1.732050807568864e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.295579909818203e-06 +-1.727439879927881e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568864e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.28311891337164e-06, h_cfl = 1.49600681952621e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.23179415683677e-06, h_cfl = 7.48003409763106e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.23180504953311e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41930360141754e-19 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.49600681952621e-08, h = 1.23179415683677e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.49600681952621e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568864e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.727439880056078e-06 +-1.727439879927881e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.07677730929972e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.218307878598316e-23 --1.063925175269948e-12 + 5.774646302878653e-23 +-8.511401401527935e-13 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807567801e+00 + 1.732050807568013e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.284513056218472e-05 +-5.862158892509025e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 6.3085714661365e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.54036562297327e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.218307878598316e-23 --4.486510309025556e-11 + 8.661969454317980e-23 +-5.383812047425289e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807524000e+00 + 1.732050807515026e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.284508676291099e-05 +-8.706862139011699e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.443661575719663e-22 --8.973015222882166e-11 +-7.380245361382353e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807479134e+00 + 1.732050807495062e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.439627774004741e-04 +-1.439627933266656e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 9.38805685822843e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.082746181789747e-22 --5.087219268709568e-11 + 1.443661575719663e-22 +-8.973017919524425e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807517992e+00 + 1.732050807479134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.084039430373934e-04 +-1.439627774002177e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -145,7 +145,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.10800420549587e-05, h_cfl = 1.23179415683677e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.02368403727603e-05, h_cfl = 6.15897078418387e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.36126933818397e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.82209723942473e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.24675422503204e-06, h = 2.02368403727603e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.24675422503204e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -153,51 +153,51 @@ Using dense direct linear solver 1.732050807479134e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.439627774004741e-04 +-1.439627774002177e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.341490374136172e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 9.34149037413617e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.185877879756730e-21 --1.456675872936312e-09 + 9.487023038053844e-22 +-1.165340698346975e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050806022458e+00 + 1.732050806313793e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.312343195494865e-03 +-1.078666169554574e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.338885844868824e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.33888584486882e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.185877879756730e-21 --1.327883988075390e-08 + 1.423053455708076e-21 +-1.593459355469944e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050794200295e+00 + 1.732050791544540e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.312331382288372e-03 +-1.546006517910086e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.371755759513461e-21 --2.655744069953370e-08 +-2.225848276290064e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050780921694e+00 + 1.732050785220651e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.480711763240323e-03 +-2.480716056040931e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64243845046023e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.778816819635095e-21 --1.548485869344789e-08 + 2.371755759513461e-21 +-2.655756010524139e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050791994276e+00 + 1.732050780921574e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.896524532204000e-03 +-2.480711763120886e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -207,7 +207,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000746121187338192, h_cfl = 2.02368403727603e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000404736807455207, h_cfl = 1.01184201863802e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.58790243691016e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.39226126243043e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.14835945977924e-05, h = 0.000404736807455207 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.14835945977924e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -217,121 +217,121 @@ Using dense direct linear solver 0.000000000000000e+00 -2.480711763120886e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000183378317579875 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.371755759513461e-20 --5.020176796110623e-07 + 1.897404607610769e-20 +-4.016141436888499e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050278903894e+00 + 1.732050379307430e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.585048569790203e-02 +-2.117617348052771e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000223851998325396 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000264325679070916 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.371755759513461e-20 --5.231321526267676e-06 + 2.846106911416153e-20 +-6.277477332586480e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732045549600048e+00 + 1.732044503444241e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.584582697166258e-02 +-3.051939545480693e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 4.743511519026922e-20 --1.046075749455039e-05 +-8.741089235670104e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732040320164079e+00 + 1.732042039832338e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --4.921538638034859e-02 +-4.921705718395472e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000325036200189197 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.557633639270191e-20 --6.072788975992386e-06 + 4.743511519026922e-20 +-1.046168580249801e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732044708132598e+00 + 1.732040319235771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.753181014047722e-02 +-4.921538547841801e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732040319235772e+00 + 1.732040319235771e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00147458509968142, h_cfl = 4.04736807455207e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00141560169569416, h_cfl = 2.02368403727603e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.49758576343673 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05453613933236e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0027980429339929, h_cfl = 4.04736807455207e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00268612121663319, h_cfl = 2.02368403727603e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.63671098638704 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.83862734070125e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000426220402052999, h = 9.64611945545987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000426220402052999 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732040319235772e+00 + 1.732040319235771e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --4.921538547841826e-02 +-4.921538547841801e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0004300788498351831 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000430078849835183 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.652621395936123e-22 --2.373687436856639e-07 + 4.522097116748899e-22 +-1.898949949485302e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732040081867028e+00 + 1.732040129340777e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --4.977229530614880e-02 +-4.966091315058449e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000432008073726275 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 5.652621395936123e-22 --2.400547530477681e-07 + 6.783145675123348e-22 +-2.880657022826183e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040079181019e+00 + 1.732040031170069e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --4.977229269732533e-02 +-4.988367442625952e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.130524279187225e-21 --4.801094809305133e-07 +-4.791327510910811e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732039839126291e+00 + 1.732039840103020e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.032920229113799e-02 +-5.032920323948598e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000435866521508459 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.478932093904185e-22 --3.590748666944920e-07 + 1.130524279187225e-21 +-4.801094931369567e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039960160905e+00 + 1.732039839126278e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.005074817583913e-02 +-5.032920229112591e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732039839126278e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000822166909540028, h_cfl = 9.64611945545987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00065198560516465, h_cfl = 9.64611945545987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000192922389109197, h_cfl = 4.82305972772994e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.39938168999299e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.23941193622913e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744871391589e+00 @@ -385,59 +385,59 @@ Using dense direct linear solver 0.000000000000000e+00 -5.032920230159056e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000513035477152138 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.391046391934870e-08 --4.854814974991486e-06 +-1.112837113547896e-08 +-3.883851979993189e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744857464238e+00 - 1.732034984313385e+00 + 1.224744860246331e+00 + 1.732035955276380e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.146784006201701e-02 +-5.924003861468956e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000532327716063058 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000551619954973977 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.391046391934870e-08 --5.929261279073182e-06 +-1.669255670321845e-08 +-7.115102842852823e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744857464238e+00 - 1.732033909867081e+00 + 1.224744854682145e+00 + 1.732032724025517e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.146680374621597e-02 +-6.369443588318909e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -2.782092783869741e-08 --1.185832262962616e-05 +-1.146762118374020e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744843553774e+00 - 1.732027980805730e+00 + 1.732028371507176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --7.260532630581451e-02 +-7.260570062930417e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000580558313340357 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.086569587902306e-08 --8.490900275909651e-06 +-2.782092783869741e-08 +-1.185841888975072e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744850509006e+00 - 1.732031348228084e+00 + 1.224744843553774e+00 + 1.732027980709470e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.703633980084939e-02 +-7.260532621358949e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744843553774e+00 1.732027980709470e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000836454586067597, h_cfl = 1.92922389109198e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000802996402624893, h_cfl = 9.64611945545988e+25 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.16227689452043 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.44270521840867e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00177181049408638, h_cfl = 1.92922389109198e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00170093807432293, h_cfl = 9.64611945545988e+25 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.81669609306034 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98527849600167e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000628788910617657, h = 8.9144350136573e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000628788910617657 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -447,59 +447,59 @@ Using dense direct linear solver 0.000000000000000e+00 -7.260532621358949e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0006644466506722857 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000664446650672286 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.427658665820801e-09 --3.236177310882160e-06 +-5.142126932656641e-09 +-2.588941848705728e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744837126115e+00 - 1.732024744532159e+00 + 1.224744838411647e+00 + 1.732025391767622e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.775196921120082e-02 +-7.672262555008837e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996003 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0006822755206996 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.427658665820801e-09 --3.465574383585663e-06 +-7.713190398984962e-09 +-4.158688253311044e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744837126115e+00 - 1.732024515135087e+00 + 1.224744835840584e+00 + 1.732023822021217e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.775175011193207e-02 +-7.878105758308548e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.285531733164160e-08 --6.931129235709398e-06 +-6.847712639423905e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744830698457e+00 - 1.732021049580235e+00 + 1.732021132996831e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --8.289836202555524e-02 +-8.289844144964641e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000695647173220086 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000717933260754229 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.641487998731201e-09 --5.112330435409018e-06 +-1.285531733164160e-08 +-6.931138539613393e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744833912286e+00 - 1.732022868379035e+00 + 1.224744830698457e+00 + 1.732021049570931e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --8.032511485688755e-02 +-8.289836201669658e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744830698457e+00 1.732021049570931e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00196602451800324, h_cfl = 8.9144350136573e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00295710653605349, h_cfl = 8.9144350136573e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00178288700273146, h_cfl = 4.45721750682865e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48098525457996e-08 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.05766015214637e-10 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744830698457e+00 @@ -553,59 +553,59 @@ Using dense direct linear solver 0.000000000000000e+00 -8.289835933384743e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000830759956452538 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.499317440782668e-08 --1.169143495306125e-05 +-5.199453952626135e-08 +-9.353147962449002e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744771081729e+00 - 1.732009358141622e+00 + 1.224744784080364e+00 + 1.732011696428613e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --9.918357873383941e-02 +-9.592639268435078e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000858966630377115 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000887173304301692 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.499317440782668e-08 --1.398819432009010e-05 +-7.799180928939202e-08 +-1.678580310814472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744771081729e+00 - 1.732007061382255e+00 + 1.224744758083094e+00 + 1.732004263773467e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --9.918141349711568e-02 +-1.024382407214272e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.299863488156534e-07 --2.797577789891784e-05 +-1.299863488156533e-07 +-2.714060631158444e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744706088555e+00 - 1.731993073798676e+00 + 1.731993908970264e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662366929535e-01 +-1.154670161862606e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000929483315188557 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.748976161174002e-08 --2.012078118190138e-05 +-1.299863488156534e-07 +-2.797606464355104e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744738585142e+00 - 1.732000928795393e+00 + 1.224744706088555e+00 + 1.731993073511932e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.073244199800821e-01 +-1.154662364253252e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744706088555e+00 1.731993073511932e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00152293903337533, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00146202147204032, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18324661727106 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48742291302014e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00255725829633592, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00245496796448249, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.70350035260068 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.09697188089907e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744706088555e+00 @@ -682,59 +682,59 @@ Using dense direct linear solver 0.000000000000000e+00 -1.154662048150523e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00117434660860338 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.448543483238896e-08 --2.516392652226004e-05 +-3.558834786591116e-08 +-2.013114121780803e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744724844095e+00 - 1.731967909596354e+00 + 1.224744733741182e+00 + 1.731972942381659e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.406303821177523e-01 +-1.355972483067854e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00121793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00126151991290508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.448543483238896e-08 --3.064803773603502e-05 +-5.338252179886674e-08 +-3.677754775251997e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744724844095e+00 - 1.731962425485140e+00 + 1.224744715947008e+00 + 1.731956295975124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.406253432919672e-01 +-1.456576300732443e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00143586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897086966477791e-08 --6.129387921660260e-05 +-8.897086966477792e-08 +-5.929968353885353e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744680358660e+00 - 1.731931779643660e+00 + 1.731933773839338e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.657881811659050e-01 +-1.657899844674002e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00132689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00143586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.672815224858344e-08 --4.391470954721648e-05 +-8.897086966477790e-08 +-6.129488004232837e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744702601377e+00 - 1.731949158813329e+00 + 1.224744680358660e+00 + 1.731931778642834e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.532082043120748e-01 +-1.657881802608829e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744680358660e+00 1.731931778642834e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00257210983795274, h_cfl = 4.35866521508459e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00246922544443463, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.66509544226765 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41857377998397e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00431702708911972, h_cfl = 4.35866521508459e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00414434600555493, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.50829164674558 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.20264560390151e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744680358660e+00 @@ -746,7 +746,7 @@ Using dense direct linear solver 1.731993073522877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -8.897087361972230e-08 --6.129488004247285e-05 +-6.129488004225081e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -760,8 +760,8 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01088917366864545 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --8.898775461793909e-08 --6.129486841766348e-05 +-8.898775461788320e-08 +-6.129486841744143e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744680341775e+00 @@ -771,12 +771,12 @@ Using dense direct linear solver -2.930949713774467e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --3.872982689476065e-08 +-3.872982676655432e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.483319331936923e-04 +-3.483319331935829e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.00143586652150846, h = 0.00028206673924577 @@ -786,61 +786,61 @@ Using dense direct linear solver 1.731931778654459e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.657881802798372e-01 +-1.657881802798375e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00154869321720677 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.912642628556010e-08 --2.338166570851179e-05 +-3.930114102843574e-08 +-1.870533256680946e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744631215349e+00 - 1.731908396988750e+00 + 1.224744641040634e+00 + 1.731913073321892e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.820706431206472e-01 +-1.788140435900593e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00157689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00160510656505592 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.912642628556010e-08 --2.567803630871064e-05 +-5.895171154265360e-08 +-3.081362094254572e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744631215349e+00 - 1.731906100618150e+00 + 1.224744621390063e+00 + 1.731900965033516e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.820685881598156e-01 +-1.853248333072469e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.825285257112020e-08 --5.135549298132021e-05 +-9.825285257108933e-08 +-5.052044866161600e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744582088922e+00 - 1.731880423161478e+00 + 1.731881258205797e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.983503249041216e-01 +-1.983510643115929e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00164741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00171793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.368963942834015e-08 --3.765570452469327e-05 +-9.825285257108935e-08 +-5.135574866475764e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744606652135e+00 - 1.731894122949934e+00 + 1.224744582088922e+00 + 1.731880422905794e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.902100650851973e-01 +-1.983503246777216e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744582088922e+00 1.731880422905794e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225773856409145, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216742902152779, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68409996628235 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48792604618559e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378836643389049, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00363683177653487, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8935151526889 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.14382583496486e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744582088922e+00 @@ -851,8 +851,8 @@ Using dense direct linear solver 1.224744769329530e+00 1.731993073522877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --1.818490994407615e-07 --1.126506170825436e-04 +-1.818490994408121e-07 +-1.126506170823216e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -866,8 +866,8 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02001100770865586 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.818641587644201e-07 --1.126505957195807e-04 +-1.818641587644148e-07 +-1.126505957193586e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744587465371e+00 @@ -877,12 +877,12 @@ Using dense direct linear solver -3.506715672221148e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = --3.455046525783126e-08 +-3.455046512962114e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --6.649593384426070e-04 +-6.649593384425300e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.00171793326075423, h = 0.00028206673924577 @@ -892,61 +892,61 @@ Using dense direct linear solver 1.731880422927157e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.983503220084134e-01 +-1.983503220084136e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00183075995645254 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.378145616276536e-08 --2.797401427863086e-05 +-7.502516493020360e-08 +-2.237921142290471e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744493683915e+00 - 1.731852448912878e+00 + 1.224744512440206e+00 + 1.731858043715734e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.146312678165750e-01 +-2.113749855300442e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00185896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00188717330430169 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.378145616276536e-08 --3.027017092660348e-05 +-1.125377473953054e-07 +-3.632418541134682e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744493683915e+00 - 1.731850152756230e+00 + 1.224744474927624e+00 + 1.731844098741746e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.146292562251632e-01 +-2.178851858799506e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.875629123255307e-07 --6.053977445017674e-05 +-1.875629123255090e-07 +-5.970480238940683e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744399902459e+00 - 1.731819883152707e+00 + 1.731820718124768e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093463058774e-01 +-2.309100699481841e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00192948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.406721842441480e-07 --4.454399241366199e-05 +-1.875629123255090e-07 +-6.054001792298039e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744446793187e+00 - 1.731835878934743e+00 + 1.224744399902459e+00 + 1.731819882909234e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.227699151806097e-01 +-2.309093460948678e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744399902459e+00 1.731819882909234e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188599063886928, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181055101331451, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41887454776063 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48821336926928e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316368171602277, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00303713444738186, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.767432046412 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.16107130244008e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224744399902459e+00 @@ -957,7 +957,7 @@ Using dense direct linear solver 1.224744769329530e+00 1.731993073522877e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.343735930500131e-07 +-3.343735930500546e-07 -1.731906136424044e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -972,7 +972,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03076033257676166 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.343490240444318e-07 +-3.343490240444733e-07 -1.731905808037422e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = @@ -1023,59 +1023,59 @@ Using dense direct linear solver 0.000000000000000e+00 -2.309093145028554e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00217434660860338 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897084229400330e-08 --5.032281984813111e-05 +-7.117667383520264e-08 +-4.025825587850489e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744374172560e+00 - 1.731769560122225e+00 + 1.224744391966728e+00 + 1.731779624686194e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.560652096598222e-01 +-2.510338494156996e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00221793326075423 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00226151991290508 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --8.897084229400330e-08 --5.580512610688040e-05 +-1.067650107528040e-07 +-6.696609208983505e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744374172560e+00 - 1.731764077815966e+00 + 1.224744356378391e+00 + 1.731752916849983e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.560605379795056e-01 +-2.610910660056384e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.779416845880066e-07 --1.116082159847116e-04 +-1.096146041549094e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744285201718e+00 - 1.731708274726088e+00 + 1.731710268337918e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.812139962231575e-01 +-2.812156660894010e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00232689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00243586652150846 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.334562634410050e-07 --8.165109392017522e-05 +-1.779416845880066e-07 +-1.116090570710343e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744329687139e+00 - 1.731738231848153e+00 + 1.224744285201718e+00 + 1.731708273885002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.686387545879922e-01 +-2.812139955186561e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744285201718e+00 1.731708273885002e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00220576581780339, h_cfl = 4.35866521508458e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00211753518509126, h_cfl = 2.17933260754229e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.85821938735472 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.41912564738839e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00369859575899812, h_cfl = 4.35866521508458e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0035506519286382, h_cfl = 2.17933260754229e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.14619098606152 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.23731336310518e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_1(:) = 1.224744285201718e+00 @@ -1087,7 +1087,7 @@ Using dense direct linear solver 1.731819882942073e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = -1.779417028725710e-07 --1.116090570707495e-04 +-1.116090570709716e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1096,8 +1096,8 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 45.54793022210224 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.779486220102912e-07 --1.115604706853033e-04 +-1.779486220103395e-07 +-1.115604706855252e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_2(:) = 1.224744285194780e+00 @@ -1107,12 +1107,12 @@ Using dense direct linear solver -4.972189178810537e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_2(:) = --1.442950757807995e-08 +-1.442950764219138e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 3, stage type = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.524350941380416e-04 +-5.524350941380963e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 13, tn = 0.00243586652150846, h = 0.00028206673924577 @@ -1122,61 +1122,61 @@ Using dense direct linear solver 1.731708322471387e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.812140362185136e-01 +-2.812140362185135e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00254869321720677 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.791178282422379e-08 --3.966056311314904e-05 +-6.232942625938519e-08 +-3.172845049051922e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207282997e+00 - 1.731668661908274e+00 + 1.224744222865354e+00 + 1.731676594020897e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.974898859018510e-01 +-2.942346580734386e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00257689989113134 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00260510656505592 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.791178282422379e-08 --4.195600103746569e-05 +-9.349413938907779e-08 +-5.034718899795703e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207282997e+00 - 1.731666366470350e+00 + 1.224744191700641e+00 + 1.731657975282389e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.974879848048694e-01 +-3.007428644745627e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.558235656484476e-07 --8.391146583870477e-05 +-1.558235656484630e-07 +-8.307674102301201e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744129371214e+00 - 1.731624411005549e+00 + 1.731625245730364e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.137626487611868e-01 +-3.137633322374437e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00264741657594279 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.168676742363357e-07 --6.207302169768714e-05 +-1.558235656484630e-07 +-8.391167821445070e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744168327106e+00 - 1.731646249449690e+00 + 1.224744129371214e+00 + 1.731624410793173e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.056259443256494e-01 +-3.137626485872923e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744129371214e+00 1.731624410793173e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00225755382503546, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00216725167203404, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.68347121617083 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48919346019151e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00378460766287073, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0036332233563559, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.8807223640438 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.20187680275988e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_3(:) = 1.224744129371214e+00 @@ -1187,8 +1187,8 @@ Using dense direct linear solver 1.224744463143402e+00 1.731819882942073e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --3.283902710369162e-07 --1.954721488997002e-04 +-3.283902710368910e-07 +-1.954721489001443e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1197,87 +1197,87 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 79.77268774518876 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.283783577064271e-07 --1.953870583261073e-04 +-3.283783577064985e-07 +-1.953870583265512e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_4(:) = 1.224744134765045e+00 - 1.731624495883747e+00 + 1.731624495883746e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.00271793326075423 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_4(:) = -5.547954542715600e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_4(:) = - 3.223230330571944e-08 + 3.223230311337584e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 5, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.692011113458855e-04 +-8.692011113455234e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.00271793326075423, h = 0.00028206673924577 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00271793326075423 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744134765045e+00 - 1.731624495883747e+00 + 1.731624495883746e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --3.137627155629160e-01 +-3.137627155629157e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00283075995645254 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.225863616130668e-07 --4.425101303786491e-05 +-9.806908929041261e-08 +-3.540081043029190e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744012178683e+00 - 1.731580244870709e+00 + 1.224744036695955e+00 + 1.731589095073316e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.300361282479944e-01 +-3.267814016670072e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00285896663037711 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00288717330430169 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.225863616130668e-07 --4.654610726410533e-05 +-1.471036339356189e-07 +-5.585531939942182e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744012178683e+00 - 1.731577949776483e+00 + 1.224743987661411e+00 + 1.731568640564347e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.300342705937055e-01 +-3.332886507770522e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.451727232261337e-07 --9.309169054572273e-05 +-2.451727232260315e-07 +-9.225708516626034e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743889592321e+00 - 1.731531404193201e+00 + 1.731532238798580e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463063678661590e-01 +-3.463070355503148e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00292948331518856 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.838795424196003e-07 --6.895831566270204e-05 +-2.451727232260315e-07 +-9.309189069793122e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224743950885502e+00 - 1.731555537568084e+00 + 1.224743889592321e+00 + 1.731531403993049e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.381709521231582e-01 +-3.463063677060369e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743889592321e+00 1.731531403993049e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00188582027133169, h_cfl = 2.8206673924577e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00181038746047842, h_cfl = 1.41033369622885e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.41829471039121 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.48966840657168e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00316067866802302, h_cfl = 2.8206673924577e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0030342515213021, h_cfl = 1.41033369622885e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.7572113231624 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.21674154840902e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_5(:) = 1.224743889592321e+00 @@ -1288,8 +1288,8 @@ Using dense direct linear solver 1.224744463143402e+00 1.731819882942073e+00 [DEBUG][rank 0][mriStep_StageDIRKNoFast][rhs data] sdata(:) = --5.385139291256755e-07 --2.884789490238404e-04 +-5.385139291256295e-07 +-2.884789490242845e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1298,59 +1298,59 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7290852921696 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.384377455890981e-07 --2.883533835769729e-04 +-5.384377455891489e-07 +-2.883533835774168e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_6(:) = 1.224743924705657e+00 - 1.731531529558496e+00 + 1.731531529558495e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow explicit RHS] Fse_6(:) = -6.123719904801764e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow implicit RHS] Fsi_6(:) = - 1.858977004646175e-07 + 1.858977002081456e-07 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRIGARK][begin-stage] stage = 7, stage type = 1, tcur = 0.003 [DEBUG][rank 0][mriStep_TakeStepMRIGARK][slow stage] z_7(:) = 1.224743952868526e+00 - 1.731531529558496e+00 + 1.731531529558495e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.003 [INFO][rank 0][mriStep_TakeStepMRIGARK][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRIGARK][updated solution] ycur(:) = 1.224743952868526e+00 - 1.731531529558496e+00 + 1.731531529558495e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952868526e+00 1.731531529558495e+00 3.524580627356499e-11 2.592849250859786e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 12 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 12 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out index e7b8012dd2..4d6ebb037b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_3.out @@ -26,49 +26,49 @@ Using Ex-MRI-SR method 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 - 8.533232435357683e-25 + 9.654250432771864e-25 + 6.826585948286147e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.188969423061617e-06 +-9.511755374456009e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 --1.224255324051406e-14 + 1.448137564915780e-24 +-1.469106387337067e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.188969410882862e-06 +-1.426763294532537e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.413562608192966e-24 --2.448510623022426e-14 +-2.003326869930686e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568853e+00 + 1.732050807568857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.377938834068763e-06 +-2.377938838427473e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.810171956144724e-24 --1.377287230118023e-14 + 2.413562608192966e-24 +-2.448510635540961e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568863e+00 + 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.783454125504481e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -78,7 +78,7 @@ Using Ex-MRI-SR method [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -86,51 +86,51 @@ Using Ex-MRI-SR method 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.377938833812368e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --2.016074428475105e-12 + 7.949194560151480e-23 +-1.612859542953986e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807566836e+00 + 1.732050807567240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.002763027735722e-04 +-8.069662335302558e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --8.501669047547002e-11 + 1.192379184022722e-22 +-1.020200201355860e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807483836e+00 + 1.732050807466833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.002762197779237e-04 +-1.198558859168393e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.987298640037870e-22 --1.700332402194777e-10 +-1.398512043990971e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807398819e+00 + 1.732050807429002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981746138087546e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.490473980028403e-22 --9.639975192593520e-11 + 1.987298640037870e-22 +-1.700333105608062e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807472453e+00 + 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.492254224646821e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -140,7 +140,7 @@ Using Ex-MRI-SR method [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -148,61 +148,61 @@ Using Ex-MRI-SR method 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.760313456268973e-09 + 1.305953438023304e-21 +-2.208250765018035e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050804638506e+00 + 1.732050805190569e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.806532979849059e-03 +-1.484859516826536e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.516264801536699e-08 + 1.958930157034957e-21 +-3.019514034987365e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050782236171e+00 + 1.732050777203679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.806510600880137e-03 +-2.128180483031468e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.264883595058261e-21 --5.032467261104088e-08 +-4.217839723859307e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050757074147e+00 + 1.732050765220422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.414868907668693e-03 +-3.414877037883311e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.448662696293695e-21 --2.934286285885705e-08 + 3.264883595058261e-21 +-5.032498390567580e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050778055956e+00 + 1.732050757073835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.610695364096074e-03 +-3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732050757073835e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -212,132 +212,132 @@ Using Ex-MRI-SR method 0.000000000000000e+00 -3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.512933922928683e-07 + 2.611906876046609e-20 +-7.610347138342947e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732049805780443e+00 + 1.732049996039122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.558608464041920e-02 +-2.915117884460126e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.913354829832584e-06 + 3.917860314069912e-20 +-1.189574890062628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040843719006e+00 + 1.732038861324935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.557730668812781e-02 +-4.201081246065858e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.529767190116521e-20 --1.982181904263757e-05 +-1.656308459528083e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030935254793e+00 + 1.732034193989240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.774796574093327e-02 +-6.775109700792233e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.897325392587391e-20 --1.150743491657343e-05 + 6.529767190116521e-20 +-1.982421265922294e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039249638919e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.166493150904073e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --6.774796344094283e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.497970704107743e-07 + 6.224975161338911e-22 +-3.598376563286176e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732030483064106e+00 + 1.732030573023520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.851457574280405e-02 +-6.836125293997067e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.548868170246134e-07 + 9.337462742008366e-22 +-5.458641770189984e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732030477974360e+00 + 1.732030386996999e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.851457085439451e-02 +-6.866789285110339e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.556243790334728e-21 --9.097735691382781e-07 +-9.079227540419626e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030023087608e+00 + 1.732030024938422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.928118254776658e-02 +-6.928118432454869e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.167182842751046e-21 --6.804215464676200e-07 + 1.556243790334728e-21 +-9.097736002471066e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732030252439630e+00 + 1.732030023087576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.889787799966653e-02 +-6.928118254773628e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = --1.225479626394631e-04 +-1.225479626397836e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.355542907232392e-05 +-8.355542907254244e-05 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -350,59 +350,59 @@ Using Ex-MRI-SR method 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109494228454803e-08 - 1.100430537325142e-20 +-8.875953827661637e-09 + 8.803444298601133e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860296647e+00 + 1.224744862515635e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.533374356927778e-02 +-1.226683731313887e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109494228454803e-08 --2.036097495950119e-06 +-1.331393074149246e-08 +-2.443285616164047e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860296647e+00 - 1.732048771471381e+00 + 1.224744858077658e+00 + 1.732048364283261e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.533172549605185e-02 +-1.839830953550958e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.218988456909606e-08 --4.071659050520575e-06 +-2.218988456915409e-08 +-3.331283189183852e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849201704e+00 - 1.732046735909827e+00 + 1.732047476285688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.066541358953690e-02 +-3.066614085709693e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.664241342682205e-08 --2.290409165325015e-06 +-2.218988456915409e-08 +-4.071924565758787e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854749175e+00 - 1.732048517159712e+00 + 1.224744849201704e+00 + 1.732046735644311e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.299908437583791e-02 +-3.066541332872254e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849201704e+00 1.732046735644311e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767415395623, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296718779798, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516412320786 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446943643145e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644955091275, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339156887624, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023500218333 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.1073606623499e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -412,59 +412,59 @@ Using Ex-MRI-SR method 0.000000000000000e+00 -3.066541332872254e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578159176182542e-11 --1.680215696107571e-08 +-3.662527340955613e-11 +-1.344172556886057e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744849155923e+00 - 1.732046718842154e+00 + 1.224744849165079e+00 + 1.732046722202586e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.072868112180342e-02 +-3.071602756061335e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578159176182542e-11 --1.683682257534709e-08 +-5.493791011433417e-11 +-2.020418708830107e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744849155923e+00 - 1.732046718807489e+00 + 1.224744849146767e+00 + 1.732046715440124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.072868108775285e-02 +-3.074133464342016e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.156318352365084e-11 --3.367364511338028e-08 +-9.156318352389030e-11 +-3.366103943687944e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849110141e+00 - 1.732046701970666e+00 + 1.732046701983272e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.079194887895798e-02 +-3.079194889133957e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.867238764273812e-11 --2.524223424374039e-08 +-9.156318352389030e-11 +-3.367364513169470e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744849133032e+00 - 1.732046710402077e+00 + 1.224744849110141e+00 + 1.732046701970666e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.076031499210276e-02 +-3.079194887895798e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849110141e+00 1.732046701970666e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063442151346e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201473098944e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.61893478145414e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.26243167642398e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744849110141e+00 @@ -475,7 +475,7 @@ Using Ex-MRI-SR method [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.020773205476579e-04 +-1.020773205478206e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -488,59 +488,59 @@ Using Ex-MRI-SR method 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601692155464e-09 - 9.081518466703426e-22 +-8.948813537257971e-10 + 7.265214773362741e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744870272987e+00 + 1.224744870496708e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.265371779696399e-03 +-1.012296318348030e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601692155464e-09 --1.386642014484811e-08 +-1.342322030588696e-09 +-1.663968600358485e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870272987e+00 - 1.732050793702457e+00 + 1.224744870049267e+00 + 1.732050790929191e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.265357923406484e-03 +-1.518431167678268e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203384310929e-09 --2.773253660481770e-08 +-2.237203384314493e-09 +-2.269021572438389e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744869154386e+00 - 1.732050779836340e+00 + 1.732050784878661e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.530729660677445e-03 +-2.530734695631056e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.677902538233197e-09 --1.559960881018152e-08 +-2.237203384314493e-09 +-2.773268829228555e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744869713686e+00 - 1.732050791969268e+00 + 1.224744869154386e+00 + 1.732050779836189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.898047263317193e-03 +-2.530729660526010e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744869154386e+00 1.732050779836189e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540436436273072, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700684587, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06415360964231e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -550,59 +550,59 @@ Using Ex-MRI-SR method 0.000000000000000e+00 -2.530729660526010e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203384310928e-08 --5.546537596136714e-07 +-1.789762707451594e-08 +-4.437230076909371e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744846782352e+00 - 1.732050225182429e+00 + 1.224744851256758e+00 + 1.732050336113181e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.784069877152957e-02 +-2.277828755390852e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203384310928e-08 --6.101777082223396e-06 +-2.684644061177391e-08 +-7.321995279385382e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744846782352e+00 - 1.732044678059107e+00 + 1.224744842307945e+00 + 1.732043457840909e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.783524080315438e-02 +-3.289678093258702e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.474406768621857e-08 --1.220116174559118e-05 +-4.474406768628985e-08 +-1.018412506653626e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744824410318e+00 - 1.732038578674443e+00 + 1.732040595711122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.314493930090114e-02 +-5.314689444682486e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.355805076466392e-08 --7.071600927137972e-06 +-4.474406768628985e-08 +-1.220233818522307e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744835596335e+00 - 1.732043708235262e+00 + 1.224744824410318e+00 + 1.732038577498004e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.049150357297036e-02 +-5.314493816055867e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744824410318e+00 1.732038577498004e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411000436167, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274560418721, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35986272365834 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967392272e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894930954125, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0027349913371596, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948798012 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217695212445e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -612,59 +612,59 @@ Using Ex-MRI-SR method 0.000000000000000e+00 -5.314493816055867e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754802473856420e-08 --1.434244221264609e-05 +-2.203841979088648e-08 +-1.147395377011687e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744796862293e+00 - 1.732024235055791e+00 + 1.224744802371898e+00 + 1.732027103544233e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.431018939132966e-02 +-7.807659312518075e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754802473856420e-08 --2.275313625597191e-05 +-3.305762968632972e-08 +-2.730354247218652e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744796862293e+00 - 1.732015824361748e+00 + 1.224744791352688e+00 + 1.732011273955531e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.430218808832253e-02 +-9.053447910443460e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.509604947712841e-08 --4.550195382309113e-05 +-5.509604947721619e-08 +-4.244364016490958e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769314268e+00 - 1.731993075544181e+00 + 1.731996133857839e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662067092333e-01 +-1.154690611329711e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.132203710784631e-08 --3.097409539998300e-05 +-5.509604947721619e-08 +-4.550400228451004e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744783088281e+00 - 1.732007603402604e+00 + 1.224744769314268e+00 + 1.731993073495719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.988638018736970e-02 +-1.154662047973360e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769314268e+00 1.731993073495719e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368286334853836, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554881459682, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55036709681534 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441339031e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161207725, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754759416, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379604302 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744769314268e+00 @@ -696,72 +696,72 @@ Using Ex-MRI-SR method 1.731993073495719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662047973361e-01 +-1.154662047973360e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123723059020633e-08 --3.463986143920079e-05 +-4.898978447216507e-08 +-2.771188915136062e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744708077038e+00 - 1.731958433634280e+00 + 1.224744720324484e+00 + 1.731965361606568e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.501073542326564e-01 +-1.431785753744035e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123723059020633e-08 --4.503220626979688e-05 +-7.348467670824759e-08 +-5.403840048672129e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744708077038e+00 - 1.731948041289449e+00 + 1.224744695829592e+00 + 1.731939035095232e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.500978625577056e-01 +-1.570250477155951e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.224744611804127e-07 --9.005871753462327e-05 +-8.627974321577905e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744646839807e+00 - 1.731903014778185e+00 + 1.731906793752503e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.847363041597276e-01 +-1.847396800402071e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.185584588530950e-08 --6.364909523823220e-05 +-1.224744611804127e-07 +-9.006129425385773e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744677458423e+00 - 1.731929424400481e+00 + 1.224744646839807e+00 + 1.731903012201465e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.674198337553893e-01 +-1.847363018578584e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744646839807e+00 1.731903012201465e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179454037894, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275876378, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126460631 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465401153773e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859543384, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305161649, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175269415 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578037e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744646839807e+00 1.731903012201465e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = --3.266720094997935e-04 +-3.266720094996653e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.876794934667447e-04 +-2.876794934666573e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -774,70 +774,70 @@ Using Ex-MRI-SR method 0.000000000000000e+00 -1.154662047973361e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726579556594e-08 --1.539549397297814e-05 +-3.068581263644344e-08 +-1.231639517838251e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744730957003e+00 - 1.731977678001746e+00 + 1.224744738628456e+00 + 1.731980757100541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.308614113474487e-01 +-1.277822550258400e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726579556594e-08 --1.744818817965982e-05 +-4.602871895466514e-08 +-2.093780281327454e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744730957003e+00 - 1.731975625307540e+00 + 1.224744723285549e+00 + 1.731972135692906e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.308595137456930e-01 +-1.339383507006551e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.671453159113188e-08 --3.489587033218480e-05 +-7.671453159110859e-08 +-3.414944299265448e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744692599737e+00 - 1.731958177625387e+00 + 1.731958924052726e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.462542534803822e-01 +-1.462549368759460e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.753589869334892e-08 --2.540233607193707e-05 +-7.671453159110859e-08 +-3.489610259840177e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744711778370e+00 - 1.731967671159647e+00 + 1.224744692599737e+00 + 1.731958177393121e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.385574197880080e-01 +-1.462542532677296e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744692599737e+00 1.731958177393121e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586865967736, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391329027, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912717483852 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718289296315e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413330155537, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396796949315, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148798855993 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555340877e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744692599737e+00 1.731958177393121e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = --2.585271461852372e-04 +-2.585271461853013e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.062013837713727e-04 +-3.062013837713547e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -852,154 +852,154 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531006918856862e-07 --5.773310239866800e-05 +-1.224805535085418e-07 +-4.618648191893441e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744616213576e+00 - 1.731935340393320e+00 + 1.224744646833715e+00 + 1.731946887013800e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050913918095e-01 +-1.616559000801931e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531006918856862e-07 --8.660254569590469e-05 +-1.837208302628127e-07 +-1.039219943405444e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616213576e+00 - 1.731906470950023e+00 + 1.224744585593438e+00 + 1.731889151501379e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791088927889e-01 +-1.847239502119907e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.062013837713725e-07 --1.731791088927888e-04 +-3.062013837713544e-07 +-1.626813045096843e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463112885e+00 - 1.731819894386826e+00 + 1.731830392191209e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093244369005e-01 +-2.309184225106685e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.296510378285294e-07 --1.190683048405844e-04 +-3.062013837713544e-07 +-1.731906549679533e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744539663231e+00 - 1.731874005190879e+00 + 1.224744463112885e+00 + 1.731819882840751e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519767921623e-01 +-2.309093144303020e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463112885e+00 - 1.731819882840752e+00 + 1.731819882840751e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152476531, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0022751918637747, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.2751918637747 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462524817 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694862509, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639067068008, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639067068009 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738631459e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744463112885e+00 - 1.731819882840752e+00 + 1.731819882840751e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224744463112885e+00 - 1.731819882840752e+00 + 1.731819882840751e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463112885e+00 1.731819882840751e+00 3.048206131950337e-11 1.686806250233985e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.224744463112885e+00 - 1.731819882840752e+00 + 1.731819882840751e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_0(:) = --4.082481018607591e-04 +-4.082481018610797e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082481018607592e-04 +-4.082481018610798e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.000599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463112885e+00 - 1.731819882840752e+00 + 1.731819882840751e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144303026e-01 +-2.309093144303020e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744305582276e-07 --6.927279432909071e-05 +-9.797954444665904e-08 +-5.541823546327241e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744340638454e+00 - 1.731750610046423e+00 + 1.224744365133340e+00 + 1.731764464605288e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.655386834140417e-01 +-2.586124826211882e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744305582276e-07 --7.966160502421243e-05 +-1.469693166699885e-07 +-9.559377888080742e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744340638454e+00 - 1.731740221235728e+00 + 1.224744316143568e+00 + 1.731724289061870e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.655298875542779e-01 +-2.724545226960652e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.449488611164553e-07 --1.593179325325665e-04 +-2.449488611166476e-07 +-1.555400542186433e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744218164023e+00 - 1.731660564908219e+00 + 1.731664342786533e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.001544687678452e-01 +-3.001575918112487e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.837116458373414e-07 --1.155947142278919e-04 +-2.449488611166476e-07 +-1.593200925132364e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744279401239e+00 - 1.731704288126524e+00 + 1.224744218164023e+00 + 1.731660562748238e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.828450146071505e-01 +-3.001544669822606e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744218164023e+00 1.731660562748238e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842408872, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008712517, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873347854196 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661417999388e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162228844, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0054811887573969, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459566152 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943502574e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744218164023e+00 1.731660562748238e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = --5.307958930136455e-04 +-5.307958930138378e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.918034140104542e-04 +-4.918034140106874e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1007,75 +1007,75 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463112885e+00 - 1.731819882840752e+00 + 1.731819882840751e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144303026e-01 +-2.309093144303021e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557378853472722e-08 --3.078790859070701e-05 +-5.245903082780664e-08 +-2.463032687256555e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744397539096e+00 - 1.731789094932161e+00 + 1.224744410653854e+00 + 1.731795252513879e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.462996277714019e-01 +-2.432214939360258e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557378853472722e-08 --3.283995036952024e-05 +-7.868854624170995e-08 +-3.940792620999306e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744397539096e+00 - 1.731787042890382e+00 + 1.224744384424338e+00 + 1.731780474914541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.462978675755596e-01 +-2.493756875920993e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.311475770694544e-07 --6.567943135348253e-05 +-1.311475770695166e-07 +-6.493322465951103e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744331965308e+00 - 1.731754203409398e+00 + 1.731754949616092e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.616873033578936e-01 +-2.616879368043546e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.836068280209081e-08 --4.849024118063088e-05 +-1.311475770695166e-07 +-6.567962704364573e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744364752202e+00 - 1.731771392599571e+00 + 1.224744331965308e+00 + 1.731754203213707e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.539931386341407e-01 +-2.616873031917737e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744331965308e+00 - 1.731754203213708e+00 + 1.731754203213707e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012112722, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688011628213, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330043605798 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796475517721e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410310847327, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898413434, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347711905038 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093874370946e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744331965308e+00 - 1.731754203213708e+00 + 1.731754203213707e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = --4.626511041745734e-04 +-4.626511041750221e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.103252938832800e-04 +-5.103252938836296e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1083,91 +1083,91 @@ Using Ex-MRI-SR method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463112885e+00 - 1.731819882840752e+00 + 1.731819882840751e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144303026e-01 +-2.309093144303021e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551626469416398e-07 --1.154546572151512e-04 +-2.041301175534517e-07 +-9.236372577212077e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207950238e+00 - 1.731704428183537e+00 + 1.224744258982767e+00 + 1.731727519114979e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886270253720061e-01 +-2.770826858287429e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551626469416398e-07 --1.443135126860029e-04 +-3.061951763301775e-07 +-1.731756172070117e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207950238e+00 - 1.731675569328066e+00 + 1.224744156917708e+00 + 1.731646707223544e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029763255851e-01 +-3.001430436686917e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103252938832796e-07 --2.886029763255848e-04 +-5.103252938836292e-07 +-2.781081462157330e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952787591e+00 - 1.731531279864426e+00 + 1.731541774694535e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062368055048e-01 +-3.463146326506258e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.827439704124597e-07 --2.056396314119579e-04 +-5.103252938836292e-07 +-2.886125924350841e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744080368914e+00 - 1.731614243209340e+00 + 1.224743952787591e+00 + 1.731531270248316e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174626058056885e-01 +-3.463062291126166e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952787591e+00 - 1.731531270248313e+00 + 1.731531270248316e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0023698549069082, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071063187, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506071063187 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876033 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023653927, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0038127554270777, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8127554270777 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747736684e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224743952787591e+00 - 1.731531270248313e+00 + 1.731531270248316e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224743952787591e+00 - 1.731531270248313e+00 + 1.731531270248316e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952787591e+00 1.731531270248316e+00 4.568923017700399e-11 2.525424314114844e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out index f73c84464c..abcb2f7267 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_0.out @@ -27,49 +27,49 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 - 8.533232435357683e-25 + 9.654250432771864e-25 + 6.826585948286147e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.188969423061617e-06 +-9.511755374456009e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 --1.224255324051406e-14 + 1.448137564915780e-24 +-1.469106387337067e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.188969410882862e-06 +-1.426763294532537e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.413562608192966e-24 --2.448510623022426e-14 +-2.003326869930686e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568853e+00 + 1.732050807568857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.377938834068763e-06 +-2.377938838427473e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.810171956144724e-24 --1.377287230118023e-14 + 2.413562608192966e-24 +-2.448510635540961e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568863e+00 + 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.783454125504481e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -79,7 +79,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -87,51 +87,51 @@ Using fixed-point nonlinear solver 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.377938833812368e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --2.016074428475105e-12 + 7.949194560151480e-23 +-1.612859542953986e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807566836e+00 + 1.732050807567240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.002763027735722e-04 +-8.069662335302558e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --8.501669047547002e-11 + 1.192379184022722e-22 +-1.020200201355860e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807483836e+00 + 1.732050807466833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.002762197779237e-04 +-1.198558859168393e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.987298640037870e-22 --1.700332402194777e-10 +-1.398512043990971e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807398819e+00 + 1.732050807429002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981746138087546e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.490473980028403e-22 --9.639975192593520e-11 + 1.987298640037870e-22 +-1.700333105608062e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807472453e+00 + 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.492254224646821e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -141,7 +141,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -149,61 +149,61 @@ Using fixed-point nonlinear solver 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.760313456268973e-09 + 1.305953438023304e-21 +-2.208250765018035e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050804638506e+00 + 1.732050805190569e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.806532979849059e-03 +-1.484859516826536e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.516264801536699e-08 + 1.958930157034957e-21 +-3.019514034987365e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050782236171e+00 + 1.732050777203679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.806510600880137e-03 +-2.128180483031468e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.264883595058261e-21 --5.032467261104088e-08 +-4.217839723859307e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050757074147e+00 + 1.732050765220422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.414868907668693e-03 +-3.414877037883311e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.448662696293695e-21 --2.934286285885705e-08 + 3.264883595058261e-21 +-5.032498390567580e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050778055956e+00 + 1.732050757073835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.610695364096074e-03 +-3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732050757073835e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -213,128 +213,128 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.512933922928683e-07 + 2.611906876046609e-20 +-7.610347138342947e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732049805780443e+00 + 1.732049996039122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.558608464041920e-02 +-2.915117884460126e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.913354829832584e-06 + 3.917860314069912e-20 +-1.189574890062628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040843719006e+00 + 1.732038861324935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.557730668812781e-02 +-4.201081246065858e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.529767190116521e-20 --1.982181904263757e-05 +-1.656308459528083e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030935254793e+00 + 1.732034193989240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.774796574093327e-02 +-6.775109700792233e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.897325392587391e-20 --1.150743491657343e-05 + 6.529767190116521e-20 +-1.982421265922294e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039249638919e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.166493150904073e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --6.774796344094283e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.497970704107743e-07 + 6.224975161338911e-22 +-3.598376563286176e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732030483064106e+00 + 1.732030573023520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.851457574280405e-02 +-6.836125293997067e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.548868170246134e-07 + 9.337462742008366e-22 +-5.458641770189984e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732030477974360e+00 + 1.732030386996999e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.851457085439451e-02 +-6.866789285110339e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.556243790334728e-21 --9.097735691382781e-07 +-9.079227540419626e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030023087608e+00 + 1.732030024938422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.928118254776658e-02 +-6.928118432454869e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.167182842751046e-21 --6.804215464676200e-07 + 1.556243790334728e-21 +-9.097736002471066e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732030252439630e+00 + 1.732030023087576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.889787799966653e-02 +-6.928118254773628e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.605212824962841e-20 --2.078448130049537e-05 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -344,19 +344,19 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002839677462944967 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.855859018017809e-08 --2.078448130049537e-05 +-5.855859018033137e-08 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744812832999e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --1.224308513155478e-04 +-1.224308513158683e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.347558044238170e-05 +-8.347558044260022e-05 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -369,59 +369,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.108433955112251e-08 - 1.100430537325142e-20 +-8.867471640921218e-09 + 8.803444298601133e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860307249e+00 + 1.224744862524117e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.533374356397633e-02 +-1.226683730889780e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.108433955112251e-08 --2.036097495246164e-06 +-1.330120746138183e-08 +-2.443285615319318e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860307249e+00 - 1.732048771471382e+00 + 1.224744858090381e+00 + 1.732048364283262e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.533172549075104e-02 +-1.839830952914879e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.216867910224501e-08 --4.071659049112834e-06 +-2.216867910230305e-08 +-3.331283188032147e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849222910e+00 - 1.732046735909828e+00 + 1.732047476285689e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.066541357893566e-02 +-3.066614084649518e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.662650932668376e-08 --2.290409164533121e-06 +-2.216867910230305e-08 +-4.071924564351019e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854765080e+00 - 1.732048517159713e+00 + 1.224744849222910e+00 + 1.732046735644313e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.299908436788646e-02 +-3.066541331812117e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849222910e+00 1.732046735644313e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767421526617, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296724665552, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516414537051 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446936450925e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954103465, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339155939327, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023499861254 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086117328e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -431,65 +431,65 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -3.066541331812117e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.573784119505385e-11 --1.680215695526703e-08 +-3.659027295613887e-11 +-1.344172556421362e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744849177172e+00 - 1.732046718842156e+00 + 1.224744849186320e+00 + 1.732046722202587e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.072868111118003e-02 +-3.071602754999436e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.573784119505385e-11 --1.683682256952634e-08 +-5.488540943420829e-11 +-2.020418708131617e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744849177172e+00 - 1.732046718807490e+00 + 1.224744849168024e+00 + 1.732046715440126e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.072868107712946e-02 +-3.074133463279259e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.147568239010770e-11 --3.367364510173877e-08 +-9.147568239034717e-11 +-3.366103942524255e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849131434e+00 - 1.732046701970668e+00 + 1.732046701983273e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.079194886831279e-02 +-3.079194888069438e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.860676179258077e-11 --2.524223423501378e-08 +-9.147568239034717e-11 +-3.367364512005331e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744849154303e+00 - 1.732046710402078e+00 + 1.224744849131434e+00 + 1.732046701970668e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.076031498146840e-02 +-3.079194886831279e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849131434e+00 1.732046701970668e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063440013171e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201474387834e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.64642683851015e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.72214948702082e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 2.064943780462907e-08 + 2.064943780474140e-08 -4.105598209624972e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -500,7 +500,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0005643456517840985 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.386511508145418e-09 +-5.386511508033094e-09 -4.105598209624972e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -512,7 +512,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.020426760833252e-04 +-1.020426760834878e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -525,59 +525,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118222045077950e-09 - 9.081518466703426e-22 +-8.945776360637855e-10 + 7.265214773362741e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744870273367e+00 + 1.224744870497011e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.265371779506533e-03 +-1.012296318196238e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118222045077950e-09 --1.386642014276750e-08 +-1.341866454095678e-09 +-1.663968600108975e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870273367e+00 - 1.732050793702457e+00 + 1.224744870049723e+00 + 1.732050790929191e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.265357923216619e-03 +-1.518431167450466e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444090155900e-09 --2.773253660065648e-08 +-2.236444090159464e-09 +-2.269021572097923e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744869155145e+00 - 1.732050779836340e+00 + 1.732050784878661e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.530729660297851e-03 +-2.530734695251462e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.677333067616925e-09 --1.559960880784073e-08 +-2.236444090159464e-09 +-2.773268828812582e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744869714256e+00 - 1.732050791969268e+00 + 1.224744869155145e+00 + 1.732050779836189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.898047263032509e-03 +-2.530729660146415e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744869155145e+00 1.732050779836189e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540433024096763, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00064049570008734, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06444968358671e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29098683194423e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -587,128 +587,128 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -2.530729660146415e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444090155900e-08 --5.546537595304767e-07 +-1.789155272127571e-08 +-4.437230076243813e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744846790704e+00 - 1.732050225182429e+00 + 1.224744851263592e+00 + 1.732050336113181e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.784069876735354e-02 +-2.277828755049172e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444090155900e-08 --6.101777081308145e-06 +-2.683732908191356e-08 +-7.321995278287064e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744846790704e+00 - 1.732044678059107e+00 + 1.224744842317816e+00 + 1.732043457840911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.783524079897923e-02 +-3.289678092765275e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.472888180311800e-08 --1.220116174376106e-05 +-4.472888180318927e-08 +-1.018412506500875e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744824426263e+00 - 1.732038578674445e+00 + 1.732040595711124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.314493929293027e-02 +-5.314689443885388e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.354666135233850e-08 --7.071600926077252e-06 +-4.472888180318927e-08 +-1.220233818339282e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744835608483e+00 - 1.732043708235263e+00 + 1.224744824426263e+00 + 1.732038577498005e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.049150356689700e-02 +-5.314493815258781e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744824426263e+00 - 1.732038577498006e+00 + 1.732038577498005e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411351284076, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274897232713, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.3598704075976 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967004998e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0028489493154905, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134287088, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.2394995010096 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217689507079e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744824426263e+00 - 1.732038577498006e+00 + 1.732038577498005e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.314493815258806e-02 +-5.314493815258781e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.753867509502564e-08 --1.434244221049502e-05 +-2.203094007605563e-08 +-1.147395376839597e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744796887588e+00 - 1.732024235055795e+00 + 1.224744802395323e+00 + 1.732027103544237e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.431018937868599e-02 +-7.807659311347180e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.753867509502564e-08 --2.275313625255971e-05 +-3.304641011408344e-08 +-2.730354246809194e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744796887588e+00 - 1.732015824361753e+00 + 1.224744791379853e+00 + 1.732011273955537e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.430218807568009e-02 +-9.053447909085788e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.507735019005129e-08 --4.550195381626739e-05 +-5.507735019013906e-08 +-4.244364015854446e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769348913e+00 - 1.731993075544189e+00 + 1.731996133857847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662066919191e-01 +-1.154690611156566e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.130801264253847e-08 --3.097409539533787e-05 +-5.507735019013906e-08 +-4.550400227768612e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744783118251e+00 - 1.732007603402610e+00 + 1.224744769348913e+00 + 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.988638017239111e-02 +-1.154662047800217e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769348913e+00 1.731993073495728e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368285933325978, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554495992939, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55035995521213 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584443552036e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161704857, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755236663, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380488506 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295289096e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.460807468325000e-09 --5.773407314912937e-05 +-4.460807468020651e-09 +-5.773407314957346e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -718,8 +718,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.007921301090276377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.020984812811882e-07 --5.773407314912937e-05 +-1.020984812809759e-07 +-5.773407314957346e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744769293108e+00 @@ -736,12 +736,12 @@ Using fixed-point nonlinear solver 1.224744769293108e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.041240596453647e-04 +-2.041240596455569e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0016 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041240596453647e-04 +-2.041240596455570e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.000599999999999999 @@ -751,67 +751,67 @@ Using fixed-point nonlinear solver 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662047800221e-01 +-1.154662047800217e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123721789360934e-08 --3.463986143400658e-05 +-4.898977431493362e-08 +-2.771188914720517e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744708111695e+00 - 1.731958433634294e+00 + 1.224744720359139e+00 + 1.731965361606580e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.501073542153408e-01 +-1.431785753570878e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123721789360934e-08 --4.503220626460218e-05 +-7.348466147240043e-08 +-5.403840048048751e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744708111695e+00 - 1.731948041289463e+00 + 1.224744695864251e+00 + 1.731939035095247e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.500978625403898e-01 +-1.570250476982786e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744357872187e-07 --9.005871752423377e-05 +-1.224744357873340e-07 +-8.627974320538952e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744646874477e+00 - 1.731903014778204e+00 + 1.731906793752522e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.847363041424097e-01 +-1.847396800228890e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.185582684041401e-08 --6.364909523044030e-05 +-1.224744357873340e-07 +-9.006129424346806e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744677493086e+00 - 1.731929424400498e+00 + 1.224744646874477e+00 + 1.731903012201484e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.674198337380726e-01 +-1.847363018405402e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744646874477e+00 - 1.731903012201485e+00 + 1.731903012201484e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0026817945414125, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.002574522759756, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126626 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465401596383e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859501769, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305121698, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175202832 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264439719e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769293108e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.479408030077141e-08 +-2.479408030067945e-08 -9.006129424338205e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -822,19 +822,19 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01234458166291139 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.809929833651335e-07 +-1.809929833651642e-07 -9.006129424338205e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744588300124e+00 - 1.731903012201485e+00 + 1.731903012201484e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.265549457359962e-04 +-3.265549457362526e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.875996637980679e-04 +-2.875996637983038e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -845,68 +845,68 @@ Using fixed-point nonlinear solver 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048079246e-01 +-1.154662048079243e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.834662183974237e-08 --1.539549397438994e-05 +-3.067729747181907e-08 +-1.231639517951192e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744730946486e+00 - 1.731977678001754e+00 + 1.224744738615810e+00 + 1.731980757100548e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.308614113527141e-01 +-1.277822550321694e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.834662183974237e-08 --1.744818818036188e-05 +-4.601594620772860e-08 +-2.093780281411691e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744730946486e+00 - 1.731975625307548e+00 + 1.224744723277162e+00 + 1.731972135692913e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.308595137509590e-01 +-1.339383507048559e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.669324367948474e-08 --3.489587033358906e-05 +-7.669324367954767e-08 +-3.414944299431669e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744692599864e+00 - 1.731958177625395e+00 + 1.731958924052733e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.462542534803255e-01 +-1.462549368758888e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.751993275961356e-08 --2.540233607325636e-05 +-7.669324367954767e-08 +-3.489610259980583e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744711773175e+00 - 1.731967671159655e+00 + 1.224744692599864e+00 + 1.731958177393128e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.385574197906124e-01 +-1.462542532676724e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744692599864e+00 - 1.731958177393129e+00 + 1.731958177393128e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586867376102, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643392681058, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912722553967 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9871828265712e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413331621246, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396798356396, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799383648 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155541509221e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769293108e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 6.384091133263229e-08 --3.489610259954645e-05 + 6.384091133274673e-08 +-3.489610259976850e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -916,19 +916,19 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004788932282534239 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.982657200882230e-08 --3.489610259954645e-05 +-5.982657200886118e-08 +-3.489610259976850e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744709466536e+00 - 1.731958177393129e+00 + 1.731958177393128e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --2.585608762190396e-04 +-2.585608762193601e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.061667302972318e-04 +-3.061667302975508e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -939,68 +939,68 @@ Using fixed-point nonlinear solver 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048079246e-01 +-1.154662048079243e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.530833651486158e-07 --5.773310240396227e-05 +-1.224666921190202e-07 +-4.618648192316968e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744616209743e+00 - 1.731935340393324e+00 + 1.224744646826416e+00 + 1.731946887013804e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050913937298e-01 +-1.616559000838466e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.530833651486158e-07 --8.660254569686482e-05 +-1.837000381785303e-07 +-1.039219943416962e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616209743e+00 - 1.731906470950031e+00 + 1.224744585593070e+00 + 1.731889151501386e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791088947127e-01 +-1.847239502121814e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.061667302972316e-07 --1.731791088947126e-04 +-3.061667302975505e-07 +-1.626813045131844e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463126378e+00 - 1.731819894386833e+00 + 1.731830392191214e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093244301600e-01 +-2.309184225039262e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.296250477229237e-07 --1.190683048436511e-04 +-3.061667302975505e-07 +-1.731906549698756e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744539668060e+00 - 1.731874005190884e+00 + 1.224744463126378e+00 + 1.731819882840758e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519767897527e-01 +-2.309093144235613e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463126378e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999151874141, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519185799175, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519185799175 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462878905 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694270211, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066499403, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639066499403 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769775e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769293108e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.109602674836606e-07 --1.731906549691242e-04 +-1.109602674835517e-07 +-1.731906549697904e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1010,101 +1010,101 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376154766725365 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.062486576842081e-07 --1.731906549691242e-04 +-3.062486576843751e-07 +-1.731906549697904e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463044450e+00 1.731819882840758e+00 9.891665264660787e-11 1.686140116419210e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --4.082479650108680e-04 +-4.082479650114450e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082479650108681e-04 +-4.082479650114451e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.000599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463126378e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144235624e-01 +-2.309093144235613e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224743895032603e-07 --6.927279432706864e-05 +-9.797951160274671e-08 +-5.541823546165465e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744340651988e+00 - 1.731750610046432e+00 + 1.224744365146866e+00 + 1.731764464605296e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.655386834072824e-01 +-2.586124826144323e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224743895032603e-07 --7.966160502218464e-05 +-1.469692674041200e-07 +-9.559377887837387e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744340651988e+00 - 1.731740221235737e+00 + 1.224744316157110e+00 + 1.731724289061879e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.655298875475186e-01 +-2.724545226893018e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.449487790065206e-07 --1.593179325285109e-04 +-2.449487790068668e-07 +-1.555400542145896e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744218177598e+00 - 1.731660564908230e+00 + 1.731664342786543e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.001544687610667e-01 +-3.001575918044699e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.837115842548904e-07 --1.155947142248523e-04 +-2.449487790068668e-07 +-1.593200925091806e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744279414793e+00 - 1.731704288126534e+00 + 1.224744218177598e+00 + 1.731660562748249e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.828450146003816e-01 +-3.001544669754818e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744218177598e+00 - 1.731660562748250e+00 + 1.731660562748249e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842638042, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0032692400893252, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873348220867 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661419327358e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162709705, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118876201316, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460335528 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943364243e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.961782471774958e-08 --1.593200925094074e-04 +-4.961782471747363e-08 +-1.593200925091853e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1114,19 +1114,19 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02184661245050203 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.034569018875944e-07 --1.593200925094074e-04 +-3.034569018875331e-07 +-1.593200925091853e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744159587548e+00 - 1.731660562748250e+00 + 1.731660562748249e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --5.306787654414462e-04 +-5.306787654418950e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.917235107589893e-04 +-4.917235107594789e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1134,70 +1134,70 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144645261e-01 +-2.309093144645252e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.556313476786521e-08 --3.078790859527014e-05 +-5.245050781434440e-08 +-2.463032687621601e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744397481315e+00 - 1.731789094932164e+00 + 1.224744410593942e+00 + 1.731795252513882e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.462996278002945e-01 +-2.432214939659839e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.556313476786521e-08 --3.283995037337259e-05 +-7.867576172151659e-08 +-3.940792621461577e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744397481315e+00 - 1.731787042890386e+00 + 1.224744384368688e+00 + 1.731780474914543e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.462978676044528e-01 +-2.493756876199259e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.311262695357304e-07 --6.567943136118738e-05 +-1.311262695358610e-07 +-6.493322466747425e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744331918180e+00 - 1.731754203409398e+00 + 1.731754949616090e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.616873033814567e-01 +-2.616879368279173e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.834470215179782e-08 --4.849024118667600e-05 +-1.311262695358610e-07 +-6.567962705135040e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744364699748e+00 - 1.731771392599572e+00 + 1.224744331918180e+00 + 1.731754203213707e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.539931386603687e-01 +-2.616873032153366e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744331918180e+00 - 1.731754203213708e+00 + 1.731754203213707e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925011257609, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688010807304, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330040527392 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796479944291e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410311448591, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898990647, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347712121493 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093867454425e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 1.070323319251335e-07 + 1.070323319253645e-07 -6.567962705128494e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -1208,19 +1208,19 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009012485355207489 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.142665957683460e-07 +-1.142665957683909e-07 -6.567962705128494e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744348777854e+00 - 1.731754203213708e+00 + 1.731754203213707e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --4.626847229170461e-04 +-4.626847229176231e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.102905491753587e-04 +-5.102905491758706e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1228,71 +1228,71 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144645261e-01 +-2.309093144645252e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551452745876791e-07 --1.154546572322630e-04 +-2.041162196703481e-07 +-9.236372578581000e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207899175e+00 - 1.731704428183527e+00 + 1.224744258928230e+00 + 1.731727519114972e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886270253975289e-01 +-2.770826858560054e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551452745876791e-07 --1.443135126987644e-04 +-3.061743295055221e-07 +-1.731756172223251e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207899175e+00 - 1.731675569328060e+00 + 1.224744156870121e+00 + 1.731646707223536e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029763511114e-01 +-3.001430436924783e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.102905491753582e-07 --2.886029763511112e-04 +-5.102905491758702e-07 +-2.781081462428413e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952753901e+00 - 1.731531279864408e+00 + 1.731541774694515e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062368223351e-01 +-3.463146326674544e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.827179118815187e-07 --2.056396314327325e-04 +-5.102905491758702e-07 +-2.886125924606090e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744080326538e+00 - 1.731614243209326e+00 + 1.224743952753901e+00 + 1.731531270248297e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174626058268654e-01 +-3.463062291294465e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952753901e+00 - 1.731531270248295e+00 + 1.731531270248297e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985491039622, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071398037, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506071398037 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678876031 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023430549, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275542493327, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275542493328 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747681351e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463044450e+00 - 1.731819882840759e+00 + 1.731819882840758e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.174596711743162e-07 --2.886125924639327e-04 +-2.174596711741620e-07 +-2.886125924606020e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1302,35 +1302,35 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0395959695845631 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.103986412073320e-07 --2.886125924639327e-04 +-5.103986412066258e-07 +-2.886125924606020e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224743952645809e+00 - 1.731531270248295e+00 + 1.731531270248297e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224743952645809e+00 - 1.731531270248295e+00 + 1.731531270248297e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952645809e+00 1.731531270248297e+00 1.874711497151793e-10 2.527311693256706e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out index f197fae416..0f0d25238b 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_0.out @@ -28,49 +28,49 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 - 8.533232435357683e-25 + 9.654250432771864e-25 + 6.826585948286147e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.188969423061617e-06 +-9.511755374456009e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 --1.224255324051406e-14 + 1.448137564915780e-24 +-1.469106387337067e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.188969410882862e-06 +-1.426763294532537e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.413562608192966e-24 --2.448510623022426e-14 +-2.003326869930686e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568853e+00 + 1.732050807568857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.377938834068763e-06 +-2.377938838427473e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.810171956144724e-24 --1.377287230118023e-14 + 2.413562608192966e-24 +-2.448510635540961e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568863e+00 + 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.783454125504481e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -80,7 +80,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -88,51 +88,51 @@ Using GMRES iterative linear solver 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.377938833812368e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --2.016074428475105e-12 + 7.949194560151480e-23 +-1.612859542953986e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807566836e+00 + 1.732050807567240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.002763027735722e-04 +-8.069662335302558e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --8.501669047547002e-11 + 1.192379184022722e-22 +-1.020200201355860e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807483836e+00 + 1.732050807466833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.002762197779237e-04 +-1.198558859168393e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.987298640037870e-22 --1.700332402194777e-10 +-1.398512043990971e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807398819e+00 + 1.732050807429002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981746138087546e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.490473980028403e-22 --9.639975192593520e-11 + 1.987298640037870e-22 +-1.700333105608062e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807472453e+00 + 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.492254224646821e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -142,7 +142,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -150,61 +150,61 @@ Using GMRES iterative linear solver 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.760313456268973e-09 + 1.305953438023304e-21 +-2.208250765018035e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050804638506e+00 + 1.732050805190569e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.806532979849059e-03 +-1.484859516826536e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.516264801536699e-08 + 1.958930157034957e-21 +-3.019514034987365e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050782236171e+00 + 1.732050777203679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.806510600880137e-03 +-2.128180483031468e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.264883595058261e-21 --5.032467261104088e-08 +-4.217839723859307e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050757074147e+00 + 1.732050765220422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.414868907668693e-03 +-3.414877037883311e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.448662696293695e-21 --2.934286285885705e-08 + 3.264883595058261e-21 +-5.032498390567580e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050778055956e+00 + 1.732050757073835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.610695364096074e-03 +-3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732050757073835e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -214,128 +214,128 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.512933922928683e-07 + 2.611906876046609e-20 +-7.610347138342947e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732049805780443e+00 + 1.732049996039122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.558608464041920e-02 +-2.915117884460126e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.913354829832584e-06 + 3.917860314069912e-20 +-1.189574890062628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040843719006e+00 + 1.732038861324935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.557730668812781e-02 +-4.201081246065858e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.529767190116521e-20 --1.982181904263757e-05 +-1.656308459528083e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030935254793e+00 + 1.732034193989240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.774796574093327e-02 +-6.775109700792233e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.897325392587391e-20 --1.150743491657343e-05 + 6.529767190116521e-20 +-1.982421265922294e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039249638919e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.166493150904073e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --6.774796344094283e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.497970704107743e-07 + 6.224975161338911e-22 +-3.598376563286176e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732030483064106e+00 + 1.732030573023520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.851457574280405e-02 +-6.836125293997067e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.548868170246134e-07 + 9.337462742008366e-22 +-5.458641770189984e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732030477974360e+00 + 1.732030386996999e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.851457085439451e-02 +-6.866789285110339e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.556243790334728e-21 --9.097735691382781e-07 +-9.079227540419626e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030023087608e+00 + 1.732030024938422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.928118254776658e-02 +-6.928118432454869e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.167182842751046e-21 --6.804215464676200e-07 + 1.556243790334728e-21 +-9.097736002471066e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732030252439630e+00 + 1.732030023087576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.889787799966653e-02 +-6.928118254773628e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.605212824962841e-20 --2.078448130049537e-05 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -358,19 +358,19 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.855386363095466e-08 --2.078448130049537e-05 +-5.855386363111217e-08 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744812837725e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --1.224308607685319e-04 +-1.224308607688524e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.347558688759807e-05 +-8.347558688781659e-05 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -383,59 +383,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.108434040695324e-08 - 1.100430537325142e-20 +-8.867472325585801e-09 + 8.803444298601133e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860307249e+00 + 1.224744862524117e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.533374356397679e-02 +-1.226683730889816e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.108434040695324e-08 --2.036097495246224e-06 +-1.330120848837870e-08 +-2.443285615319390e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860307249e+00 - 1.732048771471382e+00 + 1.224744858090380e+00 + 1.732048364283262e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.533172549075150e-02 +-1.839830952914933e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.216868081390647e-08 --4.071659049112955e-06 +-2.216868081396450e-08 +-3.331283188032246e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849222908e+00 - 1.732046735909828e+00 + 1.732047476285689e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.066541357893657e-02 +-3.066614084649609e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.662651061042985e-08 --2.290409164533189e-06 +-2.216868081396450e-08 +-4.071924564351138e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854765078e+00 - 1.732048517159713e+00 + 1.224744849222908e+00 + 1.732046735644313e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.299908436788710e-02 +-3.066541331812208e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849222908e+00 1.732046735644313e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767423884691, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296726929303, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516415389461 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446933684687e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954103465, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339155939327, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.6023499861254 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086117328e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -445,65 +445,65 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -3.066541331812208e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.573784472650918e-11 --1.680215695526752e-08 +-3.659027578130313e-11 +-1.344172556421402e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744849177170e+00 - 1.732046718842156e+00 + 1.224744849186318e+00 + 1.732046722202587e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.072868111118094e-02 +-3.071602754999522e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.573784472650918e-11 --1.683682256952683e-08 +-5.488541367195468e-11 +-2.020418708131673e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744849177170e+00 - 1.732046718807490e+00 + 1.224744849168023e+00 + 1.732046715440126e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.072868107713037e-02 +-3.074133463279350e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.147568945301835e-11 --3.367364510173976e-08 +-9.147568945325782e-11 +-3.366103942524356e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849131432e+00 - 1.732046701970668e+00 + 1.732046701983273e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.079194886831365e-02 +-3.079194888069524e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.860676708976376e-11 --2.524223423501452e-08 +-9.147568945325782e-11 +-3.367364512005428e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744849154301e+00 - 1.732046710402078e+00 + 1.224744849131432e+00 + 1.732046701970668e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.076031498146931e-02 +-3.079194886831365e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849131432e+00 1.732046701970668e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063439190795e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201474387834e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.55331130299543e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 2.064943934135623e-08 + 2.064943934146855e-08 -4.105598209624972e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -527,7 +527,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.385575366321747e-09 +-5.385575366209424e-09 -4.105598209624973e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -539,7 +539,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.020426822528078e-04 +-1.020426822529704e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -552,59 +552,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118222112685461e-09 - 9.081518466703426e-22 +-8.945776901497945e-10 + 7.265214773362741e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744870273367e+00 + 1.224744870497011e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.265371779506669e-03 +-1.012296318196238e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118222112685461e-09 --1.386642014276899e-08 +-1.341866535224692e-09 +-1.663968600108975e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870273367e+00 - 1.732050793702457e+00 + 1.224744870049722e+00 + 1.732050790929191e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.265357923216755e-03 +-1.518431167450557e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444225370922e-09 --2.773253660065945e-08 +-2.236444225374486e-09 +-2.269021572098104e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744869155145e+00 - 1.732050779836340e+00 + 1.732050784878661e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.530729660297851e-03 +-2.530734695251462e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.677333169028192e-09 --1.559960880784259e-08 +-2.236444225374486e-09 +-2.773268828812651e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744869714256e+00 - 1.732050791969268e+00 + 1.224744869155145e+00 + 1.732050779836189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.898047263032509e-03 +-2.530729660146415e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744869155145e+00 1.732050779836189e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540438629449822, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00064049570008734, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06396343075831e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -614,128 +614,128 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -2.530729660146415e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444225370922e-08 --5.546537595304767e-07 +-1.789155380299589e-08 +-4.437230076243813e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744846790703e+00 - 1.732050225182429e+00 + 1.224744851263591e+00 + 1.732050336113181e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.784069876735422e-02 +-2.277828755049226e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444225370922e-08 --6.101777081308294e-06 +-2.683733070449383e-08 +-7.321995278287242e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744846790703e+00 - 1.732044678059107e+00 + 1.224744842317814e+00 + 1.732043457840911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.783524079897991e-02 +-3.289678092765365e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.472888450741844e-08 --1.220116174376136e-05 +-4.472888450748972e-08 +-1.018412506500903e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744824426260e+00 - 1.732038578674445e+00 + 1.732040595711124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.314493929293172e-02 +-5.314689443885533e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.354666338056383e-08 --7.071600926077418e-06 +-4.472888450748972e-08 +-1.220233818339314e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744835608481e+00 - 1.732043708235263e+00 + 1.224744824426260e+00 + 1.732038577498005e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.049150356689800e-02 +-5.314493815258926e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744824426260e+00 - 1.732038577498006e+00 + 1.732038577498005e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153410775300205, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274344288197, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35985779294331 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080966507076e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0028489493163919, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134373623, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949950298376 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217688642629e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744824426260e+00 - 1.732038577498006e+00 + 1.732038577498005e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.314493815258951e-02 +-5.314493815258926e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.753867676000917e-08 --1.434244221049542e-05 +-2.203094140804245e-08 +-1.147395376839628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744796887584e+00 - 1.732024235055795e+00 + 1.224744802395319e+00 + 1.732027103544237e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.431018937868821e-02 +-7.807659311347388e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.753867676000917e-08 --2.275313625256031e-05 +-3.304641211206367e-08 +-2.730354246809267e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744796887584e+00 - 1.732015824361753e+00 + 1.224744791379848e+00 + 1.732011273955537e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.430218807568231e-02 +-9.053447909086032e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.507735352001834e-08 --4.550195381626859e-05 +-5.507735352010612e-08 +-4.244364015854561e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769348907e+00 - 1.731993075544189e+00 + 1.731996133857847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662066919223e-01 +-1.154690611156597e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.130801514001376e-08 --3.097409539533869e-05 +-5.507735352010612e-08 +-4.550400227768734e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744783118245e+00 - 1.732007603402610e+00 + 1.224744769348907e+00 + 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.988638017239389e-02 +-1.154662047800248e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769348907e+00 1.731993073495728e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368286591468766, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353555127810015, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55037166098684 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584445101141e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161640769, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755175139, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380374519 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295289096e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.460805351239993e-09 --5.773407314912937e-05 +-4.460805350935643e-09 +-5.773407314957346e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -758,8 +758,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.020851480550234e-07 --5.773407314912938e-05 +-1.020851480548244e-07 +-5.773407314957346e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744769306441e+00 @@ -776,12 +776,12 @@ Using GMRES iterative linear solver 1.224744769306441e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.041240863092769e-04 +-2.041240863094692e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0016 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041240863092769e-04 +-2.041240863094693e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.000599999999999999 @@ -791,67 +791,67 @@ Using GMRES iterative linear solver 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662047800252e-01 +-1.154662047800248e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123722589278301e-08 --3.463986143400753e-05 +-4.898978071427257e-08 +-2.771188914720592e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744708111681e+00 - 1.731958433634294e+00 + 1.224744720359126e+00 + 1.731965361606580e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.501073542153479e-01 +-1.431785753570942e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123722589278301e-08 --4.503220626460432e-05 +-7.348467107140883e-08 +-5.403840048049008e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744708111681e+00 - 1.731948041289463e+00 + 1.224744695864236e+00 + 1.731939035095247e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.500978625403969e-01 +-1.570250476982865e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744517855660e-07 --9.005871752423803e-05 +-1.224744517856814e-07 +-8.627974320539334e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744646874455e+00 - 1.731903014778204e+00 + 1.731906793752522e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.847363041424208e-01 +-1.847396800229001e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.185583883917451e-08 --6.364909523044305e-05 +-1.224744517856814e-07 +-9.006129424347232e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744677493068e+00 - 1.731929424400498e+00 + 1.224744646874455e+00 + 1.731903012201484e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.674198337380817e-01 +-1.847363018405514e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744646874455e+00 - 1.731903012201485e+00 + 1.731903012201484e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179454214062, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452276045499, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126742499 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402038996e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859461963, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305083485, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175139142 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578036e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769306441e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.480742286531799e-08 +-2.480742286522601e-08 -9.006129424338205e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -875,19 +875,19 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.809853505740043e-07 --9.006129424338208e-05 +-1.809853505751290e-07 +-9.006129424338206e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744588321090e+00 - 1.731903012201485e+00 + 1.731903012201484e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.265549876622578e-04 +-3.265549876625142e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.875997008681274e-04 +-2.875997008683634e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -898,68 +898,68 @@ Using GMRES iterative linear solver 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048012581e-01 +-1.154662048012577e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.834662678241697e-08 --1.539549397350107e-05 +-3.067730142595875e-08 +-1.231639517880082e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744730959814e+00 - 1.731977678001755e+00 + 1.224744738629139e+00 + 1.731980757100549e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.308614113460508e-01 +-1.277822550255055e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.834662678241697e-08 --1.744818817947343e-05 +-4.601595213893812e-08 +-2.093780281305079e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744730959814e+00 - 1.731975625307549e+00 + 1.224744723290489e+00 + 1.731972135692915e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.308595137442957e-01 +-1.339383506981935e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.669325356483393e-08 --3.489587033181218e-05 +-7.669325356489688e-08 +-3.414944299253971e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744692613187e+00 - 1.731958177625396e+00 + 1.731958924052735e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.462542534736654e-01 +-1.462549368692287e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.751994017362545e-08 --2.540233607192354e-05 +-7.669325356489688e-08 +-3.489610259802898e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744711786501e+00 - 1.731967671159656e+00 + 1.224744692613187e+00 + 1.731958177393130e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.385574197839506e-01 +-1.462542532610124e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744692613187e+00 1.731958177393130e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586868558598, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643393816254, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912726810953 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718277124459e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413332674699, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396799367711, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799762892 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155531135481e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769306441e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 6.384091966412719e-08 --3.489610259821418e-05 + 6.384091966424164e-08 +-3.489610259799214e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -982,19 +982,19 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.981857207916264e-08 --3.489610259821418e-05 +-5.981857207952355e-08 +-3.489610259799215e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744709487869e+00 1.731958177393130e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --2.585609188795754e-04 +-2.585609188797036e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.061667764362305e-04 +-3.061667764364083e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1005,68 +1005,68 @@ Using GMRES iterative linear solver 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048012581e-01 +-1.154662048012577e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.530833882181151e-07 --5.773310240062900e-05 +-1.224667105745632e-07 +-4.618648192050306e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744616223053e+00 - 1.731935340393328e+00 + 1.224744646839730e+00 + 1.731946887013807e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050913870777e-01 +-1.616559000771917e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.530833882181151e-07 --8.660254569353880e-05 +-1.837000658618448e-07 +-1.039219943377050e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616223053e+00 - 1.731906470950034e+00 + 1.224744585606375e+00 + 1.731889151501390e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791088880607e-01 +-1.847239502055323e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.061667764362302e-07 --1.731791088880606e-04 +-3.061667764364080e-07 +-1.626813045065297e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463139664e+00 - 1.731819894386840e+00 + 1.731830392191221e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093244235223e-01 +-2.309184224972886e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.296250823271727e-07 --1.190683048386593e-04 +-3.061667764364080e-07 +-1.731906549632236e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744539681359e+00 - 1.731874005190889e+00 + 1.224744463139664e+00 + 1.731819882840764e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519767831079e-01 +-2.309093144169236e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463139664e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999151395071, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519185339268, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519185339268 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462967428 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540693893356, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066137622, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639066137622 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738714448e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769306441e+00 1.731993073495728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.109602919130189e-07 --1.731906549626849e-04 +-1.109602919128441e-07 +-1.731906549631290e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1089,101 +1089,101 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.062073298412228e-07 --1.731906549626849e-04 +-3.062073298412410e-07 +-1.731906549631290e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463099111e+00 1.731819882840764e+00 4.425571020760799e-11 1.685473982604435e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --4.082480743113021e-04 +-4.082480743117508e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082480743113022e-04 +-4.082480743117509e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.000599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463139664e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144169245e-01 +-2.309093144169236e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744222933905e-07 --6.927279432507725e-05 +-9.797953783482012e-08 +-5.541823546006160e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744340665242e+00 - 1.731750610046440e+00 + 1.224744365160127e+00 + 1.731764464605305e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.655386834006626e-01 +-2.586124826078091e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744222933905e-07 --7.966160502019869e-05 +-1.469693067522301e-07 +-9.559377887599085e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744340665242e+00 - 1.731740221235745e+00 + 1.224744316170358e+00 + 1.731724289061888e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.655298875408986e-01 +-2.724545226826856e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.449488445867810e-07 --1.593179325245389e-04 +-2.449488445870503e-07 +-1.555400542106158e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744218190820e+00 - 1.731660564908241e+00 + 1.731664342786554e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.001544687544647e-01 +-3.001575917978680e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.837116334400858e-07 --1.155947142218713e-04 +-2.449488445870503e-07 +-1.593200925052088e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744279428031e+00 - 1.731704288126543e+00 + 1.224744218190820e+00 + 1.731660562748259e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.828450145937706e-01 +-3.001544669688799e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744218190820e+00 - 1.731660562748260e+00 + 1.731660562748259e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0034054584324537, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924009515555, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873349192592 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.0966141711407e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162965557, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118876446935, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460744893 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943364242e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.965921196211228e-08 --1.593200925054106e-04 +-4.965921196189766e-08 +-1.593200925051885e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1206,19 +1206,19 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.034604233953332e-07 --1.593200925054105e-04 +-3.034604233952821e-07 +-1.593200925051885e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744159638687e+00 - 1.731660562748260e+00 + 1.731660562748259e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --5.306788676927056e-04 +-5.306788676930262e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.917236152531680e-04 +-4.917236152535292e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1226,70 +1226,70 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144372013e-01 +-2.309093144372005e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.556314870042237e-08 --3.078790859162682e-05 +-5.245051896037644e-08 +-2.463032687330138e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744397535962e+00 - 1.731789094932174e+00 + 1.224744410648592e+00 + 1.731795252513891e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.462996277729796e-01 +-2.432214939386673e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.556314870042237e-08 --3.283995036973061e-05 +-7.867577844056464e-08 +-3.940792621024542e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744397535962e+00 - 1.731787042890396e+00 + 1.224744384423333e+00 + 1.731780474914554e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.462978675771379e-01 +-2.493756875926133e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.311262974008447e-07 --6.567943135390341e-05 +-1.311262974009411e-07 +-6.493322466018986e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744331972814e+00 - 1.731754203409412e+00 + 1.731754949616104e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.616873033541517e-01 +-2.616879368006124e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.834472305063356e-08 --4.849024118121252e-05 +-1.311262974009411e-07 +-6.567962704406647e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744364754388e+00 - 1.731771392599584e+00 + 1.224744331972814e+00 + 1.731754203213721e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.539931386330586e-01 +-2.616873031880319e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744331972814e+00 1.731754203213721e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012523203, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688012022275, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330045083531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473304433e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410308302782, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593895970671, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347710989002 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093902037012e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 1.070323539730822e-07 + 1.070323539732519e-07 -6.567962704395747e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1313,19 +1313,19 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.142514240315790e-07 +-1.142514240316232e-07 -6.567962704395748e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744348847687e+00 1.731754203213721e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --4.626848625489195e-04 +-4.626848625493683e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.102906771420447e-04 +-5.102906771424285e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1333,71 +1333,71 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144372013e-01 +-2.309093144372005e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551453385710222e-07 --1.154546572186005e-04 +-2.041162708569713e-07 +-9.236372577488012e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207953772e+00 - 1.731704428183547e+00 + 1.224744258982840e+00 + 1.731727519114990e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886270253702471e-01 +-2.770826858287154e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551453385710222e-07 --1.443135126851234e-04 +-3.061744062854569e-07 +-1.731756172059563e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207953772e+00 - 1.731675569328080e+00 + 1.224744156924705e+00 + 1.731646707223559e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029763238296e-01 +-3.001430436652053e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.102906771420443e-07 --2.886029763238294e-04 +-5.102906771424281e-07 +-2.781081462155518e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952808434e+00 - 1.731531279864442e+00 + 1.731541774694549e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062367950955e-01 +-3.463146326402151e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.827180078565332e-07 --2.056396314122631e-04 +-5.102906771424281e-07 +-2.886125924333274e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744080381103e+00 - 1.731614243209353e+00 + 1.224743952808434e+00 + 1.731531270248331e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174626057996048e-01 +-3.463062291022072e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952808434e+00 - 1.731531270248329e+00 + 1.731531270248331e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985490509539, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070889158, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070889158 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678964561 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0039716202469825, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0038127554371032, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8127554371032 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747764349e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463099111e+00 - 1.731819882840765e+00 + 1.731819882840764e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.174597639017901e-07 --2.886125924366212e-04 +-2.174597639016971e-07 +-2.886125924332905e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1420,46 +1420,46 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.103275638872909e-07 --2.886125924366212e-04 +-5.103275638866188e-07 +-2.886125924332905e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224743952771547e+00 - 1.731531270248329e+00 + 1.731531270248331e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224743952771547e+00 - 1.731531270248329e+00 + 1.731531270248331e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952771547e+00 1.731531270248331e+00 6.173306310586213e-11 2.523914410801353e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out index d60ecb0291..f0628f069c 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_4_1_1.out @@ -28,49 +28,49 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 - 8.533232435357683e-25 + 9.654250432771864e-25 + 6.826585948286147e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.188969423061617e-06 +-9.511755374456009e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 --1.224255324051406e-14 + 1.448137564915780e-24 +-1.469106387337067e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.188969410882862e-06 +-1.426763294532537e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.413562608192966e-24 --2.448510623022426e-14 +-2.003326869930686e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568853e+00 + 1.732050807568857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.377938834068763e-06 +-2.377938838427473e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.810171956144724e-24 --1.377287230118023e-14 + 2.413562608192966e-24 +-2.448510635540961e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568863e+00 + 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.783454125504481e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -80,7 +80,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -88,51 +88,51 @@ Using dense direct linear solver 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.377938833812368e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --2.016074428475105e-12 + 7.949194560151480e-23 +-1.612859542953986e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807566836e+00 + 1.732050807567240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.002763027735722e-04 +-8.069662335302558e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --8.501669047547002e-11 + 1.192379184022722e-22 +-1.020200201355860e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807483836e+00 + 1.732050807466833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.002762197779237e-04 +-1.198558859168393e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.987298640037870e-22 --1.700332402194777e-10 +-1.398512043990971e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807398819e+00 + 1.732050807429002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981746138087546e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.490473980028403e-22 --9.639975192593520e-11 + 1.987298640037870e-22 +-1.700333105608062e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807472453e+00 + 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.492254224646821e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -142,7 +142,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -150,61 +150,61 @@ Using dense direct linear solver 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.760313456268973e-09 + 1.305953438023304e-21 +-2.208250765018035e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050804638506e+00 + 1.732050805190569e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.806532979849059e-03 +-1.484859516826536e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.516264801536699e-08 + 1.958930157034957e-21 +-3.019514034987365e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050782236171e+00 + 1.732050777203679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.806510600880137e-03 +-2.128180483031468e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.264883595058261e-21 --5.032467261104088e-08 +-4.217839723859307e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050757074147e+00 + 1.732050765220422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.414868907668693e-03 +-3.414877037883311e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.448662696293695e-21 --2.934286285885705e-08 + 3.264883595058261e-21 +-5.032498390567580e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050778055956e+00 + 1.732050757073835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.610695364096074e-03 +-3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732050757073835e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -214,128 +214,128 @@ Using dense direct linear solver 0.000000000000000e+00 -3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.512933922928683e-07 + 2.611906876046609e-20 +-7.610347138342947e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732049805780443e+00 + 1.732049996039122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.558608464041920e-02 +-2.915117884460126e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.913354829832584e-06 + 3.917860314069912e-20 +-1.189574890062628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040843719006e+00 + 1.732038861324935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.557730668812781e-02 +-4.201081246065858e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.529767190116521e-20 --1.982181904263757e-05 +-1.656308459528083e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030935254793e+00 + 1.732034193989240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.774796574093327e-02 +-6.775109700792233e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.897325392587391e-20 --1.150743491657343e-05 + 6.529767190116521e-20 +-1.982421265922294e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039249638919e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.166493150904073e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --6.774796344094283e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.497970704107743e-07 + 6.224975161338911e-22 +-3.598376563286176e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732030483064106e+00 + 1.732030573023520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.851457574280405e-02 +-6.836125293997067e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.548868170246134e-07 + 9.337462742008366e-22 +-5.458641770189984e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732030477974360e+00 + 1.732030386996999e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.851457085439451e-02 +-6.866789285110339e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.556243790334728e-21 --9.097735691382781e-07 +-9.079227540419626e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030023087608e+00 + 1.732030024938422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.928118254776658e-02 +-6.928118432454869e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.167182842751046e-21 --6.804215464676200e-07 + 1.556243790334728e-21 +-9.097736002471066e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732030252439630e+00 + 1.732030023087576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.889787799966653e-02 +-6.928118254773628e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.605212824962841e-20 --2.078448130049537e-05 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -349,19 +349,19 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.00388627246820195 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.855388883632438e-08 --2.078447693020536e-05 +-5.855388883647773e-08 +-2.078447693087149e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744812837700e+00 - 1.732030023091947e+00 + 1.732030023091946e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --1.224308585326179e-04 +-1.224308585329384e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.347558536311130e-05 +-8.347558536332983e-05 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -374,59 +374,59 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.108434020452363e-08 - 1.100430537325142e-20 +-8.867472163642114e-09 + 8.803444298601133e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860307249e+00 + 1.224744862524117e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.533374356397665e-02 +-1.226683730889802e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.108434020452363e-08 --2.036097495246206e-06 +-1.330120824546317e-08 +-2.443285615319363e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860307249e+00 - 1.732048771471382e+00 + 1.224744858090381e+00 + 1.732048364283262e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.533172549075136e-02 +-1.839830952914915e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.216868040904725e-08 --4.071659049112918e-06 +-2.216868040910529e-08 +-3.331283188032214e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849222908e+00 - 1.732046735909828e+00 + 1.732047476285689e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.066541357893634e-02 +-3.066614084649586e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.662651030678544e-08 --2.290409164533168e-06 +-2.216868040910529e-08 +-4.071924564351100e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854765079e+00 - 1.732048517159713e+00 + 1.224744849222908e+00 + 1.732046735644313e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.299908436788701e-02 +-3.066541331812185e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849222908e+00 1.732046735644313e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767419404349, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296722628175, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516413769882 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9544693894054e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954060517, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339155898096, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60234998457288 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736086981777e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -436,65 +436,65 @@ Using dense direct linear solver 0.000000000000000e+00 -3.066541331812185e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.573784389121419e-11 --1.680215695526740e-08 +-3.659027511306714e-11 +-1.344172556421392e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744849177171e+00 - 1.732046718842156e+00 + 1.224744849186318e+00 + 1.732046722202587e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.072868111118071e-02 +-3.071602754999499e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.573784389121419e-11 --1.683682256952671e-08 +-5.488541266960070e-11 +-2.020418708131658e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744849177171e+00 - 1.732046718807490e+00 + 1.224744849168023e+00 + 1.732046715440126e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.072868107713014e-02 +-3.074133463279327e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.147568778242839e-11 --3.367364510173951e-08 +-9.147568778266784e-11 +-3.366103942524330e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849131433e+00 - 1.732046701970668e+00 + 1.732046701983273e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.079194886831342e-02 +-3.079194888069501e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.860676583682128e-11 --2.524223423501434e-08 +-9.147568778266784e-11 +-3.367364512005404e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744849154302e+00 - 1.732046710402078e+00 + 1.224744849131433e+00 + 1.732046701970668e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.076031498146908e-02 +-3.079194886831342e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849131433e+00 1.732046701970668e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063440753308e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201474443873e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.97059615282481e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.58707893979177e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 2.064943900180182e-08 + 2.064943900191414e-08 -4.105598209624972e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -509,7 +509,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007682656087209085 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.385575961832973e-09 +-5.385575961720650e-09 -4.105597345676475e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -521,7 +521,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.020426808005853e-04 +-1.020426808007479e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -534,59 +534,59 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118222096771461e-09 - 9.081518466703426e-22 +-8.945776774185943e-10 + 7.265214773362741e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744870273367e+00 + 1.224744870497011e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.265371779506669e-03 +-1.012296318196238e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118222096771461e-09 --1.386642014276899e-08 +-1.341866516127892e-09 +-1.663968600108975e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870273367e+00 - 1.732050793702457e+00 + 1.224744870049722e+00 + 1.732050790929191e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.265357923216755e-03 +-1.518431167450557e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444193542922e-09 --2.773253660065945e-08 +-2.236444193546486e-09 +-2.269021572098104e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744869155145e+00 - 1.732050779836340e+00 + 1.732050784878661e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.530729660297851e-03 +-2.530734695251462e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.677333145157191e-09 --1.559960880784259e-08 +-2.236444193546486e-09 +-2.773268828812651e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744869714256e+00 - 1.732050791969268e+00 + 1.224744869155145e+00 + 1.732050779836189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.898047263032509e-03 +-2.530729660146415e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744869155145e+00 1.732050779836189e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540438628965383, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700061373, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06396343075831e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29093347920334e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -596,128 +596,128 @@ Using dense direct linear solver 0.000000000000000e+00 -2.530729660146415e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444193542922e-08 --5.546537595304767e-07 +-1.789155354837189e-08 +-4.437230076243813e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744846790703e+00 - 1.732050225182429e+00 + 1.224744851263591e+00 + 1.732050336113181e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.784069876735399e-02 +-2.277828755049217e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.236444193542922e-08 --6.101777081308245e-06 +-2.683733032255783e-08 +-7.321995278287212e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744846790703e+00 - 1.732044678059107e+00 + 1.224744842317814e+00 + 1.732043457840911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.783524079897968e-02 +-3.289678092765343e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.472888387085843e-08 --1.220116174376126e-05 +-4.472888387092971e-08 +-1.018412506500896e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744824426261e+00 - 1.732038578674445e+00 + 1.732040595711124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.314493929293140e-02 +-5.314689443885501e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.354666290314382e-08 --7.071600926077360e-06 +-4.472888387092971e-08 +-1.220233818339307e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744835608482e+00 - 1.732043708235263e+00 + 1.224744824426261e+00 + 1.732038577498005e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.049150356689777e-02 +-5.314493815258894e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744824426261e+00 - 1.732038577498006e+00 + 1.732038577498005e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153410775187103, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274344179619, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35985779046625 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967060323e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894931567078, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499134304395, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949950140443 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217689334189e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744824426261e+00 - 1.732038577498006e+00 + 1.732038577498005e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.314493815258919e-02 +-5.314493815258894e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.753867636809194e-08 --1.434244221049533e-05 +-2.203094109450867e-08 +-1.147395376839621e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744796887584e+00 - 1.732024235055795e+00 + 1.224744802395320e+00 + 1.732027103544237e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.431018937868781e-02 +-7.807659311347334e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.753867636809194e-08 --2.275313625256021e-05 +-3.304641164176300e-08 +-2.730354246809248e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744796887584e+00 - 1.732015824361753e+00 + 1.224744791379849e+00 + 1.732011273955537e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.430218807568191e-02 +-9.053447909085974e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.507735273618389e-08 --4.550195381626838e-05 +-5.507735273627167e-08 +-4.244364015854535e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769348908e+00 - 1.731993075544189e+00 + 1.731996133857847e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662066919215e-01 +-1.154690611156589e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.130801455213792e-08 --3.097409539533853e-05 +-5.507735273627167e-08 +-4.550400227768703e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744783118246e+00 - 1.732007603402610e+00 + 1.224744769348908e+00 + 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.988638017239321e-02 +-1.154662047800240e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769348908e+00 1.731993073495728e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368286591897724, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353555128221815, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55037166861632 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584443552036e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0055943516175338, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057755283245, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015380574809 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938295219939e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.460805771544491e-09 --5.773407314912937e-05 +-4.460805771240141e-09 +-5.773407314957346e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -731,8 +731,8 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01080099623081625 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.020853656004976e-07 --5.773406100288379e-05 +-1.020853656002853e-07 +-5.773406100332788e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744769306223e+00 @@ -749,12 +749,12 @@ Using dense direct linear solver 1.224744769306223e+00 1.731993073507874e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.041240798013839e-04 +-2.041240798016403e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0016 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041240798013840e-04 +-2.041240798016404e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 11, tn = 0.001, h = 0.000599999999999999 @@ -764,67 +764,67 @@ Using dense direct linear solver 1.731993073495728e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662047800244e-01 +-1.154662047800240e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123722394041511e-08 --3.463986143400727e-05 +-4.898977915239363e-08 +-2.771188914720573e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744708111684e+00 - 1.731958433634294e+00 + 1.224744720359129e+00 + 1.731965361606580e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.501073542153461e-01 +-1.431785753570926e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123722394041511e-08 --4.503220626460378e-05 +-7.348466872859044e-08 +-5.403840048048943e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744708111684e+00 - 1.731948041289463e+00 + 1.224744695864239e+00 + 1.731939035095247e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.500978625403951e-01 +-1.570250476982846e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744478808302e-07 --9.005871752423696e-05 +-1.224744478809841e-07 +-8.627974320539242e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744646874460e+00 - 1.731903014778204e+00 + 1.731906793752522e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.847363041424181e-01 +-1.847396800228974e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.185583591062267e-08 --6.364909523044237e-05 +-1.224744478809841e-07 +-9.006129424347127e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744677493072e+00 - 1.731929424400498e+00 + 1.224744646874460e+00 + 1.731903012201484e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.674198337380793e-01 +-1.847363018405487e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744646874460e+00 - 1.731903012201485e+00 + 1.731903012201484e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179454272974, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452276102055, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126836759 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465400268544e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859488812, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305109259, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.201021751821 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264439719e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769306223e+00 1.731993073507874e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.480720326704981e-08 +-2.480720326692717e-08 -9.006130638966603e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -844,14 +844,14 @@ Using dense direct linear solver [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744588320553e+00 - 1.731903012220430e+00 + 1.731903012220429e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.265549771151731e-04 +-3.265549771153655e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.875996916062401e-04 +-2.875996916064528e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -862,68 +862,68 @@ Using dense direct linear solver 1.731993073507874e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048127034e-01 +-1.154662048127029e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.834662554749867e-08 --1.539549397502711e-05 +-3.067730043802162e-08 +-1.231639518002164e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744730959598e+00 - 1.731977678013899e+00 + 1.224744738628923e+00 + 1.731980757112694e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.308614113573860e-01 +-1.277822550368628e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.834662554749867e-08 --1.744818818098480e-05 +-4.601595065703243e-08 +-2.093780281486444e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744730959598e+00 - 1.731975625319693e+00 + 1.224744723290273e+00 + 1.731972135705059e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.308595137556310e-01 +-1.339383507095067e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.669325109499733e-08 --3.489587033483491e-05 +-7.669325109505406e-08 +-3.414944299556774e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744692612972e+00 - 1.731958177637539e+00 + 1.731958924064878e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.462542534848906e-01 +-1.462549368804539e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.751993832124799e-08 --2.540233607419608e-05 +-7.669325109505406e-08 +-3.489610260105170e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744711786285e+00 - 1.731967671171800e+00 + 1.224744692612972e+00 + 1.731958177405273e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.385574197952310e-01 +-1.462542532722376e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744692612972e+00 1.731958177405273e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586865891402, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391255746, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912717209049 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.9871828929492e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413331973524, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396798694583, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799510469 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155538046202e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769306223e+00 1.731993073507874e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 6.384091757849049e-08 --3.489610260087872e-05 + 6.384091757859067e-08 +-3.489610260110076e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -937,19 +937,19 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006528828278687991 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.981864733499289e-08 --3.489609525915194e-05 +-5.981864733504606e-08 +-3.489609525937398e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744709487576e+00 - 1.731958177412615e+00 + 1.731958177412614e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --2.585609085517704e-04 +-2.585609085520909e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.061667650775529e-04 +-3.061667650778239e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -960,68 +960,68 @@ Using dense direct linear solver 1.731993073507874e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048127034e-01 +-1.154662048127029e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.530833825387763e-07 --5.773310240635165e-05 +-1.224667060311295e-07 +-4.618648192508113e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744616222841e+00 - 1.731935340405468e+00 + 1.224744646839517e+00 + 1.731946887025949e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050913981100e-01 +-1.616559000883067e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.530833825387763e-07 --8.660254569905494e-05 +-1.837000590466942e-07 +-1.039219943443245e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616222841e+00 - 1.731906470962175e+00 + 1.224744585606165e+00 + 1.731889151513530e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791088990935e-01 +-1.847239502164824e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.061667650775527e-07 --1.731791088990933e-04 +-3.061667650778236e-07 +-1.626813045176374e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463139458e+00 - 1.731819894398975e+00 + 1.731830392203356e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093244341426e-01 +-2.309184225079087e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.296250738081645e-07 --1.190683048470111e-04 +-3.061667650778236e-07 +-1.731906549742561e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744539681150e+00 - 1.731874005203027e+00 + 1.224744463139458e+00 + 1.731819882852900e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519767939341e-01 +-2.309093144275437e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463139458e+00 - 1.731819882852901e+00 + 1.731819882852900e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152469835, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186371042, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519186371042 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462699102 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694153104, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0038163906638698, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8163906638698 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738741097e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769306223e+00 1.731993073507874e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.109602862259771e-07 --1.731906549735651e-04 +-1.109602862259373e-07 +-1.731906549742313e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1035,100 +1035,100 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03240190722064065 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.062093512591191e-07 --1.731906185369348e-04 +-3.062093512593247e-07 +-1.731906185376009e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463096872e+00 1.731819882889336e+00 4.649436391446216e-11 3.171707341209640e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --4.082480455486690e-04 +-4.082480455492460e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082480455486691e-04 +-4.082480455492461e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.000599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463139458e+00 - 1.731819882852901e+00 + 1.731819882852900e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144275448e-01 +-2.309093144275437e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744136646006e-07 --6.927279432826337e-05 +-9.797953093181894e-08 +-5.541823546261043e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744340665045e+00 - 1.731750610058572e+00 + 1.224744365159927e+00 + 1.731764464617437e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.655386834110331e-01 +-2.586124826182295e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744136646006e-07 --7.966160502330985e-05 +-1.469692963977284e-07 +-9.559377887972422e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744340665045e+00 - 1.731740221247877e+00 + 1.224744316170162e+00 + 1.731724289074020e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.655298875512693e-01 +-2.724545226930062e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.449488273292012e-07 --1.593179325307614e-04 +-2.449488273295473e-07 +-1.555400542168654e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744218190631e+00 - 1.731660564920370e+00 + 1.731664342798683e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.001544687645858e-01 +-3.001575918079889e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.837116204969009e-07 --1.155947142265662e-04 +-2.449488273295473e-07 +-1.593200925114311e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744279427838e+00 - 1.731704288138674e+00 + 1.224744218190631e+00 + 1.731660562760388e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.828450146040167e-01 +-3.001544669790009e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744218190631e+00 - 1.731660562760389e+00 + 1.731660562760388e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842134062, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.003269240084487, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.448733474145 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661420209099e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162711946, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118876203468, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531460339115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943501253e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --4.965717580236152e-08 +-4.965717580208557e-08 -1.593201289480373e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1138,19 +1138,19 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01750170982636 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.034439038482075e-07 +-3.034439038482074e-07 -1.592470871671530e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744159652968e+00 - 1.731660635802170e+00 + 1.731660635802169e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --5.306423692942918e-04 +-5.306423692948688e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.916987208297753e-04 +-4.916987208303523e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1158,71 +1158,71 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144804164e-01 +-2.309093144804154e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.555982944397000e-08 --3.078790859738884e-05 +-5.244786355523756e-08 +-2.463032687791097e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744397537043e+00 - 1.731789094980740e+00 + 1.224744410649009e+00 + 1.731795252562458e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.462996278140983e-01 +-2.432214939802053e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.555982944397000e-08 --3.283995037521310e-05 +-7.867179533285633e-08 +-3.940792621682444e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744397537043e+00 - 1.731787042938962e+00 + 1.224744384425077e+00 + 1.731780474963119e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.462978676182569e-01 +-2.493756876333128e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.311196588879400e-07 --6.567943136486849e-05 +-1.311196588880939e-07 +-6.493322467125649e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744331977213e+00 - 1.731754203457972e+00 + 1.731754949664665e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.616873033931746e-01 +-2.616879368396353e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.833974416595501e-08 --4.849024118954111e-05 +-1.311196588880939e-07 +-6.567962705503149e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744364757128e+00 - 1.731771392648148e+00 + 1.224744331977213e+00 + 1.731754203262281e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.539931386731296e-01 +-2.616873032270545e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744331977213e+00 - 1.731754203262283e+00 + 1.731754203262281e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925010843556, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688010409814, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330039036803 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796482152001e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410310840304, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593898406691, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347711902509 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.3309387435038e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = - 1.070261967983445e-07 --6.567962705483765e-05 + 1.070261967986205e-07 +-6.567962705505970e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1231,19 +1231,19 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80340866637142 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.142507478764617e-07 --6.564951303283092e-05 +-1.142507478765147e-07 +-6.564951303305287e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744348846124e+00 - 1.731754233376305e+00 + 1.731754233376303e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = --4.626697781330394e-04 +-4.626697781336805e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.102611026036900e-04 +-5.102611026043140e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1251,71 +1251,71 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144804164e-01 +-2.309093144804154e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551305513018448e-07 --1.154546572402081e-04 +-2.041044410417254e-07 +-9.236372579216607e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744207966321e+00 - 1.731704428232097e+00 + 1.224744258992431e+00 + 1.731727519163544e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886270254044312e-01 +-2.770826858647055e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551305513018448e-07 --1.443135127022155e-04 +-3.061566615625881e-07 +-1.731756172264667e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207966321e+00 - 1.731675569376635e+00 + 1.224744156940211e+00 + 1.731646707272110e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029763580181e-01 +-3.001430436975881e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.102611026036895e-07 --2.886029763580178e-04 +-5.102611026043135e-07 +-2.781081462513824e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952835770e+00 - 1.731531279912979e+00 + 1.731541774743085e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062368202579e-01 +-3.463146326653759e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.826958269527672e-07 --2.056396314395960e-04 +-5.102611026043135e-07 +-2.886125924675142e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744080401045e+00 - 1.731614243257898e+00 + 1.224743952835770e+00 + 1.731531270296869e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174626058292785e-01 +-3.463062291273694e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952835770e+00 - 1.731531270296867e+00 + 1.731531270296869e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985491190846, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506071543212, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506071543212 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408679042059 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023669989, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275542723189, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.8127554272319 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747704935e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463096872e+00 - 1.731819882889337e+00 + 1.731819882889336e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.174596690496757e-07 --2.886125924708161e-04 +-2.174596690494219e-07 +-2.886125924674854e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1324,46 +1324,46 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7808468018366 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.103063585685688e-07 --2.884802659538171e-04 +-5.103063585677956e-07 +-2.884802659504880e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224743952790514e+00 - 1.731531402623384e+00 + 1.731531402623386e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224743952790514e+00 - 1.731531402623384e+00 + 1.731531402623386e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952790514e+00 1.731531402623386e+00 4.276623499777088e-11 1.323498155514358e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 0 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 0 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out index f3a05b222a..b6c6cc1b7c 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_0.out @@ -30,49 +30,49 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 - 8.533232435357683e-25 + 9.654250432771864e-25 + 6.826585948286147e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.188969423061617e-06 +-9.511755374456009e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 --1.224255324051406e-14 + 1.448137564915780e-24 +-1.469106387337067e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.188969410882862e-06 +-1.426763294532537e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.413562608192966e-24 --2.448510623022426e-14 +-2.003326869930686e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568853e+00 + 1.732050807568857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.377938834068763e-06 +-2.377938838427473e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.810171956144724e-24 --1.377287230118023e-14 + 2.413562608192966e-24 +-2.448510635540961e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568863e+00 + 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.783454125504481e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -82,7 +82,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -90,51 +90,51 @@ Using fixed-point nonlinear solver 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.377938833812368e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --2.016074428475105e-12 + 7.949194560151480e-23 +-1.612859542953986e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807566836e+00 + 1.732050807567240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.002763027735722e-04 +-8.069662335302558e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --8.501669047547002e-11 + 1.192379184022722e-22 +-1.020200201355860e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807483836e+00 + 1.732050807466833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.002762197779237e-04 +-1.198558859168393e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.987298640037870e-22 --1.700332402194777e-10 +-1.398512043990971e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807398819e+00 + 1.732050807429002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981746138087546e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.490473980028403e-22 --9.639975192593520e-11 + 1.987298640037870e-22 +-1.700333105608062e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807472453e+00 + 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.492254224646821e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -144,7 +144,7 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -152,61 +152,61 @@ Using fixed-point nonlinear solver 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.760313456268973e-09 + 1.305953438023304e-21 +-2.208250765018035e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050804638506e+00 + 1.732050805190569e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.806532979849059e-03 +-1.484859516826536e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.516264801536699e-08 + 1.958930157034957e-21 +-3.019514034987365e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050782236171e+00 + 1.732050777203679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.806510600880137e-03 +-2.128180483031468e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.264883595058261e-21 --5.032467261104088e-08 +-4.217839723859307e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050757074147e+00 + 1.732050765220422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.414868907668693e-03 +-3.414877037883311e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.448662696293695e-21 --2.934286285885705e-08 + 3.264883595058261e-21 +-5.032498390567580e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050778055956e+00 + 1.732050757073835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.610695364096074e-03 +-3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732050757073835e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -216,128 +216,128 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.512933922928683e-07 + 2.611906876046609e-20 +-7.610347138342947e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732049805780443e+00 + 1.732049996039122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.558608464041920e-02 +-2.915117884460126e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.913354829832584e-06 + 3.917860314069912e-20 +-1.189574890062628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040843719006e+00 + 1.732038861324935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.557730668812781e-02 +-4.201081246065858e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.529767190116521e-20 --1.982181904263757e-05 +-1.656308459528083e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030935254793e+00 + 1.732034193989240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.774796574093327e-02 +-6.775109700792233e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.897325392587391e-20 --1.150743491657343e-05 + 6.529767190116521e-20 +-1.982421265922294e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039249638919e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.166493150904073e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --6.774796344094283e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.497970704107743e-07 + 6.224975161338911e-22 +-3.598376563286176e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732030483064106e+00 + 1.732030573023520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.851457574280405e-02 +-6.836125293997067e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.548868170246134e-07 + 9.337462742008366e-22 +-5.458641770189984e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732030477974360e+00 + 1.732030386996999e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.851457085439451e-02 +-6.866789285110339e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.556243790334728e-21 --9.097735691382781e-07 +-9.079227540419626e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030023087608e+00 + 1.732030024938422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.928118254776658e-02 +-6.928118432454869e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.167182842751046e-21 --6.804215464676200e-07 + 1.556243790334728e-21 +-9.097736002471066e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732030252439630e+00 + 1.732030023087576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.889787799966653e-02 +-6.928118254773628e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.605212824962841e-20 --2.078448130049537e-05 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -347,22 +347,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.002872021134666013 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.986443274523972e-11 --2.078448130049537e-05 +-3.986443289852120e-11 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744871351725e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -1.224744797946763e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.340312015144033e-08 +-7.340312047193796e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.355537471461796e-05 +-8.355537471483648e-05 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -375,59 +375,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109493506663751e-08 - 1.100430537325142e-20 +-8.875948053333224e-09 + 8.803444298601133e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860296654e+00 + 1.224744862515641e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.533374356927411e-02 +-1.226683731313597e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109493506663751e-08 --2.036097495949631e-06 +-1.331392207999984e-08 +-2.443285616163469e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860296654e+00 - 1.732048771471381e+00 + 1.224744858077667e+00 + 1.732048364283261e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.533172549604818e-02 +-1.839830953550527e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.218987013327503e-08 --4.071659050519600e-06 +-2.218987013333306e-08 +-3.331283189183076e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849201719e+00 - 1.732046735909827e+00 + 1.732047476285688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.066541358952970e-02 +-3.066614085708972e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.664240259995627e-08 --2.290409165324466e-06 +-2.218987013333306e-08 +-4.071924565757829e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854749186e+00 - 1.732048517159712e+00 + 1.224744849201719e+00 + 1.732046735644311e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.299908437583247e-02 +-3.066541332871534e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849201719e+00 1.732046735644311e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0008617674146882, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296718100672, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516412065063 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446944473016e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0018264495522012, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339157011316, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60235002649086 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736063641641e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -437,65 +437,65 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -3.066541332871534e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578156197821553e-11 --1.680215696107177e-08 +-3.662524958266822e-11 +-1.344172556885741e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744849155937e+00 - 1.732046718842154e+00 + 1.224744849165094e+00 + 1.732046722202586e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.072868112179617e-02 +-3.071602756060605e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578156197821553e-11 --1.683682257534312e-08 +-5.493787437400231e-11 +-2.020418708829626e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744849155937e+00 - 1.732046718807489e+00 + 1.224744849146781e+00 + 1.732046715440124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.072868108774560e-02 +-3.074133464341295e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.156312395643106e-11 --3.367364511337233e-08 +-9.156312395667053e-11 +-3.366103943687157e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849110156e+00 - 1.732046701970666e+00 + 1.732046701983272e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.079194887895077e-02 +-3.079194889133236e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.867234296732330e-11 --2.524223424373444e-08 +-9.156312395667053e-11 +-3.367364513168677e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744849133046e+00 - 1.732046710402077e+00 + 1.224744849110156e+00 + 1.732046701970666e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.076031499209556e-02 +-3.079194887895077e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849110156e+00 1.732046701970666e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063442398059e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201472930827e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.48338628629324e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.99229058165029e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.225570702278066e-08 +-2.225570702266833e-08 -4.105598210957240e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -506,7 +506,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.0005550288725063259 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.224229387199876e-08 +-2.224229387188643e-08 -4.105598210957240e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -521,7 +521,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.020773375193562e-04 +-1.020773375195188e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -534,59 +534,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601878137720e-09 - 9.081518466703426e-22 +-8.948815025116016e-10 + 7.265214773362741e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744870272987e+00 + 1.224744870496707e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.265371779696489e-03 +-1.012296318348121e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601878137720e-09 --1.386642014484911e-08 +-1.342322253767403e-09 +-1.663968600358634e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870272987e+00 - 1.732050793702457e+00 + 1.224744870049267e+00 + 1.732050790929191e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.265357923406574e-03 +-1.518431167678358e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203756275440e-09 --2.773253660481969e-08 +-2.237203756279004e-09 +-2.269021572438502e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744869154385e+00 - 1.732050779836340e+00 + 1.732050784878661e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.530729660677672e-03 +-2.530734695631283e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.677902817206580e-09 --1.559960881018260e-08 +-2.237203756279004e-09 +-2.773268829228769e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744869713686e+00 - 1.732050791969268e+00 + 1.224744869154385e+00 + 1.732050779836189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.898047263317420e-03 +-2.530729660526236e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744869154385e+00 1.732050779836189e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540432388135551, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700762489, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29095981789821e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -596,59 +596,59 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -2.530729660526236e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203756275440e-08 --5.546537596137210e-07 +-1.789763005023203e-08 +-4.437230076909768e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744846782348e+00 - 1.732050225182429e+00 + 1.224744851256755e+00 + 1.732050336113181e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.784069877153166e-02 +-2.277828755391020e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203756275440e-08 --6.101777082223853e-06 +-2.684644507534804e-08 +-7.321995279385918e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744846782348e+00 - 1.732044678059107e+00 + 1.224744842307940e+00 + 1.732043457840909e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.783524080315646e-02 +-3.289678093258946e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.474407512550880e-08 --1.220116174559209e-05 +-4.474407512558008e-08 +-1.018412506653703e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744824410310e+00 - 1.732038578674443e+00 + 1.732040595711122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.314493930090503e-02 +-5.314689444682875e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.355805634413160e-08 --7.071600927138505e-06 +-4.474407512558008e-08 +-1.220233818522397e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744835596329e+00 - 1.732043708235262e+00 + 1.224744824410310e+00 + 1.732038577498004e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.049150357297335e-02 +-5.314493816056257e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744824410310e+00 1.732038577498004e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411416504109, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274959843945, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35987183598513 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967336947e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894930972153, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499133733267, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948837495 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217695039555e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -658,65 +658,65 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -5.314493816056257e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754802931878594e-08 --1.434244221264714e-05 +-2.203842345506386e-08 +-1.147395377011771e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744796862281e+00 - 1.732024235055791e+00 + 1.224744802371887e+00 + 1.732027103544233e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.431018939133592e-02 +-7.807659312518656e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754802931878594e-08 --2.275313625597360e-05 +-3.305763518259579e-08 +-2.730354247218855e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744796862281e+00 - 1.732015824361748e+00 + 1.224744791352675e+00 + 1.732011273955531e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.430218808832879e-02 +-9.053447910444118e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.509605863757188e-08 --4.550195382309451e-05 +-5.509605863765966e-08 +-4.244364016491264e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769314251e+00 - 1.731993075544181e+00 + 1.731996133857839e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662067092417e-01 +-1.154690611329795e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.132204397817891e-08 --3.097409539998531e-05 +-5.509605863765966e-08 +-4.550400228451338e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744783088266e+00 - 1.732007603402604e+00 + 1.224744769314251e+00 + 1.731993073495719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.988638018737704e-02 +-1.154662047973445e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769314251e+00 1.731993073495719e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368285859317075, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554424944392, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.5503586388845 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584440896429e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161010885, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754570449, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379254201 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296533912e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.019973461023578e-07 +-1.019973461020535e-07 -5.773407315801116e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -727,7 +727,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.00792134563849221 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.020105221542704e-07 +-1.020105221539660e-07 -5.773407315801116e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = @@ -767,64 +767,64 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123727066591201e-08 --3.463986143920332e-05 +-4.898981653272961e-08 +-2.771188915136264e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744708076981e+00 - 1.731958433634280e+00 + 1.224744720324435e+00 + 1.731965361606568e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.501073542326848e-01 +-1.431785753744280e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123727066591201e-08 --4.503220626980540e-05 +-7.348472479909439e-08 +-5.403840048673152e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744708076981e+00 - 1.731948041289449e+00 + 1.224744695829527e+00 + 1.731939035095232e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.500978625577340e-01 +-1.570250477156275e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.224745413318240e-07 --9.005871753464030e-05 +-8.627974321579390e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744646839710e+00 - 1.731903014778185e+00 + 1.731906793752503e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.847363041597761e-01 +-1.847396800402556e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.185590599886801e-08 --6.364909523824273e-05 +-1.224745413318240e-07 +-9.006129425387480e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744677458345e+00 - 1.731929424400481e+00 + 1.224744646839710e+00 + 1.731903012201465e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.674198337554278e-01 +-1.847363018579069e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744646839710e+00 1.731903012201465e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453926307, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275769254, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126282091 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402038998e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859601897, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305217821, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175363036 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264578037e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769381067e+00 1.731993073495719e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.225413052809458e-07 --9.006129425404019e-05 +-9.006129425381815e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -834,8 +834,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.01237684727410377 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.225968904271938e-07 --9.006129425404019e-05 +-1.225968904271325e-07 +-9.006129425381815e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744646784176e+00 @@ -844,12 +844,12 @@ Using fixed-point nonlinear solver -3.265985529176539e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.334533541976291e-08 +-7.334533529155447e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.876794601212448e-04 +-2.876794601211573e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -862,65 +862,65 @@ Using fixed-point nonlinear solver 0.000000000000000e+00 -1.154662047639369e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726134949928e-08 --1.539549396852492e-05 +-3.068580907959010e-08 +-1.231639517481993e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744731023805e+00 - 1.731977678001751e+00 + 1.224744738695258e+00 + 1.731980757100544e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.308614113140515e-01 +-1.277822549924423e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726134949928e-08 --1.744818817520686e-05 +-4.602871361938515e-08 +-2.093780280793098e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744731023805e+00 - 1.731975625307544e+00 + 1.224744723352353e+00 + 1.731972135692911e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.308595137122957e-01 +-1.339383506672583e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.671452269899857e-08 --3.489587032327884e-05 +-7.671452269897526e-08 +-3.414944298374845e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744692666544e+00 - 1.731958177625396e+00 + 1.731958924052735e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.462542534469867e-01 +-1.462549368425505e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.753589202424893e-08 --2.540233606525751e-05 +-7.671452269897526e-08 +-3.489610258949583e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744711845175e+00 - 1.731967671159654e+00 + 1.224744692666544e+00 + 1.731958177393130e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.385574197546117e-01 +-1.462542532343341e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744692666544e+00 1.731958177393130e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0022358686600482, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643391364627, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912717617351 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718289296315e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0037541333082359, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396797590646, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148799096492 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155548425051e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769381067e+00 1.731993073495719e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --7.668880292844629e-08 +-7.668880292849122e-08 -3.489610258955445e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -931,7 +931,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.004779612504313948 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --7.668243400246484e-08 +-7.668243400250977e-08 -3.489610258955445e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -946,7 +946,7 @@ Using fixed-point nonlinear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.062014401933874e-04 +-3.062014401933223e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -961,64 +961,64 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531007200966936e-07 --5.773310238196840e-05 +-1.224805760773288e-07 +-4.618648190557473e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744616280347e+00 - 1.731935340393337e+00 + 1.224744646900491e+00 + 1.731946887013813e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050913584396e-01 +-1.616559000468173e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531007200966936e-07 --8.660254567921970e-05 +-1.837208641159932e-07 +-1.039219943205224e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616280347e+00 - 1.731906470950040e+00 + 1.224744585660203e+00 + 1.731889151501399e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791088594188e-01 +-1.847239501786263e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.062014401933871e-07 --1.731791088594187e-04 +-3.062014401933220e-07 +-1.626813044763088e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463179626e+00 - 1.731819894386860e+00 + 1.731830392191243e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093244035584e-01 +-2.309184224773265e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.296510801450403e-07 --1.190683048155514e-04 +-3.062014401933220e-07 +-1.731906549345830e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744539729987e+00 - 1.731874005190904e+00 + 1.224744463179626e+00 + 1.731819882840785e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519767588065e-01 +-2.309093143969601e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463179626e+00 1.731819882840785e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152431863, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186334588, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519186334588 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462790385 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694524711, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639066743723, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639066743723 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769776e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769381067e+00 1.731993073495719e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --3.061215494710802e-07 --1.731906549340412e-04 +-3.061215494712020e-07 +-1.731906549344853e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1028,8 +1028,8 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02376157169297406 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.061609969223611e-07 --1.731906549340412e-04 +-3.061609969225748e-07 +-1.731906549344853e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744463220070e+00 @@ -1049,12 +1049,12 @@ Using fixed-point nonlinear solver -4.082481543555182e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --1.618231720217610e-10 +-1.618233643436708e-10 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082483161786903e-04 +-4.082483161788827e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.000599999999999999 @@ -1064,68 +1064,68 @@ Using fixed-point nonlinear solver 1.731819882840785e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143969606e-01 +-2.309093143969601e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744948536070e-07 --6.927279431908808e-05 +-9.797959588293173e-08 +-5.541823545527037e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744340705132e+00 - 1.731750610046466e+00 + 1.224744365200030e+00 + 1.731764464605329e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.655386833807395e-01 +-2.586124825878783e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224744948536070e-07 --7.966160501422177e-05 +-1.469693938243976e-07 +-9.559377886881872e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744340705132e+00 - 1.731740221235771e+00 + 1.224744316210233e+00 + 1.731724289061916e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.655298875209755e-01 +-2.724545226627711e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.449489897072139e-07 --1.593179325125851e-04 +-2.449489897073293e-07 +-1.555400541986577e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744218230637e+00 - 1.731660564908273e+00 + 1.731664342786586e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.001544687345825e-01 +-3.001575917779862e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.837117422804104e-07 --1.155947142129013e-04 +-2.449489897073293e-07 +-1.593200924932552e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744279467884e+00 - 1.731704288126572e+00 + 1.224744218230637e+00 + 1.731660562748291e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.828450145738681e-01 +-3.001544669489981e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744218230637e+00 - 1.731660562748292e+00 + 1.731660562748291e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842196238, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008508389, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873347513982 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661419770007e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162447825, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875949912, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459916521 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.8823094350257e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463220070e+00 1.731819882840785e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.449893555688925e-07 --1.593200924934202e-04 +-2.449893555688005e-07 +-1.593200924931981e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1135,22 +1135,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02187885806555057 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.450607205390962e-07 --1.593200924934202e-04 +-2.450607205390655e-07 +-1.593200924931981e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744218159349e+00 - 1.731660562748292e+00 + 1.731660562748291e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -5.307224627226973e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.342091781376894e-08 +-7.342091794199534e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.918034758117497e-04 +-4.918034758118982e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1161,67 +1161,67 @@ Using fixed-point nonlinear solver 1.731819882840785e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143767389e-01 +-2.309093143767386e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557379677489993e-08 --3.078790858356518e-05 +-5.245903741993580e-08 +-2.463032686685212e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744397646273e+00 - 1.731789094932202e+00 + 1.224744410761032e+00 + 1.731795252513918e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.462996277178482e-01 +-2.432214938824699e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557379677489993e-08 --3.283995036237976e-05 +-7.868855612990367e-08 +-3.940792620142443e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744397646273e+00 - 1.731787042890423e+00 + 1.224744384531514e+00 + 1.731780474914583e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.462978675220057e-01 +-2.493756875385477e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.311475935497999e-07 --6.567943133920150e-05 +-1.311475935498395e-07 +-6.493322464522962e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744332072476e+00 - 1.731754203409446e+00 + 1.731754949616140e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.616873033043496e-01 +-2.616879367508110e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.836069516234990e-08 --4.849024116991962e-05 +-1.311475935498395e-07 +-6.567962702936476e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744364859375e+00 - 1.731771392599615e+00 + 1.224744332072476e+00 + 1.731754203213755e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.539931385805918e-01 +-2.616873031382301e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744332072476e+00 - 1.731754203213756e+00 + 1.731754203213755e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012601411, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688012097355, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330045365081 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473304431e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410312726446, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593900217388, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347712581521 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093853621378e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463220070e+00 1.731819882840785e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.311218401939306e-07 +-1.311218401938610e-07 -6.567962702930252e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point @@ -1232,22 +1232,22 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.009003158261572643 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.311224885431367e-07 +-1.311224885431899e-07 -6.567962702930252e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744332097581e+00 - 1.731754203213756e+00 + 1.731754203213755e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -4.626812033999881e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = - 2.983475221381205e-08 + 2.983475195737312e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.103254314792387e-04 +-5.103254314794455e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1258,68 +1258,68 @@ Using fixed-point nonlinear solver 1.731819882840785e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143767389e-01 +-2.309093143767386e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551627157396191e-07 --1.154546571883694e-04 +-2.041301725917781e-07 +-9.236372575069539e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744208057354e+00 - 1.731704428183597e+00 + 1.224744259089897e+00 + 1.731727519115034e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886270253184979e-01 +-2.770826857752242e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551627157396191e-07 --1.443135126592488e-04 +-3.061952588876671e-07 +-1.731756171749072e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744208057354e+00 - 1.731675569328126e+00 + 1.224744157024811e+00 + 1.731646707223610e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029762720768e-01 +-3.001430436151944e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103254314792383e-07 --2.886029762720766e-04 +-5.103254314794451e-07 +-2.781081461622144e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952894638e+00 - 1.731531279864513e+00 + 1.731541774694622e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062367520505e-01 +-3.463146325971717e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.827440736094287e-07 --2.056396313718163e-04 +-5.103254314794451e-07 +-2.886125923815759e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744080475996e+00 - 1.731614243209413e+00 + 1.224743952894638e+00 + 1.731531270248403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174626057522073e-01 +-3.463062290591625e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952894638e+00 - 1.731531270248400e+00 + 1.731531270248403e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985490499306, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070879333, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070879333 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678698962 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162022823251, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275541910321, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275541910321 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747819679e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463220070e+00 1.731819882840785e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --5.102454898460238e-07 --2.886125923851068e-04 +-5.102454898460147e-07 +-2.886125923815541e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] @@ -1329,35 +1329,35 @@ Using fixed-point nonlinear solver [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.03959595686321129 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.103111738995483e-07 --2.886125923851068e-04 +-5.103111738987727e-07 +-2.886125923815541e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224743952908896e+00 - 1.731531270248400e+00 + 1.731531270248403e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224743952908896e+00 - 1.731531270248400e+00 + 1.731531270248403e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952908896e+00 1.731531270248403e+00 7.561573589498494e-11 2.516720165601782e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out index 008411e42c..b7a135a663 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_0.out @@ -31,49 +31,49 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 - 8.533232435357683e-25 + 9.654250432771864e-25 + 6.826585948286147e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.188969423061617e-06 +-9.511755374456009e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 --1.224255324051406e-14 + 1.448137564915780e-24 +-1.469106387337067e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.188969410882862e-06 +-1.426763294532537e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.413562608192966e-24 --2.448510623022426e-14 +-2.003326869930686e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568853e+00 + 1.732050807568857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.377938834068763e-06 +-2.377938838427473e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.810171956144724e-24 --1.377287230118023e-14 + 2.413562608192966e-24 +-2.448510635540961e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568863e+00 + 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.783454125504481e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -83,7 +83,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -91,51 +91,51 @@ Using GMRES iterative linear solver 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.377938833812368e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --2.016074428475105e-12 + 7.949194560151480e-23 +-1.612859542953986e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807566836e+00 + 1.732050807567240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.002763027735722e-04 +-8.069662335302558e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --8.501669047547002e-11 + 1.192379184022722e-22 +-1.020200201355860e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807483836e+00 + 1.732050807466833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.002762197779237e-04 +-1.198558859168393e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.987298640037870e-22 --1.700332402194777e-10 +-1.398512043990971e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807398819e+00 + 1.732050807429002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981746138087546e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.490473980028403e-22 --9.639975192593520e-11 + 1.987298640037870e-22 +-1.700333105608062e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807472453e+00 + 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.492254224646821e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -145,7 +145,7 @@ Using GMRES iterative linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -153,61 +153,61 @@ Using GMRES iterative linear solver 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.760313456268973e-09 + 1.305953438023304e-21 +-2.208250765018035e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050804638506e+00 + 1.732050805190569e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.806532979849059e-03 +-1.484859516826536e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.516264801536699e-08 + 1.958930157034957e-21 +-3.019514034987365e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050782236171e+00 + 1.732050777203679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.806510600880137e-03 +-2.128180483031468e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.264883595058261e-21 --5.032467261104088e-08 +-4.217839723859307e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050757074147e+00 + 1.732050765220422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.414868907668693e-03 +-3.414877037883311e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.448662696293695e-21 --2.934286285885705e-08 + 3.264883595058261e-21 +-5.032498390567580e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050778055956e+00 + 1.732050757073835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.610695364096074e-03 +-3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732050757073835e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -217,128 +217,128 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.512933922928683e-07 + 2.611906876046609e-20 +-7.610347138342947e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732049805780443e+00 + 1.732049996039122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.558608464041920e-02 +-2.915117884460126e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.913354829832584e-06 + 3.917860314069912e-20 +-1.189574890062628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040843719006e+00 + 1.732038861324935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.557730668812781e-02 +-4.201081246065858e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.529767190116521e-20 --1.982181904263757e-05 +-1.656308459528083e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030935254793e+00 + 1.732034193989240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.774796574093327e-02 +-6.775109700792233e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.897325392587391e-20 --1.150743491657343e-05 + 6.529767190116521e-20 +-1.982421265922294e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039249638919e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.166493150904073e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --6.774796344094283e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.497970704107743e-07 + 6.224975161338911e-22 +-3.598376563286176e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732030483064106e+00 + 1.732030573023520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.851457574280405e-02 +-6.836125293997067e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.548868170246134e-07 + 9.337462742008366e-22 +-5.458641770189984e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732030477974360e+00 + 1.732030386996999e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.851457085439451e-02 +-6.866789285110339e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.556243790334728e-21 --9.097735691382781e-07 +-9.079227540419626e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030023087608e+00 + 1.732030024938422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.928118254776658e-02 +-6.928118432454869e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.167182842751046e-21 --6.804215464676200e-07 + 1.556243790334728e-21 +-9.097736002471066e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732030252439630e+00 + 1.732030023087576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.889787799966653e-02 +-6.928118254773628e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.605212824962841e-20 --2.078448130049537e-05 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -361,22 +361,22 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.508411005976134e-11 --2.078448130049536e-05 +-3.508411021904877e-11 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744871356505e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -1.224744797941982e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.341268039213197e-08 +-7.341268071262960e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.355538123263796e-05 +-8.355538123285649e-05 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -389,59 +389,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109493593213550e-08 - 1.100430537325142e-20 +-8.875948745731615e-09 + 8.803444298601133e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860296653e+00 + 1.224744862515640e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.533374356927456e-02 +-1.226683731313633e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109493593213550e-08 --2.036097495949691e-06 +-1.331392311859742e-08 +-2.443285616163542e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860296653e+00 - 1.732048771471381e+00 + 1.224744858077666e+00 + 1.732048364283261e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.533172549604863e-02 +-1.839830953550573e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.218987186427100e-08 --4.071659050519721e-06 +-2.218987186432904e-08 +-3.331283189183153e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849201717e+00 - 1.732046735909827e+00 + 1.732047476285688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.066541358953056e-02 +-3.066614085709058e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.664240389820325e-08 --2.290409165324534e-06 +-2.218987186432904e-08 +-4.071924565757939e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854749185e+00 - 1.732048517159712e+00 + 1.224744849201717e+00 + 1.732046735644311e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.299908437583315e-02 +-3.066541332871620e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849201717e+00 1.732046735644311e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767413744971, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296717195172, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516411724099 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446945579512e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954919482, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00175339156722703, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60235001562323 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736069692788e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -451,65 +451,65 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -3.066541332871620e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578156554956133e-11 --1.680215696107224e-08 +-3.662525243974486e-11 +-1.344172556885779e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744849155935e+00 - 1.732046718842154e+00 + 1.224744849165092e+00 + 1.732046722202586e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.072868112179708e-02 +-3.071602756060691e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578156554956133e-11 --1.683682257534361e-08 +-5.493787865961728e-11 +-2.020418708829683e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744849155935e+00 - 1.732046718807489e+00 + 1.224744849146779e+00 + 1.732046715440124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.072868108774650e-02 +-3.074133464341381e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.156313109912266e-11 --3.367364511337333e-08 +-9.156313109936215e-11 +-3.366103943687252e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849110154e+00 - 1.732046701970666e+00 + 1.732046701983272e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.079194887895167e-02 +-3.079194889133327e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.867234832434200e-11 --2.524223424373518e-08 +-9.156313109936215e-11 +-3.367364513168772e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744849133045e+00 - 1.732046710402077e+00 + 1.224744849110154e+00 + 1.732046701970666e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.076031499209642e-02 +-3.079194887895167e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849110154e+00 1.732046701970666e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063442727009e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201473323099e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.0598258553317e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.225570544846217e-08 +-2.225570544834984e-08 -4.105598210957240e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -533,8 +533,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.224137309380555e-08 --4.105598210957241e-06 +-2.224137309369321e-08 +-4.105598210957239e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744849150216e+00 @@ -548,7 +548,7 @@ Using GMRES iterative linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.020773437202847e-04 +-1.020773437204473e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -561,59 +561,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601946089828e-09 - 9.081518466703426e-22 +-8.948815568732881e-10 + 7.265214773362741e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744870272987e+00 + 1.224744870496707e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.265371779696489e-03 +-1.012296318348121e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601946089828e-09 --1.386642014484911e-08 +-1.342322335309932e-09 +-1.663968600358634e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870272987e+00 - 1.732050793702457e+00 + 1.224744870049267e+00 + 1.732050790929191e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.265357923406574e-03 +-1.518431167678358e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203892179656e-09 --2.773253660481969e-08 +-2.237203892183220e-09 +-2.269021572438502e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744869154385e+00 - 1.732050779836340e+00 + 1.732050784878661e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.530729660677763e-03 +-2.530734695631374e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.677902919134742e-09 --1.559960881018254e-08 +-2.237203892183220e-09 +-2.773268829228800e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744869713686e+00 - 1.732050791969268e+00 + 1.224744869154385e+00 + 1.732050779836189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.898047263317420e-03 +-2.530729660526327e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744869154385e+00 1.732050779836189e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540434256346169, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000640495700580718, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06434270796446e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29096994816547e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -623,59 +623,59 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -2.530729660526327e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203892179656e-08 --5.546537596137408e-07 +-1.789763113746576e-08 +-4.437230076909927e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744846782346e+00 - 1.732050225182429e+00 + 1.224744851256754e+00 + 1.732050336113181e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.784069877153243e-02 +-2.277828755391087e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203892179656e-08 --6.101777082224022e-06 +-2.684644670619864e-08 +-7.321995279386135e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744846782346e+00 - 1.732044678059107e+00 + 1.224744842307938e+00 + 1.732043457840909e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.783524080315723e-02 +-3.289678093259032e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.474407784359311e-08 --1.220116174559243e-05 +-4.474407784366440e-08 +-1.018412506653729e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744824410307e+00 - 1.732038578674443e+00 + 1.732040595711122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.314493930090648e-02 +-5.314689444683020e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.355805838269484e-08 --7.071600927138702e-06 +-4.474407784366440e-08 +-1.220233818522431e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744835596327e+00 - 1.732043708235262e+00 + 1.224744824410307e+00 + 1.732038577498004e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.049150357297448e-02 +-5.314493816056402e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744824410307e+00 1.732038577498004e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00153411224445903, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274775468067, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35986762970785 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967502921e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894930863985, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499133629426, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948600595 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217696076895e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -685,65 +685,65 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -5.314493816056402e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754803099225592e-08 --1.434244221264753e-05 +-2.203842479383985e-08 +-1.147395377011802e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744796862276e+00 - 1.732024235055791e+00 + 1.224744802371882e+00 + 1.732027103544233e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.431018939133814e-02 +-7.807659312518864e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754803099225592e-08 --2.275313625597420e-05 +-3.305763719075977e-08 +-2.730354247218928e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744796862276e+00 - 1.732015824361748e+00 + 1.224744791352670e+00 + 1.732011273955531e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.430218808833101e-02 +-9.053447910444370e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.509606198451184e-08 --4.550195382309571e-05 +-5.509606198459962e-08 +-4.244364016491384e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769314245e+00 - 1.731993075544181e+00 + 1.731996133857839e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662067092448e-01 +-1.154690611329826e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.132204648838388e-08 --3.097409539998613e-05 +-5.509606198459962e-08 +-4.550400228451461e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744783088261e+00 - 1.732007603402604e+00 + 1.224744769314245e+00 + 1.731993073495719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.988638018737972e-02 +-1.154662047973476e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769314245e+00 1.731993073495719e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.003682860787673, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554635616608, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.5503625420419 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441339031e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161271812, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0053705775482094, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.95015379718289 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.019973438727925e-07 +-1.019973438724882e-07 -5.773407315801116e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -767,7 +767,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.019971876484307e-07 +-1.019971876481264e-07 -5.773407315801114e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = @@ -807,64 +807,64 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123727866601022e-08 --3.463986143920425e-05 +-4.898982293280819e-08 +-2.771188915136338e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744708076967e+00 - 1.731958433634280e+00 + 1.224744720324422e+00 + 1.731965361606568e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.501073542326919e-01 +-1.431785753744343e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123727866601022e-08 --4.503220626980752e-05 +-7.348473439921227e-08 +-5.403840048673409e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744708076967e+00 - 1.731948041289449e+00 + 1.224744695829511e+00 + 1.731939035095232e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.500978625577411e-01 +-1.570250477156354e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.224745573320204e-07 --9.005871753464456e-05 +-8.627974321579771e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744646839688e+00 - 1.731903014778185e+00 + 1.731906793752503e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.847363041597872e-01 +-1.847396800402668e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.185591799901534e-08 --6.364909523824547e-05 +-1.224745573320204e-07 +-9.006129425387908e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744677458327e+00 - 1.731929424400481e+00 + 1.224744646839688e+00 + 1.731903012201465e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.674198337554370e-01 +-1.847363018579180e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744646839688e+00 1.731903012201465e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453850899, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275696863, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126161438 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402924224e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859454475, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305076296, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175127161 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264716353e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769394401e+00 1.731993073495719e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.225546493972678e-07 --9.006129425404019e-05 +-9.006129425381815e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -887,8 +887,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.225892030564681e-07 --9.006129425404016e-05 +-1.225892030564153e-07 +-9.006129425381815e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744646805198e+00 @@ -897,12 +897,12 @@ Using GMRES iterative linear solver -3.265985529120480e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.338737949213151e-08 +-7.338737936392307e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.876794972687882e-04 +-2.876794972687008e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -915,66 +915,66 @@ Using GMRES iterative linear solver 0.000000000000000e+00 -1.154662047572696e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726630250508e-08 --1.539549396763594e-05 +-3.068581304199474e-08 +-1.231639517410875e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744731037135e+00 - 1.731977678001752e+00 + 1.224744738708588e+00 + 1.731980757100545e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.308614113073874e-01 +-1.277822549857776e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726630250508e-08 --1.744818817431832e-05 +-4.602871956299210e-08 +-2.093780280686474e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744731037135e+00 - 1.731975625307545e+00 + 1.224744723365682e+00 + 1.731972135692912e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.308595137056316e-01 +-1.339383506605948e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.671453260501016e-08 --3.489587032150175e-05 +-7.671453260498684e-08 +-3.414944298197119e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744692679869e+00 - 1.731958177625398e+00 + 1.731958924052737e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.462542534403258e-01 +-1.462549368358897e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.753589945375762e-08 --2.540233606392454e-05 +-7.671453260498684e-08 +-3.489610258771874e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744711858502e+00 - 1.731967671159655e+00 + 1.224744692679869e+00 + 1.731958177393131e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.385574197479492e-01 +-1.462542532276732e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744692679869e+00 - 1.731958177393132e+00 + 1.731958177393131e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586866744231, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643392074462, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912720279232 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718285976718e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413329830301, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396796637089, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148798738908 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.2815555879879e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769394401e+00 1.731993073495719e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --7.668879455498324e-08 --3.489610258755604e-05 +-7.668879455502817e-08 +-3.489610258777809e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -997,22 +997,22 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --7.667444862635244e-08 --3.489610258755604e-05 +-7.667444862645002e-08 +-3.489610258777809e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744692719953e+00 - 1.731958177393132e+00 + 1.731958177393131e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -2.585572192065578e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = - 2.983261992639921e-08 + 2.983261979819485e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.062014863695992e-04 +-3.062014863696282e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1027,64 +1027,64 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531007431847995e-07 --5.773310237863475e-05 +-1.224805945478512e-07 +-4.618648190290780e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744616293658e+00 - 1.731935340393341e+00 + 1.224744646913807e+00 + 1.731946887013816e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050913517868e-01 +-1.616559000401619e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531007431847995e-07 --8.660254567589331e-05 +-1.837208918217768e-07 +-1.039219943165309e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616293658e+00 - 1.731906470950043e+00 + 1.224744585673510e+00 + 1.731889151501403e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791088527659e-01 +-1.847239501719763e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.062014863695989e-07 --1.731791088527658e-04 +-3.062014863696279e-07 +-1.626813044696532e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463192915e+00 - 1.731819894386866e+00 + 1.731830392191249e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093243969199e-01 +-2.309184224706880e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.296511147771992e-07 --1.190683048105590e-04 +-3.062014863696279e-07 +-1.731906549279303e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744539743287e+00 - 1.731874005190909e+00 + 1.224744463192915e+00 + 1.731819882840791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519767521610e-01 +-2.309093143903215e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463192915e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999152099744, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227519186015755, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27519186015755 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261463144475 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694911362, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639067114908, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639067114908 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738769776e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769394401e+00 1.731993073495719e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --3.061215737819039e-07 --1.731906549273798e-04 +-3.061215737820697e-07 +-1.731906549278239e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1107,104 +1107,104 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.061196623699729e-07 --1.731906549273799e-04 +-3.061196623702440e-07 +-1.731906549278239e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463274739e+00 1.731819882840791e+00 1.313724684592898e-10 1.682787242884842e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_0(:) = -4.082481543372951e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.711585589775173e-10 +-2.711588154067304e-10 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082484254958542e-04 +-4.082484254961106e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.000599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463192915e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143903221e-01 +-2.309093143903215e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224745276487561e-07 --6.927279431709655e-05 +-9.797962211906644e-08 +-5.541823545367711e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744340718387e+00 - 1.731750610046475e+00 + 1.224744365213293e+00 + 1.731764464605338e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.655386833741192e-01 +-2.586124825812542e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224745276487561e-07 --7.966160501223566e-05 +-1.469694331785996e-07 +-9.559377886643533e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744340718387e+00 - 1.731740221235780e+00 + 1.224744316223482e+00 + 1.731724289061925e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.655298875143551e-01 +-2.724545226561542e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.449490552975122e-07 --1.593179325086129e-04 +-2.449490552976661e-07 +-1.555400541946834e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744218243860e+00 - 1.731660564908283e+00 + 1.731664342786597e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.001544687279799e-01 +-3.001575917713835e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.837117914731342e-07 --1.155947142099201e-04 +-2.449490552976661e-07 +-1.593200924892829e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744279481123e+00 - 1.731704288126582e+00 + 1.224744218243860e+00 + 1.731660562748302e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.828450145672566e-01 +-3.001544669423954e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744218243860e+00 1.731660562748302e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842578879, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924008875724, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.44873348126208 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661418442034e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162176685, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875689618, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459482698 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943502569e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.450307496799214e-07 --1.593200924894234e-04 +-2.450307496797987e-07 +-1.593200924892013e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1227,8 +1227,8 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.450641877191407e-07 --1.593200924894233e-04 +-2.450641877170967e-07 +-1.593200924892013e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744218210551e+00 @@ -1237,12 +1237,12 @@ Using GMRES iterative linear solver -5.307224627005096e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.352331727944795e-08 +-7.352331740767435e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.918035803971732e-04 +-4.918035803973422e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1250,70 +1250,70 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143494101e-01 +-2.309093143494096e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557381071962307e-08 --3.078790857992133e-05 +-5.245904857571649e-08 +-2.463032686393702e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744397700928e+00 - 1.731789094932212e+00 + 1.224744410815690e+00 + 1.731795252513928e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.462996276905294e-01 +-2.432214938551493e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557381071962307e-08 --3.283995035873724e-05 +-7.868857286357473e-08 +-3.940792619705346e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744397700928e+00 - 1.731787042890433e+00 + 1.224744384586166e+00 + 1.731780474914594e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.462978674946871e-01 +-2.493756875112308e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.311476214392461e-07 --6.567943133191653e-05 +-1.311476214392912e-07 +-6.493322463794407e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744332127118e+00 - 1.731754203409460e+00 + 1.731754949616154e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.616873032770408e-01 +-2.616879367235022e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.836071607943461e-08 --4.849024116445538e-05 +-1.311476214392912e-07 +-6.567962702207973e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744364914023e+00 - 1.731771392599627e+00 + 1.224744332127118e+00 + 1.731754203213769e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.539931385532779e-01 +-2.616873031109212e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744332127118e+00 - 1.731754203213770e+00 + 1.731754203213769e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925014330655, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00197688013757429, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330051590359 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796464451287e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410312096403, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593899612547, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347712354705 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093860537893e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.311218183116168e-07 +-1.311218183115391e-07 -6.567962702197505e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1337,22 +1337,22 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.311073296145035e-07 --6.567962702197506e-05 +-1.311073296145487e-07 +-6.567962702197505e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744332167409e+00 - 1.731754203213770e+00 + 1.731754203213769e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -4.626812033736085e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = - 2.969510242333770e-08 + 2.969510216689876e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.103255594996342e-04 +-5.103255594998257e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1360,71 +1360,71 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143494101e-01 +-2.309093143494096e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551627797498169e-07 --1.154546571747049e-04 +-2.041302237999301e-07 +-9.236372573976377e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744208111959e+00 - 1.731704428183617e+00 + 1.224744259144515e+00 + 1.731727519115052e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886270252912123e-01 +-2.770826857479299e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551627797498169e-07 --1.443135126456060e-04 +-3.061953356998952e-07 +-1.731756171585358e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744208111959e+00 - 1.731675569328146e+00 + 1.224744157079403e+00 + 1.731646707223633e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029762447912e-01 +-3.001430435879173e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103255594996338e-07 --2.886029762447910e-04 +-5.103255594998252e-07 +-2.781081461349208e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952949179e+00 - 1.731531279864547e+00 + 1.731541774694656e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062367248070e-01 +-3.463146325699282e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.827441696247253e-07 --2.056396313513440e-04 +-5.103255594998252e-07 +-2.886125923542900e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744080530569e+00 - 1.731614243209440e+00 + 1.224743952949179e+00 + 1.731531270248437e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174626057249429e-01 +-3.463062290319191e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952949179e+00 - 1.731531270248434e+00 + 1.731531270248437e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0023698548978112, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070189875, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070189875 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393408678698961 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162023070953, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275542148115, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275542148115 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747847345e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463274739e+00 - 1.731819882840792e+00 + 1.731819882840791e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --5.102455826654296e-07 --2.886125923575733e-04 +-5.102455826654286e-07 +-2.886125923542426e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1447,46 +1447,46 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.102400803480052e-07 --2.886125923575733e-04 +-5.102400803437283e-07 +-2.886125923542425e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224743953034659e+00 - 1.731531270248434e+00 + 1.731531270248437e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224743953034659e+00 - 1.731531270248434e+00 + 1.731531270248437e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743953034659e+00 1.731531270248437e+00 2.013786915000537e-10 2.513322883146429e-11 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 27 -Inner stepper failures = 0 -NLS iters = 18 -NLS fails = 0 -NLS iters per step = 6 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 18 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 18 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 18 -LS iters per NLS iter = 1 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 27 +Inner stepper failures = 0 +NLS iters = 18 +NLS fails = 0 +NLS iters per step = 6 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 18 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 18 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 18 +LS iters per NLS iter = 1 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out index 40db0db5cf..2c251582f3 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_5_1_1.out @@ -31,49 +31,49 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718004e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.237421755718e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 - 8.533232435357683e-25 + 9.654250432771864e-25 + 6.826585948286147e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.188969423061617e-06 +-9.511755374456009e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.2356132633577e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.206781304096483e-24 --1.224255324051406e-14 + 1.448137564915780e-24 +-1.469106387337067e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568865e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.188969410882862e-06 +-1.426763294532537e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.413562608192966e-24 --2.448510623022426e-14 +-2.003326869930686e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568853e+00 + 1.732050807568857e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.377938834068763e-06 +-2.377938838427473e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.54451657919713e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.810171956144724e-24 --1.377287230118023e-14 + 2.413562608192966e-24 +-2.448510635540961e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568863e+00 + 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.783454125504481e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -83,7 +83,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.76630071371068e-06, h_cfl = 2.0593554389295e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.69564868516226e-06, h_cfl = 1.02967771946475e+22 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.86171212467789e-19 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.6026480174681e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 2.0593554389295e-08, h = 1.69564868516226e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.0593554389295e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -91,51 +91,51 @@ Using dense direct linear solver 1.732050807568853e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.377938833812368e-06 +-2.377938834068763e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.988530284541974e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.98853028454197e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --2.016074428475105e-12 + 7.949194560151480e-23 +-1.612859542953986e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807566836e+00 + 1.732050807567240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.002763027735722e-04 +-8.069662335302558e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.037982765486648e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.03798276548665e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.936493200189350e-23 --8.501669047547002e-11 + 1.192379184022722e-22 +-1.020200201355860e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807483836e+00 + 1.732050807466833e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.002762197779237e-04 +-1.198558859168393e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.987298640037870e-22 --1.700332402194777e-10 +-1.398512043990971e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807398819e+00 + 1.732050807429002e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981746138087546e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.29233006826099e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.490473980028403e-22 --9.639975192593520e-11 + 1.987298640037870e-22 +-1.700333105608062e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807472453e+00 + 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.492254224646821e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -145,7 +145,7 @@ Using dense direct linear solver [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.90181158883288e-05, h_cfl = 1.69564868516226e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.78573912527956e-05, h_cfl = 8.47824342581128e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.27005027092631e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14071030271303e-16 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.71624223955155e-06, h = 2.78573912527956e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71624223955155e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -153,61 +153,61 @@ Using dense direct linear solver 1.732050807398819e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981745836298984e-04 +-1.981745836301548e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.28591987406698e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.760313456268973e-09 + 1.305953438023304e-21 +-2.208250765018035e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050804638506e+00 + 1.732050805190569e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.806532979849059e-03 +-1.484859516826536e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.56449378659494e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.84306769912289e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.632441797529130e-21 --2.516264801536699e-08 + 1.958930157034957e-21 +-3.019514034987365e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050782236171e+00 + 1.732050777203679e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.806510600880137e-03 +-2.128180483031468e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 3.264883595058261e-21 --5.032467261104088e-08 +-4.217839723859307e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050757074147e+00 + 1.732050765220422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.414868907668693e-03 +-3.414877037883311e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.26092856791483e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.448662696293695e-21 --2.934286285885705e-08 + 3.264883595058261e-21 +-5.032498390567580e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050778055956e+00 + 1.732050757073835e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.610695364096074e-03 +-3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732050757073835e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000804010816881841, h_cfl = 2.78573912527956e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00102708671189886, h_cfl = 2.78573912527956e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000557147825055912, h_cfl = 1.39286956263978e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.36575745781832e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 8.59069490443153e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.95736334923472e-05, h = 0.000557147825055912 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.95736334923472e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -217,128 +217,128 @@ Using dense direct linear solver 0.000000000000000e+00 -3.414868907358299e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000252432763514712 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.512933922928683e-07 + 2.611906876046609e-20 +-7.610347138342947e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732049805780443e+00 + 1.732049996039122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.558608464041920e-02 +-2.915117884460126e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000308147546020303 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000363862328525895 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 3.264883595058260e-20 --9.913354829832584e-06 + 3.917860314069912e-20 +-1.189574890062628e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732040843719006e+00 + 1.732038861324935e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.557730668812781e-02 +-4.201081246065858e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 6.529767190116521e-20 --1.982181904263757e-05 +-1.656308459528083e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030935254793e+00 + 1.732034193989240e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.774796574093327e-02 +-6.775109700792233e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000447434502284281 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.897325392587391e-20 --1.150743491657343e-05 + 6.529767190116521e-20 +-1.982421265922294e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732039249638919e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.166493150904073e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00173229447236786, h_cfl = 5.57147825055912e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00166300269347314, h_cfl = 2.78573912527956e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.98485001409859 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.78722345629923e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0030076097195819, h_cfl = 5.57147825055912e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288730533079862, h_cfl = 2.78573912527956e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.18229669210118 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.37991277951609e-06 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.00058672145854826, h = 1.32785414517403e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00058672145854826 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732030932861177e+00 + 1.732030932861176e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --6.774796344094283e-02 +-6.774796344094249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000592032875128956 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.497970704107743e-07 + 6.224975161338911e-22 +-3.598376563286176e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732030483064106e+00 + 1.732030573023520e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --6.851457574280405e-02 +-6.836125293997067e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00059336072927413 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000594688583419304 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 7.781218951673638e-22 --4.548868170246134e-07 + 9.337462742008366e-22 +-5.458641770189984e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732030477974360e+00 + 1.732030386996999e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --6.851457085439451e-02 +-6.866789285110339e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.556243790334728e-21 --9.097735691382781e-07 +-9.079227540419626e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732030023087608e+00 + 1.732030024938422e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --6.928118254776658e-02 +-6.928118432454869e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000596680364637065 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0006 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.167182842751046e-21 --6.804215464676200e-07 + 1.556243790334728e-21 +-9.097736002471066e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732030252439630e+00 + 1.732030023087576e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --6.889787799966653e-02 +-6.928118254773628e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732030023087577e+00 + 1.732030023087576e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00118656220548466, h_cfl = 1.32785414517403e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000981596594557086, h_cfl = 1.32785414517403e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000265570829034807, h_cfl = 6.63927072587017e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.22130822831965e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.45509953155001e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -5.605212824962841e-20 --2.078448130049537e-05 +-2.078448130116151e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -352,22 +352,22 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.004053988672281447 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.510922436406298e-11 --2.078447655162505e-05 +-3.510922451742602e-11 +-2.078447655229118e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744871356480e+00 - 1.732030023092326e+00 + 1.732030023092325e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_1(:) = -1.224744797942008e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.341025573368498e-08 +-7.341025605418262e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --8.355537957946346e-05 +-8.355537957968199e-05 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -380,59 +380,59 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000106228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109493571261804e-08 - 1.100430537325142e-20 +-8.875948570117645e-09 + 8.803444298601133e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744860296653e+00 + 1.224744862515640e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.533374356927442e-02 +-1.226683731313633e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517403 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000159342497420884 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.109493571261804e-08 --2.036097495949673e-06 +-1.331392285517647e-08 +-2.443285616163542e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744860296653e+00 - 1.732048771471381e+00 + 1.224744858077666e+00 + 1.732048364283261e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.533172549604850e-02 +-1.839830953550559e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.218987142523608e-08 --4.071659050519684e-06 +-2.218987142529411e-08 +-3.331283189183121e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849201717e+00 - 1.732046735909827e+00 + 1.732047476285688e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.066541358953033e-02 +-3.066614085709036e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000199178121776105 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.664240356892706e-08 --2.290409165324513e-06 +-2.218987142529411e-08 +-4.071924565757917e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744854749185e+00 - 1.732048517159712e+00 + 1.224744849201717e+00 + 1.732046735644311e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.299908437583301e-02 +-3.066541332871597e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849201717e+00 1.732046735644311e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000861767411151089, h_cfl = 2.65570829034807e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000827296714705045, h_cfl = 1.32785414517403e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.11516410786448 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.95446948622374e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00182644954575896, h_cfl = 2.65570829034807e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0017533915639286, h_cfl = 1.32785414517403e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.60235000320309 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.10736076608383e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000265570829034807, h = 1.09583763185987e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000265570829034807 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -442,65 +442,65 @@ Using dense direct linear solver 0.000000000000000e+00 -3.066541332871597e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000266009164087551 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578156464375592e-11 --1.680215696107211e-08 +-3.662525171510053e-11 +-1.344172556885769e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744849155936e+00 - 1.732046718842154e+00 + 1.224744849165092e+00 + 1.732046722202586e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --3.072868112179685e-02 +-3.071602756060673e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266118747850737 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000266228331613923 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.578156464375592e-11 --1.683682257534349e-08 +-5.493787757265078e-11 +-2.020418708829672e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744849155936e+00 - 1.732046718807489e+00 + 1.224744849146780e+00 + 1.732046715440124e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --3.072868108774628e-02 +-3.074133464341358e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.156312928751185e-11 --3.367364511337307e-08 +-9.156312928775131e-11 +-3.366103943687226e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744849110154e+00 - 1.732046701970666e+00 + 1.732046701983272e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.079194887895145e-02 +-3.079194889133304e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266392707258702 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000266666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.867234696563389e-11 --2.524223424373499e-08 +-9.156312928775131e-11 +-3.367364513168749e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744849133045e+00 - 1.732046710402077e+00 + 1.224744849110154e+00 + 1.732046701970666e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.076031499209619e-02 +-3.079194887895145e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744849110154e+00 1.732046701970666e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 8.30063443631622e-05, h_cfl = 1.09583763185987e+24 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 6.58201473771408e-05, h_cfl = 1.09583763185987e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.19167526371974e-05, h_cfl = 5.47918815929935e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.18670902903459e-16 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.09359349217565e-17 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.225570585416780e-08 +-2.225570585405547e-08 -4.105598210957240e-06 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -515,7 +515,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0007986236836926118 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.224137373833983e-08 +-2.224137373822750e-08 -4.105597275445076e-06 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -530,7 +530,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --1.020773421463297e-04 +-1.020773421464924e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -543,59 +543,59 @@ Using dense direct linear solver 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.76670105487897e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601928841838e-09 - 9.081518466703426e-22 +-8.948815430748957e-10 + 7.265214773362741e-22 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744870272987e+00 + 1.224744870496707e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.265371779696489e-03 +-1.012296318348121e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.09583763185987e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.31500515823185e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.118601928841838e-09 --1.386642014484911e-08 +-1.342322314612344e-09 +-1.663968600358634e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744870272987e+00 - 1.732050793702457e+00 + 1.224744870049267e+00 + 1.732050790929191e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.265357923406574e-03 +-1.518431167678358e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203857683675e-09 --2.773253660481969e-08 +-2.237203857687239e-09 +-2.269021572438502e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744869154385e+00 - 1.732050779836340e+00 + 1.732050784878661e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.530729660677672e-03 +-2.530734695631283e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.64375644778981e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.677902893262757e-09 --1.559960881018260e-08 +-2.237203857687239e-09 +-2.773268829228769e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744869713686e+00 - 1.732050791969268e+00 + 1.224744869154385e+00 + 1.732050779836189e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.898047263317420e-03 +-2.530729660526236e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744869154385e+00 1.732050779836189e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000540432387753103, h_cfl = 2.19167526371974e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00064049570037298, h_cfl = 2.19167526371974e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000438335052743948, h_cfl = 1.09583763185987e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.06450479224059e-11 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.29095981789821e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 9, tn = 2.19167526371974e-05, h = 0.000438335052743948 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.19167526371974e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -605,59 +605,59 @@ Using dense direct linear solver 0.000000000000000e+00 -2.530729660526236e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000197250773734777 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203857683675e-08 --5.546537596137210e-07 +-1.789763086149791e-08 +-4.437230076909768e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744846782347e+00 - 1.732050225182429e+00 + 1.224744851256754e+00 + 1.732050336113181e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.784069877153220e-02 +-2.277828755391065e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000241084279009172 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000284917784283566 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.237203857683675e-08 --6.101777082223973e-06 +-2.684644629224687e-08 +-7.321995279386067e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744846782347e+00 - 1.732044678059107e+00 + 1.224744842307939e+00 + 1.732043457840909e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.783524080315700e-02 +-3.289678093259014e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.474407715367350e-08 --1.220116174559233e-05 +-4.474407715374479e-08 +-1.018412506653723e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744824410308e+00 - 1.732038578674443e+00 + 1.732040595711122e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.314493930090603e-02 +-5.314689444682975e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000350668042195159 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.355805786525513e-08 --7.071600927138641e-06 +-4.474407715374479e-08 +-1.220233818522421e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744835596327e+00 - 1.732043708235262e+00 + 1.224744824410308e+00 + 1.732038577498004e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.049150357297412e-02 +-5.314493816056357e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744824410308e+00 1.732038577498004e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.0015341141652673, h_cfl = 4.38335052743948e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00147274959865661, h_cfl = 2.19167526371974e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.35987183648054 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45080967226298e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00284894931008209, h_cfl = 4.38335052743948e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00273499133767881, h_cfl = 2.19167526371974e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.23949948916461 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28217694693776e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 10, tn = 0.000460251805381146, h = 0.000539748194618854 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000460251805381146 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -667,65 +667,65 @@ Using dense direct linear solver 0.000000000000000e+00 -5.314493816056357e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000676151083228687 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754803056748626e-08 --1.434244221264741e-05 +-2.203842445402412e-08 +-1.147395377011793e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744796862278e+00 - 1.732024235055791e+00 + 1.224744802371884e+00 + 1.732027103544233e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.431018939133746e-02 +-7.807659312518796e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000730125902690573 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000784100722152458 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.754803056748626e-08 --2.275313625597402e-05 +-3.305763668103618e-08 +-2.730354247218904e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744796862278e+00 - 1.732015824361748e+00 + 1.224744791352671e+00 + 1.732011273955531e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.430218808833033e-02 +-9.053447910444294e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.509606113497252e-08 --4.550195382309534e-05 +-5.509606113506029e-08 +-4.244364016491349e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744769314247e+00 - 1.731993075544181e+00 + 1.731996133857839e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662067092439e-01 +-1.154690611329818e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000865062951345286 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.132204585122939e-08 --3.097409539998588e-05 +-5.509606113506029e-08 +-4.550400228451424e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744783088262e+00 - 1.732007603402604e+00 + 1.224744769314247e+00 + 1.731993073495719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.988638018737896e-02 +-1.154662047973467e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769314247e+00 1.731993073495719e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00368285859108471, h_cfl = 5.39748194618854e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00353554424744132, h_cfl = 2.69874097309427e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.55035863517426 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.33584441781632e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00559435161169272, h_cfl = 5.39748194618854e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00537057754722501, h_cfl = 2.69874097309427e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.9501537953591 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.21938296326443e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.019973442381399e-07 +-1.019973442378356e-07 -5.773407315801116e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -740,7 +740,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.01125102526633561 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.019974048910669e-07 +-1.019974048907625e-07 -5.773405997844727e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = @@ -776,68 +776,68 @@ Using dense direct linear solver 1.731993073495719e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662047973468e-01 +-1.154662047973467e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00124 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123727655868483e-08 --3.463986143920398e-05 +-4.898982124694787e-08 +-2.771188915136318e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744708076970e+00 - 1.731958433634280e+00 + 1.224744720324426e+00 + 1.731965361606568e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.501073542326901e-01 +-1.431785753744326e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00136 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.123727655868483e-08 --4.503220626980697e-05 +-7.348473187042179e-08 +-5.403840048673342e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744708076970e+00 - 1.731948041289449e+00 + 1.224744695829515e+00 + 1.731939035095232e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.500978625577392e-01 +-1.570250477156333e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = -1.224745531173697e-07 --9.005871753464343e-05 +-8.627974321579668e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744646839694e+00 - 1.731903014778185e+00 + 1.731906793752503e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.847363041597842e-01 +-1.847396800402638e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00145 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.185591483802724e-08 --6.364909523824474e-05 +-1.224745531173697e-07 +-9.006129425387793e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744677458332e+00 - 1.731929424400481e+00 + 1.224744646839694e+00 + 1.731903012201465e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.674198337554345e-01 +-1.847363018579151e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744646839694e+00 1.731903012201465e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00268179453937895, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00257452275780379, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.29087126300632 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09465402481611e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00450063859493757, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00432061305114007, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.20102175190013 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.87006264716353e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769394184e+00 1.731993073508899e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = -1.225544293799168e-07 --9.006130743349772e-05 +-9.006130743327567e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -851,8 +851,8 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0175549964314153 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.225895221381369e-07 --9.006128687003611e-05 +-1.225895221380755e-07 +-9.006128686981407e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744646804662e+00 @@ -861,12 +861,12 @@ Using dense direct linear solver -3.265985529121911e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --7.337602476144300e-08 +-7.337602463323455e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.876794872919818e-04 +-2.876794872918943e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -879,65 +879,65 @@ Using dense direct linear solver 0.000000000000000e+00 -1.154662047696791e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00110666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726497226422e-08 --1.539549396929053e-05 +-3.068581197780205e-08 +-1.231639517543243e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744731036919e+00 - 1.731977678014929e+00 + 1.224744738708372e+00 + 1.731980757113723e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.308614113196777e-01 +-1.277822549980916e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00113333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00116 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.835726497226422e-08 --1.744818817595701e-05 +-4.602871796670307e-08 +-2.093780280883114e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744731036919e+00 - 1.731975625320723e+00 + 1.224744723365466e+00 + 1.731972135706090e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.308595137179218e-01 +-1.339383506728611e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.671452994452845e-08 --3.489587032477912e-05 +-7.671452994450513e-08 +-3.414944298525438e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744692679654e+00 - 1.731958177638574e+00 + 1.731958924065913e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.462542534524969e-01 +-1.462549368480607e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.001266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00126666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.753589745839633e-08 --2.540233606638853e-05 +-7.671452994450513e-08 +-3.489610259099612e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744711858287e+00 - 1.731967671172832e+00 + 1.224744692679654e+00 + 1.731958177406308e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.385574197601797e-01 +-1.462542532398443e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744692679654e+00 1.731958177406308e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00223586867443179, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00214643392745452, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 8.04912722795446 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98718282655609e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00375413330175526, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00360396796968505, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 13.5148798863189 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.28155555335336e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769394184e+00 1.731993073508899e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --7.668879676764584e-08 +-7.668879676769077e-08 -3.489610259088671e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -952,7 +952,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.006799198459570063 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --7.667452360992179e-08 +-7.667452360996672e-08 -3.489609462651604e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = @@ -967,7 +967,7 @@ Using dense direct linear solver [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --3.062014741189264e-04 +-3.062014741188613e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -982,64 +982,64 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531007370594631e-07 --5.773310238483948e-05 +-1.224805896475444e-07 +-4.618648190787159e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744616293447e+00 - 1.731935340406514e+00 + 1.224744646913594e+00 + 1.731946887026991e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050913637483e-01 +-1.616559000522129e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531007370594631e-07 --8.660254568187406e-05 +-1.837208844713166e-07 +-1.039219943237077e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616293447e+00 - 1.731906470963217e+00 + 1.224744585673299e+00 + 1.731889151514575e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791088647278e-01 +-1.847239501838488e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.062014741189262e-07 --1.731791088647277e-04 +-3.062014741188611e-07 +-1.626813044816967e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744463192710e+00 - 1.731819894400034e+00 + 1.731830392204417e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093244084343e-01 +-2.309184224822023e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.296511055891946e-07 --1.190683048196143e-04 +-3.062014741188611e-07 +-1.731906549398920e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744539743078e+00 - 1.731874005204079e+00 + 1.224744463192710e+00 + 1.731819882853959e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519767638989e-01 +-2.309093144018360e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463192710e+00 - 1.731819882853960e+00 + 1.731819882853959e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236999151850322, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0022751918577631, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.2751918577631 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393261462964438 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397540694794284, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381639067002513, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81639067002513 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44643738741012e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744769394184e+00 1.731993073508899e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --3.061215676235276e-07 --1.731906549389262e-04 +-3.061215676236494e-07 +-1.731906549398143e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1053,104 +1053,104 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03375193197636171 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --3.061216823279802e-07 --1.731906154025621e-04 +-3.061216823283167e-07 +-1.731906154034503e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 2 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463272502e+00 1.731819882893495e+00 1.291351470200652e-10 3.587596886234223e-11 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_0(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_0(:) = -4.082481543380409e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_0(:) = --2.403317848320506e-10 +-2.403322335831735e-10 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 1, stage type = 0, tcur = 0.0026 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082483946698258e-04 +-4.082483946702746e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 14, tn = 0.002, h = 0.000599999999999999 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463192710e+00 - 1.731819882853960e+00 + 1.731819882853959e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144018369e-01 +-2.309093144018360e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00224 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224745184009476e-07 --6.927279432055098e-05 +-9.797961472086580e-08 +-5.541823545644057e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744340718191e+00 - 1.731750610059639e+00 + 1.224744365213095e+00 + 1.731764464618502e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.655386833853628e-01 +-2.586124825925519e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00236 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.224745184009476e-07 --7.966160501560875e-05 +-1.469694220812987e-07 +-9.559377887048299e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744340718191e+00 - 1.731740221248944e+00 + 1.224744316223288e+00 + 1.731724289075088e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.655298875255990e-01 +-2.724545226673438e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.449490368018952e-07 --1.593179325153592e-04 +-2.449490368021645e-07 +-1.555400542014593e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744218243673e+00 - 1.731660564921444e+00 + 1.731664342799757e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.001544687389531e-01 +-3.001575917823563e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00245 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.837117776014214e-07 --1.155947142150103e-04 +-2.449490368021645e-07 +-1.593200924960290e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744279480932e+00 - 1.731704288139745e+00 + 1.224744218243673e+00 + 1.731660562761463e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.828450145783650e-01 +-3.001544669533683e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744218243673e+00 1.731660562761463e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00340545842758181, h_cfl = 5.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00326924009047854, h_cfl = 3e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.4487334841309 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.09661418438159e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00570957162341223, h_cfl = 5.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00548118875847574, h_cfl = 3e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.13531459745958 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.88230943362808e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --2.450287138412347e-07 --1.593201320326809e-04 +-2.450287138410201e-07 +-1.593201320324589e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1159,8 +1159,8 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 65.01617199524209 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --2.450469858076539e-07 --1.592440313558734e-04 +-2.450469858076009e-07 +-1.592440313556515e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_1(:) = 1.224744218225516e+00 @@ -1169,12 +1169,12 @@ Using dense direct linear solver -5.307224626940250e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_1(:) = --3.549632815080042e-08 +-3.549632847136640e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 2, stage type = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.917776430918824e-04 +-4.917776430922437e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1182,70 +1182,70 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143962058e-01 +-2.309093143962050e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00210666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557035241225095e-08 --3.078790858616076e-05 +-5.245628192983932e-08 +-2.463032686892853e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744397702149e+00 - 1.731789094984910e+00 + 1.224744410816220e+00 + 1.731795252566626e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.462996277351220e-01 +-2.432214939001821e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00213333333333333 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.00216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.557035241225095e-08 --3.283995036468293e-05 +-7.868442289475897e-08 +-3.940792620418821e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744397702149e+00 - 1.731787042943131e+00 + 1.224744384588079e+00 + 1.731780474967291e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.462978675392800e-01 +-2.493756875553827e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.311407048245019e-07 --6.567943134380797e-05 +-1.311407048245983e-07 +-6.493322464994223e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744332131797e+00 - 1.731754203462152e+00 + 1.731754949668845e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.616873033194310e-01 +-2.616879367658919e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002266666666666667 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00226666666666667 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.835552861837644e-08 --4.849024117348408e-05 +-1.311407048245983e-07 +-6.567962703397104e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744364916973e+00 - 1.731771392652323e+00 + 1.224744332131797e+00 + 1.731754203266461e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.539931385967695e-01 +-2.616873031533111e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744332131797e+00 - 1.731754203266462e+00 + 1.731754203266461e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00205925012561916, h_cfl = 2.66666666666667e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0019768801205944, h_cfl = 1.33333333333333e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.41330045222899 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.98796473298381e-06 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00345410309562602, h_cfl = 2.66666666666667e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00331593897180098, h_cfl = 1.33333333333333e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 12.4347711442537 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.33093888181656e-08 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --1.311282332690434e-07 +-1.311282332688737e-07 -6.567962703396546e-05 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton @@ -1255,22 +1255,22 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 26.80292351487525 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --1.311066262519672e-07 +-1.311066262520120e-07 -6.564826176755008e-05 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_2(:) = 1.224744332165876e+00 - 1.731754234631729e+00 + 1.731754234631728e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow explicit RHS] Fse_2(:) = -4.626812033741880e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow implicit RHS] Fsi_2(:) = - 4.540714935099857e-08 + 4.540714890223044e-08 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMRISR][begin-stage] stage = 3, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --5.102947495741375e-04 +-5.102947495745213e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 [INFO][rank 0][mriStep_StageERKFast][begin-fast-steps] @@ -1278,71 +1278,71 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093143962058e-01 +-2.309093143962050e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551473747870685e-07 --1.154546571981028e-04 +-2.041178998298084e-07 +-9.236372575848193e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744208125127e+00 - 1.731704428236298e+00 + 1.224744259154602e+00 + 1.731727519167737e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886270253285287e-01 +-2.770826857871420e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551473747870685e-07 --1.443135126642643e-04 +-3.061768497447125e-07 +-1.731756171809256e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744208125127e+00 - 1.731675569380832e+00 + 1.224744157095652e+00 + 1.731646707276314e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029762821123e-01 +-3.001430436233431e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.102947495741371e-07 --2.886029762821121e-04 +-5.102947495745209e-07 +-2.781081461739654e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224743952977752e+00 - 1.731531279917214e+00 + 1.731541774747321e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062367526544e-01 +-3.463146325977736e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.827210621806028e-07 --2.056396313811103e-04 +-5.102947495745209e-07 +-2.886125923916093e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744080551440e+00 - 1.731614243262115e+00 + 1.224743952977752e+00 + 1.731531270301104e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174626057575253e-01 +-3.463062290597659e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952977752e+00 - 1.731531270301101e+00 + 1.731531270301104e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00236985490510528, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00227506070890106, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.27506070890107 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00039340867877552 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00397162024146058, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00381275543180215, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.81275543180216 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45550747815249e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][predictor] zpred(:) = 1.224744463272502e+00 - 1.731819882893496e+00 + 1.731819882893495e+00 [DEBUG][rank 0][mriStep_TakeStepMRISR][rhs data] sdata(:) = --5.102454880704721e-07 --2.886125923948768e-04 +-5.102454880703794e-07 +-2.886125923915461e-04 [INFO][rank 0][mriStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] @@ -1351,46 +1351,46 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 117.7785945802489 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [DEBUG][rank 0][mriStep_Nls][correction] zcor(:) = --5.102176540648533e-07 --2.884747498742945e-04 +-5.102176540641797e-07 +-2.884747498709654e-04 [INFO][rank 0][mriStep_Nls][end-nonlinear-solve] status = success, iters = 1 [DEBUG][rank 0][mriStep_TakeStepMRISR][slow stage] z_3(:) = 1.224743953054848e+00 - 1.731531408143622e+00 + 1.731531408143624e+00 [INFO][rank 0][mriStep_TakeStepMRISR][end-stage] status = success [DEBUG][rank 0][mriStep_TakeStepMRISR][updated solution] ycur(:) = 1.224743953054848e+00 - 1.731531408143622e+00 + 1.731531408143624e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743953054848e+00 1.731531408143624e+00 2.215676531136523e-10 1.378700538179345e-07 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 9 -Implicit slow RHS fn evals = 24 -Inner stepper failures = 0 -NLS iters = 15 -NLS fails = 0 -NLS iters per step = 5 -LS setups = 1 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0666666666666667 -Prec evals per NLS iter = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 9 +Implicit slow RHS fn evals = 24 +Inner stepper failures = 0 +NLS iters = 15 +NLS fails = 0 +NLS iters per step = 5 +LS setups = 1 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0666666666666667 +Prec evals per NLS iter = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out index 25840bb980..67e8b4f8d7 100644 --- a/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out +++ b/test/unit_tests/logging/test_logging_arkode_mristep_lvl5_6.out @@ -30,49 +30,49 @@ Using MERK method 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 6.864518129765e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.005651086747069e-24 - 7.111027029464737e-25 + 8.045208693976555e-25 + 5.688821623571790e-25 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --9.908078516989124e-07 +-7.926462806567002e-07 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.58064766220625e-09 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.02967771946475e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.005651086747069e-24 --8.501773076375875e-15 + 1.206781304096483e-24 +-1.020212768282343e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807568869e+00 + 1.732050807568867e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --9.908078432378814e-07 +-1.188969412934021e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.71612953244125e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.011302173494139e-24 --1.700354600754950e-14 +-1.391199216824864e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807568860e+00 + 1.732050807568863e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.981615694912173e-06 +-1.981615697988910e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.28709714933094e-08 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.71612953244125e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.508476630120604e-24 --9.564494656262998e-15 + 2.011302173494139e-24 +-1.700354607991462e-14 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807568868e+00 + 1.732050807568860e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.486211771248721e-06 +-1.981615694912173e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -82,7 +82,7 @@ Using MERK method [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 1.47191726142557e-06, h_cfl = 1.71612953244125e+22 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 1.41304057096855e-06, h_cfl = 8.58064766220625e+21 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 82.3388062647258 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.681308618402e-18 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.19075505353205e-20 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 1.71612953244125e-08, h = 1.41304057096855e-06 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.71612953244125e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -90,51 +90,51 @@ Using MERK method 1.732050807568860e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.981615694655778e-06 +-1.981615694912173e-06 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 7.23681580808686e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 5.82377523711831e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.280411000157792e-23 --1.400051686308317e-12 + 6.624328800126234e-23 +-1.120041349191572e-12 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050807567460e+00 + 1.732050807567740e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --8.356357988730529e-05 +-6.724718244265400e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 7.23681580808686e-07 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 8.6498563790554e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 8.280411000157792e-23 --5.903936431806681e-11 + 9.936493200189350e-23 +-7.084723230014853e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050807509820e+00 + 1.732050807498013e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --8.356352225056159e-05 +-9.987991047181007e-05 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 1.43020186629296e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.656082200031558e-22 --1.180786471930764e-10 +-9.711890083681010e-11 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050807450781e+00 + 1.732050807471741e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.651454863839670e-04 +-1.651455073418773e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.07694172355082e-06 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.43020186629296e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.242061650023669e-22 --6.694427370166040e-11 + 1.656082200031558e-22 +-1.180786879009275e-10 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050807501916e+00 + 1.732050807450781e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.243545187343919e-04 +-1.651454863842234e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = @@ -144,7 +144,7 @@ Using MERK method [DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 2.4181763240274e-05, h_cfl = 1.41304057096855e+24 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 2.3214492710663e-05, h_cfl = 7.06520285484273e+23 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 16.4287517199531 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.64946076630599e-15 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 7.14816983402221e-17 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 1.43020186629296e-06, h = 2.3214492710663e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 1.43020186629296e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -152,123 +152,123 @@ Using MERK method 1.732050807450781e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.651454863837107e-04 +-1.651454863842234e-04 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.30374482216245e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 1.07159989505582e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.360368164607609e-21 --1.916884344926775e-09 + 1.088294531686087e-21 +-1.533507475946181e-09 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050805533897e+00 + 1.732050805917274e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.505442602629433e-03 +-1.237381939857006e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.30374482216245e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 1.53588974926908e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.360368164607609e-21 --1.747404316253127e-08 + 1.632441797529131e-21 +-2.096883021385758e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732050789976738e+00 + 1.732050786481951e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.505427058992561e-03 +-1.773485234555281e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 2.4644694576956e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 2.720736329215217e-21 --3.494772548741767e-08 +-2.929059310824496e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732050772503056e+00 + 1.732050778160188e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.845724121193044e-03 +-2.845729769031233e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 1.88410713992902e-05 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 2.4644694576956e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.040552246911413e-21 --2.037699491228566e-08 + 2.720736329215217e-21 +-3.494790569714375e-08 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732050787073786e+00 + 1.732050772502876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.175579485014795e-03 +-2.845724121013479e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732050772502875e+00 + 1.732050772502876e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000771472782864884, h_cfl = 2.3214492710663e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000855905593249047, h_cfl = 2.3214492710663e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00046428985421326, h_cfl = 1.16072463553315e+25 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.14080597303478e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 4.14262894570205e-12 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 4, tn = 2.4644694576956e-05, h = 0.00046428985421326 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 2.4644694576956e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744871391589e+00 - 1.732050772502875e+00 + 1.732050772502876e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.845724121012839e-03 +-2.845724121013479e-03 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000256789621683586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00021036063626226 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.720736329215217e-20 --6.606204186381047e-07 + 2.176589063372174e-20 +-5.284963349106026e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732050111882457e+00 + 1.732050244006541e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.965450104254609e-02 +-2.429227928250773e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000256789621683586 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000303218607104912 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 2.720736329215217e-20 --6.884141982905351e-06 + 3.264883595058260e-20 +-8.260807979346014e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732043888360892e+00 + 1.732042511694896e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.964838406336380e-02 +-3.500962964669919e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000488934548790216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 5.441472658430434e-20 --1.376544391443793e-05 +-1.150246199087618e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732037007058961e+00 + 1.732039270040885e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.645683793937312e-02 +-5.645902715657736e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000372862085236901 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000488934548790216 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 4.081104493822826e-20 --7.991332055579246e-06 + 5.441472658430434e-20 +-1.376683894244205e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732042781170819e+00 + 1.732037005663933e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --4.305419869306441e-02 +-5.645683658981770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 1.732037005663933e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00157946110325732, h_cfl = 4.6428985421326e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00151628265912703, h_cfl = 2.3214492710663e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.26581045303342 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.82622499663382e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00288622829914809, h_cfl = 4.6428985421326e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00277077916718216, h_cfl = 2.3214492710663e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.9677788390988 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 6.65015983148827e-07 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 5, tn = 0.000488934548790216, h = 1.10654512097837e-05 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000488934548790216 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -276,67 +276,67 @@ Using MERK method 1.732037005663933e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --5.645683658981734e-02 +-5.645683658981770e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000494467274395108 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.00049336072927413 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.484349126394751e-22 --3.123601853716777e-07 + 5.187479301115801e-22 +-2.498881482973438e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 - 1.732036693303748e+00 + 1.732036755775785e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --5.709568669869502e-02 +-5.696791643164787e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000494467274395108 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000495573819516087 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 6.484349126394751e-22 --3.158947677267532e-07 + 7.781218951673703e-22 +-3.790737192365724e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = 1.224744871391589e+00 - 1.732036689769165e+00 + 1.732036626590214e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --5.709568328062842e-02 +-5.722345298688836e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0005 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = 1.296869825278950e-21 --6.317894976310572e-07 +-6.305041961462023e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744871391589e+00 - 1.732036373874435e+00 + 1.732036375159737e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --5.773453303685211e-02 +-5.773453427931063e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000497233637197554 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0005 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 9.726523689592128e-22 --4.725166691455042e-07 + 1.296869825278950e-21 +-6.317895158919059e-07 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = 1.224744871391589e+00 - 1.732036533147264e+00 + 1.732036373874418e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --5.741510905758314e-02 +-5.773453303683500e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744871391589e+00 - 1.732036373874417e+00 + 1.732036373874418e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000962707187050096, h_cfl = 1.10654512097837e+25 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000777249458676139, h_cfl = 1.10654512097837e+25 [DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000221309024195674, h_cfl = 5.53272560489185e+24 [DEBUG][rank 0][arkAdapt][new-step-eta] eta = 20 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.88988696830735e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.14763377122855e-13 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_1(:) = 1.224744871391589e+00 - 1.732036373874417e+00 + 1.732036373874418e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_1(:) = --1.021130983338965e-04 +-1.021130983337683e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success @@ -345,7 +345,7 @@ Using MERK method 1.171999045219503e-16 0.000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = --2.042261966680274e-04 +-2.042261966677710e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 2, stage type = 0, tcur = 0.001 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0 @@ -359,59 +359,59 @@ Using MERK method 0.000000000000000e+00 8.287284724188699e-17 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000110654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 8.85236096782697e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = - 1.296869825278950e-20 - 9.170254477709588e-21 + 1.037495860223160e-20 + 7.336203582167671e-21 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = 1.224744871391589e+00 1.732050807568877e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.277797834616539e-02 +-1.022227267175060e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000110654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000132785414517404 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.500631540942442e-09 --1.413940959491658e-06 +-3.000757849127162e-09 +-1.696710892535427e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744868890957e+00 - 1.732049393627918e+00 + 1.224744868390831e+00 + 1.732049110857985e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.277657608611823e-02 +-1.533205783135373e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000221309024195674 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.001263081884884e-09 --2.827571586180612e-06 +-4.091942521532325e-09 +-2.313424828455288e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = - 1.224744866390326e+00 - 1.732047979997291e+00 + 1.224744867299646e+00 + 1.732048494144049e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.555452337155687e-02 +-2.555502947789249e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000165981768146756 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000221309024195674 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.813210483555384e-09 --1.590567419440196e-06 +-5.001263081878605e-09 +-2.827725606914984e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744868578378e+00 - 1.732049217001458e+00 + 1.224744866390326e+00 + 1.732047979843270e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.916590613252888e-02 +-2.555452321980844e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744866390326e+00 1.732047979843270e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.000847236636888416, h_cfl = 2.21309024195674e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.000813347171412879, h_cfl = 1.10654512097837e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 3.67516496161378 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.42509408072305e-07 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00179576825245656, h_cfl = 2.21309024195674e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0017239375223583, h_cfl = 1.10654512097837e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 7.78972989747606 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 3.42660624572215e-08 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 7, tn = 0.000221309024195674, h = 0.000778690975804325 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000221309024195674 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = @@ -421,82 +421,82 @@ Using MERK method 0.000000000000000e+00 -2.555452321980844e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000610654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.000532785414517404 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.759728706794103e-08 --9.949538311123459e-06 +-1.407782965433515e-08 +-7.959630648898769e-06 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744848793039e+00 - 1.732038030304959e+00 + 1.224744852312496e+00 + 1.732040020212621e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --7.051982080751480e-02 +-6.152557572939758e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000610654512097837 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.000688523609678269 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --4.855591762600575e-08 --2.745657403907493e-05 +-5.826710115113376e-08 +-3.294719645789860e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744817834408e+00 - 1.732020523269231e+00 + 1.224744808123225e+00 + 1.732015032646812e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --7.050304196777793e-02 +-7.949459016933094e-02 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.000999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --9.711183525201149e-08 --5.490008254706229e-05 +-8.585415141260743e-08 +-4.853432037279154e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = - 1.224744769278491e+00 - 1.731993079760723e+00 + 1.224744780536174e+00 + 1.731999445522897e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.154662106625618e-01 +-1.154721464015912e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000805327256048918 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.000999999999999999 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --6.122438997973434e-08 --3.461487489115110e-05 +-9.711183525188957e-08 +-5.490633902215777e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744805165936e+00 - 1.732013364968379e+00 + 1.224744769278491e+00 + 1.731993073504248e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --9.298917239507039e-02 +-1.154662048231853e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744769278491e+00 - 1.731993073504249e+00 + 1.731993073504248e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00333872304915548, h_cfl = 7.78690975804325e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00320517412718926, h_cfl = 3.89345487902163e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.11610539582608 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000144544246230492 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00501984823563698, h_cfl = 7.78690975804325e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0048190543062115, h_cfl = 3.89345487902163e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 6.18866078579349 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 5.28133550933019e-06 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_2(:) = 1.224744769278491e+00 - 1.731993073504249e+00 + 1.731993073504248e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][updated solution] ycur(:) = 1.224744769278491e+00 - 1.731993073504249e+00 + 1.731993073504248e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 1.000000000000000e-03 1.224744769278491e+00 1.731993073504248e+00 5.103006905926577e-11 3.286260152890463e-14 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.001, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.001 [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_0(:) = 1.224744769278491e+00 - 1.731993073504249e+00 + 1.731993073504248e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_0(:) = --2.041240261529235e-04 +-2.041240261533081e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 0 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041240261529235e-04 +-2.041240261533081e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = -0.000000000000000e+00 @@ -507,79 +507,79 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744769278491e+00 - 1.731993073504249e+00 + 1.731993073504248e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048231861e-01 +-1.154662048231853e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0012 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103100653823084e-08 --2.886655120579650e-05 +-4.082480523066159e-08 +-2.309324096463705e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744718247484e+00 - 1.731964206953043e+00 + 1.224744728453685e+00 + 1.731969980263284e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.443333537778281e-01 +-1.385595358244029e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0013 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103100653823084e-08 --3.608333844445700e-05 +-6.123720784599238e-08 +-4.329986057241216e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744718247484e+00 - 1.731956990165805e+00 + 1.224744708041283e+00 + 1.731949773643676e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.443267383895233e-01 +-1.500994447960244e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0015 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020620130764617e-07 --7.216336919476159e-05 +-1.020620130766540e-07 +-6.953912097858463e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744667216477e+00 - 1.731920910135054e+00 + 1.731923534383270e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --1.731920787060155e-01 +-1.731944405278179e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0015 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --7.654650980734626e-08 --5.141750032685176e-05 +-1.020620130766540e-07 +-7.216487232202577e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744692731981e+00 - 1.731941656003922e+00 + 1.224744667216477e+00 + 1.731920908631926e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --1.587613110410796e-01 +-1.731920773532000e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744667216477e+00 - 1.731920908631927e+00 + 1.731920908631926e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00312348437624041, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.0029985450011908, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.9970900023816 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.45666561975625e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00524250353739905, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00503280339590309, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 10.0656067918062 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.01287327936132e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_1(:) = 1.224744667216477e+00 - 1.731920908631927e+00 + 1.731920908631926e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_1(:) = --3.062370820562494e-04 +-3.062370820566981e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 1 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --2.041240261529235e-04 +-2.041240261533081e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = --2.042261118066518e-04 +-2.042261118067800e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 2, stage type = 0, tcur = 0.002 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.001 @@ -588,87 +588,87 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.001 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744769278491e+00 - 1.731993073504249e+00 + 1.731993073504248e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --1.154662048231861e-01 +-1.154662048231854e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0014 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020620130764617e-07 --5.773310241159300e-05 +-8.164961046132319e-08 +-4.618648192927412e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744667216477e+00 - 1.731935340401837e+00 + 1.224744687628880e+00 + 1.731946887022319e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --1.732050658980241e-01 +-1.616558796903342e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.001599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0016 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.531185410281245e-07 --8.660253294901198e-05 +-1.837422492340187e-07 +-1.039219790442727e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744616159950e+00 - 1.731906470971300e+00 + 1.224744585536241e+00 + 1.731889151525204e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --1.731791089387514e-01 +-1.847239502618732e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.062370820562491e-07 --1.731791089387512e-04 +-2.876710718924450e-07 +-1.626813115172826e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = - 1.224744463041408e+00 - 1.731819894395310e+00 + 1.224744481607419e+00 + 1.731830392192731e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.309093244799913e-01 +-2.309184132647202e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00175 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.105316135603132e-07 --1.190682992851835e-04 +-3.062370820566978e-07 +-1.731906464968352e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744558746877e+00 - 1.731874005204964e+00 + 1.224744463041408e+00 + 1.731819882857751e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.020519672627812e-01 +-2.309093144807736e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744463041408e+00 - 1.731819882857753e+00 + 1.731819882857751e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00272959285938336, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00262040914500802, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.62040914500802 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393262822583746 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00457966827643964, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00439648154538205, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.39648154538205 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.44648426343788e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_2(:) = 1.224744463041408e+00 - 1.731819882857753e+00 + 1.731819882857751e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][updated solution] ycur(:) = 1.224744463041408e+00 - 1.731819882857753e+00 + 1.731819882857751e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 2.000000000000000e-03 1.224744463041408e+00 1.731819882857751e+00 1.019582196448710e-10 1.321165399303936e-13 [INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.002, h = 0.001 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 0, stage type = -2, tcur = 0.002 [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_0(:) = 1.224744463041408e+00 - 1.731819882857753e+00 + 1.731819882857751e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_0(:) = --4.082479504317274e-04 +-4.082479504325608e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 0 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082479504317274e-04 +-4.082479504325608e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = -0.000000000000000e+00 @@ -679,79 +679,79 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463041408e+00 - 1.731819882857753e+00 + 1.731819882857751e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144807751e-01 +-2.309093144807736e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0022 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020619876079318e-07 --5.772732862019373e-05 +-8.164959008651210e-08 +-4.618186289615468e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744360979421e+00 - 1.731762155529133e+00 + 1.224744381391818e+00 + 1.731773700994855e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.597668390793415e-01 +-2.539951001438945e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0023 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.020619876079318e-07 --6.494170976983533e-05 +-1.224743851297682e-07 +-7.792996396790237e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744360979421e+00 - 1.731754941147983e+00 + 1.224744340567023e+00 + 1.731741952893783e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.597607068553388e-01 +-2.655313537301552e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.0025 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.041239752158635e-07 --1.298803534276693e-04 +-2.041239752162802e-07 +-1.272568707066191e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = 1.224744258917433e+00 - 1.731690002504325e+00 + 1.731692625987045e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --2.886149785290460e-01 +-2.886171647633344e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.0025 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --1.530929814118977e-07 --9.470607275858781e-05 +-2.041239752162802e-07 +-1.298816154065029e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744309948427e+00 - 1.731725176784995e+00 + 1.224744258917433e+00 + 1.731690001242345e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --2.741898049367497e-01 +-2.886149774773955e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224744258917433e+00 - 1.731690001242347e+00 + 1.731690001242345e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00300491751116599, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00288472081071935, h_cfl = 2.5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 5.76944162143871 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 2.45761722074789e-05 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00503826991436237, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00483673911778788, h_cfl = 2.5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 9.67347823557576 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 9.07252656108775e-07 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_1(:) = 1.224744258917433e+00 - 1.731690001242347e+00 + 1.731690001242345e+00 [DEBUG][rank 0][mriStep_TakeStepMERK][slow explicit RHS] Fse_1(:) = --5.103609128479877e-04 +-5.103609128488853e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [INFO][rank 0][mriStep_TakeStepMERK][begin-group] group = 1 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_0(:) = --4.082479504317274e-04 +-4.082479504325608e-04 0.000000000000000e+00 [DEBUG][rank 0][mriStep_ComputeInnerForcing][forcing] forcing_1(:) = --2.042259248325205e-04 +-2.042259248326490e-04 0.000000000000000e+00 [INFO][rank 0][mriStep_TakeStepMERK][begin-stage] stage = 2, stage type = 0, tcur = 0.003 [DEBUG][rank 0][mriStepInnerStepper_Reset][reset-inner-state] tR = 0.002 @@ -760,92 +760,92 @@ Using MERK method [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.002 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_0(:) = 1.224744463041408e+00 - 1.731819882857753e+00 + 1.731819882857751e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_0(:) = 0.000000000000000e+00 --2.309093144807751e-01 +-2.309093144807737e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 0, tcur = 0.0024 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.041239752158635e-07 --1.154546572403875e-04 +-1.632991801730242e-07 +-9.236372579230940e-05 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_1(:) = - 1.224744258917433e+00 - 1.731704428200513e+00 + 1.224744299742228e+00 + 1.731727519131959e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_1(:) = 0.000000000000000e+00 --2.886269999025549e-01 +-2.770826654632754e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.002599999999999999 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 0, tcur = 0.0026 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --2.551804564239936e-07 --1.443134999512773e-04 +-3.062165477093309e-07 +-1.731756019253404e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_2(:) = - 1.224744207860952e+00 - 1.731675569357802e+00 + 1.224744156824861e+00 + 1.731646707255826e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_2(:) = 0.000000000000000e+00 --2.886029763950079e-01 +-3.001430437418016e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --5.103609128479871e-07 --2.886029763950077e-04 +-4.917949196822804e-07 +-2.781081532467641e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_3(:) = - 1.224743952680496e+00 - 1.731531279881358e+00 + 1.224743971246489e+00 + 1.731541774704505e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_3(:) = 0.000000000000000e+00 --3.463062368725978e-01 +-3.463146234291521e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.00275 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 0, tcur = 0.003 [DEBUG][rank 0][arkStep_TakeStep_Z][rhs data] sdata(:) = --3.636245041829416e-07 --2.056396258745081e-04 +-5.103609128488848e-07 +-2.886125839880013e-04 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit stage] z_4(:) = - 1.224744099416904e+00 - 1.731614243231879e+00 + 1.224743952680496e+00 + 1.731531270273763e+00 [DEBUG][rank 0][arkStep_TakeStep_Z][explicit RHS] Fe_4(:) = 0.000000000000000e+00 --3.174625963001000e-01 +-3.463062291865219e-01 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [DEBUG][rank 0][arkStep_TakeStep_Z][updated solution] ycur(:) = 1.224743952680496e+00 - 1.731531270273762e+00 + 1.731531270273763e+00 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00263990831138949, h_cfl = 9.99999999999999e+26 -[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00253431197893391, h_cfl = 5e+26 -[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 2.53431197893391 -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000393409923004339 +[DEBUG][rank 0][arkAdapt][new-step-before-bounds] h_acc = 0.00442511206059072, h_cfl = 9.99999999999999e+26 +[DEBUG][rank 0][arkAdapt][new-step-after-max-min-bounds] h_acc = 0.00424810757816709, h_cfl = 5e+26 +[DEBUG][rank 0][arkAdapt][new-step-eta] eta = 4.24810757816709 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.45555066464345e-05 [INFO][rank 0][mriStep_StageERKFast][end-fast-steps] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][slow stage] z_2(:) = 1.224743952680496e+00 - 1.731531270273762e+00 + 1.731531270273763e+00 [INFO][rank 0][mriStep_TakeStepMERK][end-stage] status = success [INFO][rank 0][mriStep_TakeStepMERK][end-group] status = success [DEBUG][rank 0][mriStep_TakeStepMERK][updated solution] ycur(:) = 1.224743952680496e+00 - 1.731531270273762e+00 + 1.731531270273763e+00 [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 1.224743952680496e+00 1.731531270273763e+00 1.527844517568155e-10 1.929567616798522e-13 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Explicit slow RHS fn evals = 6 -Implicit slow RHS fn evals = 0 -Inner stepper failures = 0 -NLS iters = 0 -NLS fails = 0 -NLS iters per step = 0 -LS setups = 0 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Explicit slow RHS fn evals = 6 +Implicit slow RHS fn evals = 0 +Inner stepper failures = 0 +NLS iters = 0 +NLS fails = 0 +NLS iters per step = 0 +LS setups = 0 End MRIStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out index bef62b296d..3674b5cf64 100644 --- a/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out +++ b/test/unit_tests/logging/test_logging_arkode_splittingstep_lvl5.out @@ -15,19 +15,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.999000000000000e+00 +-1.999200000000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.999000500000000e+00 +-1.998800600000000e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.998000999500000e+00 +-1.998000817636364e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.998500562328109e+00 +-1.998000999666750e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -43,19 +43,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0007 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.997001999166917e+00 +-1.997201799266883e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0007999999999999999 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0008 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.997002498667167e+00 +-1.996802798467250e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.996003997168083e+00 +-1.996003815486219e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.996503060683062e+00 +-1.996003997334666e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -75,19 +75,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.962565093355037e-01 + 9.962068028571215e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.962565713491018e-01 + 9.963062914711720e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.965051844016347e-01 + 9.965051618533459e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.963808507364380e-01 + 9.965051843938999e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -103,19 +103,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00035 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.967538904997310e-01 + 9.967041467960084e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0004 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.967539525752606e-01 + 9.968037099362969e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.970027518350598e-01 + 9.970027292642532e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0005 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.968783250391250e-01 + 9.970027518273153e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -129,21 +129,21 @@ Start SplittingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.970027518273153e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006000000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0006 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.972516442333510e-01 + 9.972018632671076e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00065 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.972517063708890e-01 + 9.973015010080887e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.975006920239563e-01 + 9.975006694306039e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00075 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.973761720042489e-01 + 9.975006920162023e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -157,21 +157,21 @@ Start SplittingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.975006920162023e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0008500000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00085 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.977497709085598e-01 + 9.976999526425693e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0009 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.977498331081839e-01 + 9.977996650587908e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.979990053407530e-01 + 9.979989827248265e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.001 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.978743920041221e-01 + 9.979990053329895e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -204,19 +204,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0012 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.996999004333661e+00 +-1.997198804133994e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0013 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.996999503833161e+00 +-1.996799803932728e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.996001003831495e+00 +-1.996000822149904e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.996500066598047e+00 +-1.996001003998078e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -232,19 +232,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0017 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.995003003496079e+00 +-1.995202603596479e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0018 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.995003502496330e+00 +-1.994804002195980e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.994006000495582e+00 +-1.994005818995581e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.994504564448815e+00 +-1.994006000661998e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -264,19 +264,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0011 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.942627570875657e-01 + 9.942131997336910e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00115 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.942628188532231e-01 + 9.943123897962354e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.945106859606808e-01 + 9.945106635025418e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00125 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.943867253765357e-01 + 9.945106859529848e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -292,19 +292,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00135 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.947586457416648e-01 + 9.947090513113002e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0014 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.947587075689439e-01 + 9.948083156020040e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.950067601390137e-01 + 9.950067376584693e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0015 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.948827067965931e-01 + 9.950067601313078e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -320,19 +320,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0016 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.952549054750736e-01 + 9.952052739312243e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00165 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.952549673640512e-01 + 9.953046125241701e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.955032055818046e-01 + 9.955031830788270e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00175 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.953790593885390e-01 + 9.955032055740891e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -348,19 +348,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00185 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.957515366581274e-01 + 9.957018679637533e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0019 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.957515986088810e-01 + 9.958012809331164e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.960000226596211e-01 + 9.960000001341822e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.002 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.958757835228254e-01 + 9.960000226518961e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -393,19 +393,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0022 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.994998016669941e+00 +-1.995197616271409e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0023 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.994998515668945e+00 +-1.994799015867278e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.994001016161611e+00 +-1.994000834662064e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.994499578868605e+00 +-1.994001016328027e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -421,19 +421,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0027 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = --1.993004015819863e+00 +-1.993203415921496e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0028 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = --1.993004514320117e+00 +-1.992805213918535e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = --1.992008011813707e+00 +-1.992007830495569e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = --1.992506076207192e+00 +-1.992008011979957e+00 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -453,19 +453,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0021 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.922710102893448e-01 + 9.922216017608139e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00215 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.922710718078063e-01 + 9.923204938710882e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.925181944669766e-01 + 9.925181720987166e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00225 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.923946062151632e-01 + 9.925181944593190e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -481,19 +481,19 @@ Start SplittingStep Logging test [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00235 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.927654094287544e-01 + 9.927159639721364e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0024 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.927654710085294e-01 + 9.928149300133883e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.930127783878958e-01 + 9.930127559973425e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0025 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.928890977491498e-01 + 9.930127783802287e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -507,21 +507,21 @@ Start SplittingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.930127783802287e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.0026 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.932601781618713e-01 + 9.932106957403567e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.002625 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.00265 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.932602398030363e-01 + 9.933097357862982e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.00275 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.935077320867450e-01 + 9.935077096738708e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.0026875 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.00275 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.933839589689599e-01 + 9.935077320790684e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -535,21 +535,21 @@ Start SplittingStep Logging test [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_0(:) = 9.935077320790684e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success -[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.002850000000000001 +[INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 1, tcur = 0.00285 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_1(:) = - 9.937553168571791e-01 + 9.937057974339129e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 2, tcur = 0.0029 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_2(:) = - 9.937553785598109e-01 + 9.938049115583479e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 3, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_3(:) = - 9.940030559322379e-01 + 9.940030334970146e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-stage] stage = 4, tcur = 0.003 [DEBUG][rank 0][erkStep_TakeStep][stage RHS] F_4(:) = - 9.938791902431920e-01 + 9.940030559245515e-01 [INFO][rank 0][erkStep_TakeStep][end-stage] status = success [INFO][rank 0][erkStep_TakeStep][begin-compute-solution] [DEBUG][rank 0][erkStep_TakeStep][updated solution] ycur(:) = @@ -570,17 +570,17 @@ Start SplittingStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 9.969970190148773e-01 2.989985090406932e-06 --------------------------------------------------------------------- -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -Partition 1 evolves = 3 -Partition 2 evolves = 3 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +Partition 1 evolves = 3 +Partition 2 evolves = 3 End SplittingStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_0.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_0.out index 1963a4cec9..59f292f797 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_0.out @@ -291,17 +291,17 @@ Start SPRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 3.999718759228028e-01 5.999859381323369e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_1.out b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_1.out index 26a0b28118..ccaf2d2f9d 100644 --- a/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_1.out +++ b/test/unit_tests/logging/test_logging_arkode_sprkstep_lvl5_1.out @@ -291,17 +291,17 @@ Start SPRKStep Logging test [INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success 3.000000000000000e-03 3.999718759228029e-01 5.999859381323370e-03 -1.874876962886015e-02 1.999859385545991e+00 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.003 -Steps = 3 -Step attempts = 3 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.001 -Last step size = 0.001 -Current step size = 0.001 -f1 RHS fn evals = 12 -f2 RHS fn evals = 12 +Current time = 0.003 +Steps = 3 +Step attempts = 3 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.001 +Last step size = 0.001 +Current step size = 0.001 +f1 RHS fn evals = 12 +f2 RHS fn evals = 12 End SPRKStep Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl5_0.out b/test/unit_tests/logging/test_logging_cvode_lvl5_0.out index 2365ddc8a8..bfdf65b6da 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl5_0.out @@ -74,20 +74,20 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071475541013, qprime = 2, qwait = 2 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl5_1_0.out b/test/unit_tests/logging/test_logging_cvode_lvl5_1_0.out index 123c616a53..3a292ec00f 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl5_1_0.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl5_1_0.out @@ -115,31 +115,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071470293087, qprime = 2, qwait = 2 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvode_lvl5_1_1.out b/test/unit_tests/logging/test_logging_cvode_lvl5_1_1.out index e7208e6a42..4c5ac9b387 100644 --- a/test/unit_tests/logging/test_logging_cvode_lvl5_1_1.out +++ b/test/unit_tests/logging/test_logging_cvode_lvl5_1_1.out @@ -86,31 +86,31 @@ Using dense direct linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071421416009, qprime = 2, qwait = 2 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODE Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl5_0.out b/test/unit_tests/logging/test_logging_cvodes_lvl5_0.out index 6300f1a556..bae0dc334a 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl5_0.out @@ -74,20 +74,20 @@ Using fixed-point nonlinear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071475541013, qprime = 2, qwait = 2 4.870435267600296e-04 1.224744841922327e+00 1.732034367982330e+00 5.258975033228808e-09 2.744234303353466e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00048704352676003 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071475541013 -Current step size = 0.000281071475541013 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Root fn evals = 0 +Current time = 0.00048704352676003 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071475541013 +Current step size = 0.000281071475541013 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl5_1_0.out b/test/unit_tests/logging/test_logging_cvodes_lvl5_1_0.out index 3a6f4b1e05..75ae987874 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl5_1_0.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl5_1_0.out @@ -115,31 +115,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071470293087, qprime = 2, qwait = 2 4.870435215121043e-04 1.224744842672905e+00 1.732034367979995e+00 4.508398321334539e-09 2.744236933471811e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043521512104 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071470293087 -Current step size = 0.000281071470293087 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 11 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS RHS fn evals = 4 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 4 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 4 -LS iters per NLS iter = 0.5 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043521512104 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071470293087 +Current step size = 0.000281071470293087 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 11 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS RHS fn evals = 4 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 4 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 4 +LS iters per NLS iter = 0.5 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_cvodes_lvl5_1_1.out b/test/unit_tests/logging/test_logging_cvodes_lvl5_1_1.out index 354bacbfed..1358393da9 100644 --- a/test/unit_tests/logging/test_logging_cvodes_lvl5_1_1.out +++ b/test/unit_tests/logging/test_logging_cvodes_lvl5_1_1.out @@ -86,31 +86,31 @@ Using dense direct linear solver [DEBUG][rank 0][cvPrepareNextStep][return] eta = 1, hprime = 0.000281071421416009, qprime = 2, qwait = 2 4.870434726350260e-04 1.224744841922706e+00 1.732034367987314e+00 5.258602220337139e-09 2.744232363793842e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.000487043472635026 -Steps = 3 -Error test fails = 1 -NLS step fails = 0 -Initial step size = 0.000102986025609508 -Last step size = 0.000281071421416009 -Current step size = 0.000281071421416009 -Last method order = 2 -Current method order = 2 -Stab. lim. order reductions = 0 -RHS fn evals = 10 -NLS iters = 7 -NLS fails = 0 -NLS iters per step = 2.33333333333333 -LS setups = 3 -Jac fn evals = 1 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.142857142857143 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.000487043472635026 +Steps = 3 +Error test fails = 1 +NLS step fails = 0 +Initial step size = 0.000102986025609508 +Last step size = 0.000281071421416009 +Current step size = 0.000281071421416009 +Last method order = 2 +Current method order = 2 +Stab. lim. order reductions = 0 +RHS fn evals = 10 +NLS iters = 7 +NLS fails = 0 +NLS iters per step = 2.33333333333333 +LS setups = 3 +Jac fn evals = 1 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.142857142857143 +Prec evals per NLS iter = 0 +Root fn evals = 0 End CVODES Logging test diff --git a/test/unit_tests/logging/test_logging_ida_lvl5_0.out b/test/unit_tests/logging/test_logging_ida_lvl5_0.out index 536faa3ad8..c9a7a88a03 100644 --- a/test/unit_tests/logging/test_logging_ida_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_ida_lvl5_0.out @@ -147,31 +147,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240764380389, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_ida_lvl5_1.out b/test/unit_tests/logging/test_logging_ida_lvl5_1.out index 74649ea001..b3334f8b3c 100644 --- a/test/unit_tests/logging/test_logging_ida_lvl5_1.out +++ b/test/unit_tests/logging/test_logging_ida_lvl5_1.out @@ -98,31 +98,31 @@ Using dense direct linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240380892926, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDA Logging test diff --git a/test/unit_tests/logging/test_logging_idas_lvl5_0.out b/test/unit_tests/logging/test_logging_idas_lvl5_0.out index 6386e335a2..a52ea6e8c5 100644 --- a/test/unit_tests/logging/test_logging_idas_lvl5_0.out +++ b/test/unit_tests/logging/test_logging_idas_lvl5_0.out @@ -147,31 +147,31 @@ Using GMRES iterative linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240764380389, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633826e+00 1.732043140054366e+00 3.790763480893133e-09 2.029337465403458e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 8 -IC linesearch backtrack ops = 0 -NLS iters = 8 -NLS fails = 0 -NLS iters per step = 2.66666666666667 -LS setups = 0 -Jac fn evals = 0 -LS residual fn evals = 10 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 10 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 10 -LS iters per NLS iter = 1.25 -Jac evals per NLS iter = 0 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 8 +IC linesearch backtrack ops = 0 +NLS iters = 8 +NLS fails = 0 +NLS iters per step = 2.66666666666667 +LS setups = 0 +Jac fn evals = 0 +LS residual fn evals = 10 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 10 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 10 +LS iters per NLS iter = 1.25 +Jac evals per NLS iter = 0 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test diff --git a/test/unit_tests/logging/test_logging_idas_lvl5_1.out b/test/unit_tests/logging/test_logging_idas_lvl5_1.out index 52bb8f3bc5..128ca74bd7 100644 --- a/test/unit_tests/logging/test_logging_idas_lvl5_1.out +++ b/test/unit_tests/logging/test_logging_idas_lvl5_1.out @@ -98,31 +98,31 @@ Using dense direct linear solver [DEBUG][rank 0][IDACompleteStep][new-step-and-order] knew = 1, err_knew = 0.368240380892926, eta = 1, hnew = 0.000125 3.125000000000000e-04 1.224744857633637e+00 1.732043140056620e+00 3.790952218807320e-09 2.029335211872763e-06 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.0003125 -Steps = 3 -Error test fails = 2 -NLS step fails = 0 -Initial step size = 0.001 -Last step size = 0.000125 -Current step size = 0.000125 -Last method order = 1 -Current method order = 1 -Residual fn evals = 9 -IC linesearch backtrack ops = 0 -NLS iters = 9 -NLS fails = 0 -NLS iters per step = 3 -LS setups = 4 -Jac fn evals = 4 -LS residual fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.444444444444444 -Prec evals per NLS iter = 0 -Root fn evals = 0 +Current time = 0.0003125 +Steps = 3 +Error test fails = 2 +NLS step fails = 0 +Initial step size = 0.001 +Last step size = 0.000125 +Current step size = 0.000125 +Last method order = 1 +Current method order = 1 +Residual fn evals = 9 +IC linesearch backtrack ops = 0 +NLS iters = 9 +NLS fails = 0 +NLS iters per step = 3 +LS setups = 4 +Jac fn evals = 4 +LS residual fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.444444444444444 +Prec evals per NLS iter = 0 +Root fn evals = 0 End IDAS Logging test From bc7ff836d41fb1caf6721568702d1e7043dac127 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 28 Jan 2025 16:03:50 -0800 Subject: [PATCH 55/67] Update double precision out files --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index c97f7bc3ed..f0e48a0c94 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit c97f7bc3ed758825e3e7e4b65ed576b6543ac59c +Subproject commit f0e48a0c94c4cbf597988fdd1c1d20fad11b2a82 From 71fa6c7edafcb4779c573f0f70f1fa87ce016ad2 Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Wed, 29 Jan 2025 17:28:32 -0800 Subject: [PATCH 56/67] update output files --- ...advection_diffusion_reaction_splitting.out | 132 ++-- .../arkode/C_serial/ark_analytic_nonlin.out | 24 +- examples/arkode/C_serial/ark_robertson.out | 56 +- .../CXX_serial/ark_test_splittingstep.out | 690 +++++++++--------- .../test_logging_arkode_arkstep_lvl3_1_0.out | 94 +-- ...test_logging_arkode_arkstep_lvl3_1_1_0.out | 184 ++--- ...test_logging_arkode_arkstep_lvl3_1_1_1.out | 84 +-- 7 files changed, 632 insertions(+), 632 deletions(-) diff --git a/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out b/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out index 11696b443a..eb5530875b 100644 --- a/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out +++ b/examples/arkode/C_serial/ark_advection_diffusion_reaction_splitting.out @@ -28,75 +28,75 @@ ---------------------- Splitting Stepper Statistics: -Current time = 1 -Steps = 17 -Step attempts = 17 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.06 -Last step size = 0.0399999999999996 -Current step size = 0.06 -Partition 1 evolves = 17 -Partition 2 evolves = 17 -Partition 3 evolves = 17 +Current time = 1 +Steps = 17 +Step attempts = 17 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.06 +Last step size = 0.0399999999999996 +Current step size = 0.06 +Partition 1 evolves = 17 +Partition 2 evolves = 17 +Partition 3 evolves = 17 Advection Stepper Statistics: -Current time = 1 -Steps = 57 -Step attempts = 66 -Stability limited steps = 0 -Accuracy limited steps = 66 -Error test fails = 9 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 2.0593554389295e-06 -Last step size = 0.00403205722386301 -Current step size = 0.00403205722386301 -RHS fn evals = 185 +Current time = 1 +Steps = 57 +Step attempts = 66 +Stability limited steps = 0 +Accuracy limited steps = 66 +Error test fails = 9 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 2.0593554389295e-06 +Last step size = 0.0163569988235519 +Current step size = 0.0163569988235519 +RHS fn evals = 191 Diffusion Stepper Statistics: -Current time = 1 -Steps = 176 -Step attempts = 237 -Stability limited steps = 0 -Accuracy limited steps = 237 -Error test fails = 61 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 2.0593554389295e-06 -Last step size = 0.00655527585775428 -Current step size = 0.00655527585775428 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 1915 -NLS iters = 948 -NLS fails = 0 -NLS iters per step = 3.66801619433198 -LS setups = 213 -Jac fn evals = 72 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.0794701986754967 -Prec evals per NLS iter = 0 +Current time = 1 +Steps = 176 +Step attempts = 237 +Stability limited steps = 0 +Accuracy limited steps = 237 +Error test fails = 61 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 2.0593554389295e-06 +Last step size = 0.0033239408957002 +Current step size = 0.0033239408957002 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 1915 +NLS iters = 948 +NLS fails = 0 +NLS iters per step = 5.38636363636364 +LS setups = 203 +Jac fn evals = 78 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.0822784810126582 +Prec evals per NLS iter = 0 Reaction Stepper Statistics: -Current time = 1 -Steps = 42 -Step attempts = 49 -Stability limited steps = 0 -Accuracy limited steps = 49 -Error test fails = 7 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.00180442856879795 -Last step size = 0.0399999999999996 -Current step size = 0.0399999999999996 -RHS fn evals = 166 +Current time = 1 +Steps = 42 +Step attempts = 49 +Stability limited steps = 0 +Accuracy limited steps = 49 +Error test fails = 7 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.00180442856879795 +Last step size = 0.0399999999999996 +Current step size = 0.0399999999999996 +RHS fn evals = 166 diff --git a/examples/arkode/C_serial/ark_analytic_nonlin.out b/examples/arkode/C_serial/ark_analytic_nonlin.out index da9e2b7d94..4539906d35 100644 --- a/examples/arkode/C_serial/ark_analytic_nonlin.out +++ b/examples/arkode/C_serial/ark_analytic_nonlin.out @@ -18,15 +18,15 @@ Analytical ODE test problem: --------------------- Final Statistics: -Current time = 10.1215709091465 -Steps = 82 -Step attempts = 83 -Stability limited steps = 0 -Accuracy limited steps = 62 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 6.103515625e-12 -Last step size = 0.446351926423408 -Current step size = 0.446351926423408 -RHS fn evals = 417 +Current time = 10.1274372998985 +Steps = 62 +Step attempts = 62 +Stability limited steps = 0 +Accuracy limited steps = 62 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 6.103515625e-12 +Last step size = 0.553529760219145 +Current step size = 0.553529760219145 +RHS fn evals = 251 diff --git a/examples/arkode/C_serial/ark_robertson.out b/examples/arkode/C_serial/ark_robertson.out index 75f172a228..8d3905307e 100644 --- a/examples/arkode/C_serial/ark_robertson.out +++ b/examples/arkode/C_serial/ark_robertson.out @@ -107,31 +107,31 @@ Robertson ODE test problem: -------------------------------------------------- Final Statistics: -Current time = 115949571244.634 -Steps = 740 -Step attempts = 784 -Stability limited steps = 0 -Accuracy limited steps = 139 -Error test fails = 0 -NLS step fails = 2 -Inequality constraint fails = 0 -Initial step size = 1e-08 -Last step size = 7800622211.884792 -Current step size = 22352983592.05556 -Explicit RHS fn evals = 0 -Implicit RHS fn evals = 25084 -NLS iters = 21171 -NLS fails = 46 -NLS iters per step = 28.6094594594595 -LS setups = 208 -Jac fn evals = 52 -LS RHS fn evals = 0 -Prec setup evals = 0 -Prec solves = 0 -LS iters = 0 -LS fails = 0 -Jac-times setups = 0 -Jac-times evals = 0 -LS iters per NLS iter = 0 -Jac evals per NLS iter = 0.00245619007132398 -Prec evals per NLS iter = 0 +Current time = 104593591173.67 +Steps = 139 +Step attempts = 141 +Stability limited steps = 0 +Accuracy limited steps = 139 +Error test fails = 0 +NLS step fails = 2 +Inequality constraint fails = 0 +Initial step size = 1e-08 +Last step size = 7800622211.88479 +Current step size = 22352983592.0556 +Explicit RHS fn evals = 0 +Implicit RHS fn evals = 4997 +NLS iters = 4298 +NLS fails = 39 +NLS iters per step = 30.9208633093525 +LS setups = 110 +Jac fn evals = 40 +LS RHS fn evals = 0 +Prec setup evals = 0 +Prec solves = 0 +LS iters = 0 +LS fails = 0 +Jac-times setups = 0 +Jac-times evals = 0 +LS iters per NLS iter = 0 +Jac evals per NLS iter = 0.00930665425779432 +Prec evals per NLS iter = 0 diff --git a/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out b/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out index 233dec5345..0f47db90a8 100644 --- a/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out +++ b/test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.out @@ -1,385 +1,385 @@ -Forward solution of order 1 with 2 partitions completed with an error of 1.70008e-12 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 125 -Partition 2 evolves = 125 +Forward solution of order 1 with 2 partitions completed with an error of 1.70003e-12 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 125 +Partition 2 evolves = 125 Forward solution of order 2 with 2 partitions completed with an error of 1.65234e-12 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 250 -Partition 2 evolves = 125 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 250 +Partition 2 evolves = 125 -Forward solution of order 3 with 2 partitions completed with an error of 1.0843e-12 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 375 -Partition 2 evolves = 375 +Forward solution of order 3 with 2 partitions completed with an error of 1.08441e-12 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 375 +Partition 2 evolves = 375 -Forward solution of order 4 with 2 partitions completed with an error of -2.71305e-12 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 500 -Partition 2 evolves = 375 +Forward solution of order 4 with 2 partitions completed with an error of -2.16344e-12 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 500 +Partition 2 evolves = 375 Forward solution of order 1 with 3 partitions completed with an error of 7.87148e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 125 -Partition 2 evolves = 125 -Partition 3 evolves = 125 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 125 +Partition 2 evolves = 125 +Partition 3 evolves = 125 Forward solution of order 2 with 3 partitions completed with an error of 7.64167e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 250 -Partition 2 evolves = 250 -Partition 3 evolves = 125 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 250 +Partition 2 evolves = 250 +Partition 3 evolves = 125 Forward solution of order 3 with 3 partitions completed with an error of 4.87888e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 375 -Partition 2 evolves = 625 -Partition 3 evolves = 375 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 375 +Partition 2 evolves = 625 +Partition 3 evolves = 375 -Forward solution of order 4 with 3 partitions completed with an error of -1.02113e-12 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 500 -Partition 2 evolves = 750 -Partition 3 evolves = 375 +Forward solution of order 4 with 3 partitions completed with an error of -1.02107e-12 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 500 +Partition 2 evolves = 750 +Partition 3 evolves = 375 Forward solution of order 1 with 4 partitions completed with an error of 5.57776e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 125 -Partition 2 evolves = 125 -Partition 3 evolves = 125 -Partition 4 evolves = 125 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 125 +Partition 2 evolves = 125 +Partition 3 evolves = 125 +Partition 4 evolves = 125 Forward solution of order 2 with 4 partitions completed with an error of 5.41345e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 250 -Partition 2 evolves = 250 -Partition 3 evolves = 250 -Partition 4 evolves = 125 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 250 +Partition 2 evolves = 250 +Partition 3 evolves = 250 +Partition 4 evolves = 125 -Forward solution of order 3 with 4 partitions completed with an error of 3.46445e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 375 -Partition 2 evolves = 625 -Partition 3 evolves = 625 -Partition 4 evolves = 375 +Forward solution of order 3 with 4 partitions completed with an error of 3.46334e-13 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 375 +Partition 2 evolves = 625 +Partition 3 evolves = 625 +Partition 4 evolves = 375 -Forward solution of order 4 with 4 partitions completed with an error of -7.25808e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 500 -Partition 2 evolves = 750 -Partition 3 evolves = 750 -Partition 4 evolves = 375 +Forward solution of order 4 with 4 partitions completed with an error of -7.25753e-13 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 500 +Partition 2 evolves = 750 +Partition 3 evolves = 750 +Partition 4 evolves = 375 Forward solution of order 1 with 5 partitions completed with an error of 4.72899e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 125 -Partition 2 evolves = 125 -Partition 3 evolves = 125 -Partition 4 evolves = 125 -Partition 5 evolves = 125 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 125 +Partition 2 evolves = 125 +Partition 3 evolves = 125 +Partition 4 evolves = 125 +Partition 5 evolves = 125 Forward solution of order 2 with 5 partitions completed with an error of 4.58966e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 250 -Partition 2 evolves = 250 -Partition 3 evolves = 250 -Partition 4 evolves = 250 -Partition 5 evolves = 125 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 250 +Partition 2 evolves = 250 +Partition 3 evolves = 250 +Partition 4 evolves = 250 +Partition 5 evolves = 125 -Forward solution of order 3 with 5 partitions completed with an error of 2.95819e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 375 -Partition 2 evolves = 625 -Partition 3 evolves = 625 -Partition 4 evolves = 625 -Partition 5 evolves = 375 +Forward solution of order 3 with 5 partitions completed with an error of 2.95708e-13 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 375 +Partition 2 evolves = 625 +Partition 3 evolves = 625 +Partition 4 evolves = 625 +Partition 5 evolves = 375 -Forward solution of order 4 with 5 partitions completed with an error of -6.1845e-13 -Current time = 1 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 500 -Partition 2 evolves = 750 -Partition 3 evolves = 750 -Partition 4 evolves = 750 -Partition 5 evolves = 375 +Forward solution of order 4 with 5 partitions completed with an error of -6.18394e-13 +Current time = 1 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 500 +Partition 2 evolves = 750 +Partition 3 evolves = 750 +Partition 4 evolves = 750 +Partition 5 evolves = 375 Mixed direction solution using ARKODE_SPLITTING_STRANG_2_2_2 completed with an error of 5.094e-07 -Current time = -0.000980000000001729 -Steps = 2279 -Step attempts = 2279 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = -0.00123 -Last step size = -0.00123 -Current step size = -0.00123 -Partition 1 evolves = 4558 -Partition 2 evolves = 2279 +Current time = -0.000980000000001729 +Steps = 2279 +Step attempts = 2279 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = -0.00123 +Last step size = -0.00123 +Current step size = -0.00123 +Partition 1 evolves = 4558 +Partition 2 evolves = 2279 Mixed direction solution using ARKODE_SPLITTING_BEST_2_2_2 completed with an error of 5.09492e-07 -Current time = -0.000980000000001729 -Steps = 2279 -Step attempts = 2279 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = -0.00123 -Last step size = -0.00123 -Current step size = -0.00123 -Partition 1 evolves = 4558 -Partition 2 evolves = 4558 +Current time = -0.000980000000001729 +Steps = 2279 +Step attempts = 2279 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = -0.00123 +Last step size = -0.00123 +Current step size = -0.00123 +Partition 1 evolves = 4558 +Partition 2 evolves = 4558 Mixed direction solution using ARKODE_SPLITTING_SUZUKI_3_3_2 completed with an error of 1.08724e-10 -Current time = -0.000980000000001729 -Steps = 2279 -Step attempts = 2279 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = -0.00123 -Last step size = -0.00123 -Current step size = -0.00123 -Partition 1 evolves = 6837 -Partition 2 evolves = 6837 +Current time = -0.000980000000001729 +Steps = 2279 +Step attempts = 2279 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = -0.00123 +Last step size = -0.00123 +Current step size = -0.00123 +Partition 1 evolves = 6837 +Partition 2 evolves = 6837 Mixed direction solution using ARKODE_SPLITTING_RUTH_3_3_2 completed with an error of 1.96248e-10 -Current time = -0.000980000000001729 -Steps = 2279 -Step attempts = 2279 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = -0.00123 -Last step size = -0.00123 -Current step size = -0.00123 -Partition 1 evolves = 6837 -Partition 2 evolves = 6837 +Current time = -0.000980000000001729 +Steps = 2279 +Step attempts = 2279 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = -0.00123 +Last step size = -0.00123 +Current step size = -0.00123 +Partition 1 evolves = 6837 +Partition 2 evolves = 6837 Resized solution completed with an error of 7.14694e-06 -Current time = 1.004 -Steps = 126 -Step attempts = 126 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 252 -Partition 2 evolves = 252 +Current time = 1.004 +Steps = 126 +Step attempts = 126 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 252 +Partition 2 evolves = 252 Custom SUNStepper solution of order 4 completed with an error of -8.32667e-16 -Current time = 1.1 -Steps = 11 -Step attempts = 11 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.1 -Last step size = 0.1 -Current step size = 0.1 -Partition 1 evolves = 66 -Partition 2 evolves = 55 +Current time = 1.1 +Steps = 11 +Step attempts = 11 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.1 +Last step size = 0.1 +Current step size = 0.1 +Partition 1 evolves = 66 +Partition 2 evolves = 55 Custom SUNStepper solution of order 6 completed with an error of 1.16573e-15 -Current time = 1.1 -Steps = 11 -Step attempts = 11 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.1 -Last step size = 0.1 -Current step size = 0.1 -Partition 1 evolves = 286 -Partition 2 evolves = 275 +Current time = 1.1 +Steps = 11 +Step attempts = 11 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.1 +Last step size = 0.1 +Current step size = 0.1 +Partition 1 evolves = 286 +Partition 2 evolves = 275 -Reinitialized solution completed with an error of -2.44249e-15 -Current time = 2 -Steps = 125 -Step attempts = 125 -Stability limited steps = 0 -Accuracy limited steps = 0 -Error test fails = 0 -NLS step fails = 0 -Inequality constraint fails = 0 -Initial step size = 0.008 -Last step size = 0.008 -Current step size = 0.008 -Partition 1 evolves = 250 -Partition 2 evolves = 125 +Reinitialized solution completed with an error of -2.88658e-15 +Current time = 2 +Steps = 125 +Step attempts = 125 +Stability limited steps = 0 +Accuracy limited steps = 0 +Error test fails = 0 +NLS step fails = 0 +Inequality constraint fails = 0 +Initial step size = 0.008 +Last step size = 0.008 +Current step size = 0.008 +Partition 1 evolves = 250 +Partition 2 evolves = 125 Success diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out index 1cfa388938..82d9123cf8 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_0.out @@ -35,10 +35,10 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.270379821731715 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 0.2703798217317151 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801208512e-06 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 8.460243801243654e-06 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -55,146 +55,146 @@ Using fixed-point nonlinear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05238430747946e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.05238430477809e-09 1.029860256095084e-04 1.224744870309105e+00 1.732050195224278e+00 1.332267629550188e-15 8.881784197001252e-16 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00497414198304541 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00497414198551391 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00259005701713221 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00259005701836646 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878045794722 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 157.9878047303152 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2132943179163734 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.213294318213662 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000831432253734158 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000831432254095662 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745956564198 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 16.06745957984698 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682984423547 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.02352682987640205 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00321182476501289 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0032118247665557 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628485946814 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 243.0628488284655 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005044937403 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.3187005049355566 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00527609368797673 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00527609369054398 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028113429431 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 656.0028119813453 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991732185001 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7799991742706002 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087293412658 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.002009087297336198 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00507712800865492 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00507712801112342 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286068246216 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 607.5286074154952 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994911904798 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.7291994921768932 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537235589097 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.001874537239449411 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00577768580132696 - 5.077128008654917e-03 1.224742240522226e+00 1.730563198065185e+00 5.210498699170785e-12 3.727240738271576e-12 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00507712800865492, h = 0.00289435148264577 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00507712800865492 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00577768581282624 + 5.077128011123421e-03 1.224742240522223e+00 1.730563198063739e+00 5.210498699170785e-12 3.727240738271576e-12 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00507712801112342, h = 0.00289435148244836 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00507712801112342 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0065243037499778 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.0065243037523476 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422796849768 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 395.7422798229331 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841554791242 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.2579841555230246 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00550099596971972 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00550099597215932 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191489779 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 105.7226191908009 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307475559162 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.07231307477081039 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00688609768530853 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00688609768765365 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655472878314 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 510.0655474581444 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988497214 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.326993988548783 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808725355060652 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808725355286972 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341499829686 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 933.6341502545673 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855435739141 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5670855436438348 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950527502381 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008742950526212932 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00797147949130069 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00797147949357179 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-solver] solver = Fixed-Point [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724335587325 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 1, update-norm = 889.8724338209779 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528495900837 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 2, update-norm = 0.5432528496587065 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][begin-nonlinear-iterate] -[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559093605087 +[INFO][rank 0][SUNNonlinSolSolve_FixedPoint][nonlinear-iterate] cur-iter = 3, update-norm = 0.0008366559094275988 [INFO][rank 0][SUNNonlinSolSolve_FixedPoint][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 3 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000667541461244115 - 7.971479491300691e-03 1.224738385936597e+00 1.728385952124896e+00 9.706901948902669e-12 3.469668996558539e-12 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000667541460998551 + 7.971479493571786e-03 1.224738385936593e+00 1.728385952122810e+00 9.707123993507594e-12 3.469446951953614e-12 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00797147949130069 +Current time = 0.00797147949357179 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -203,8 +203,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.000102986025609508 -Last step size = 0.00289435148264577 -Current step size = 0.0148851325728492 +Last step size = 0.00289435148244836 +Current step size = 0.0148851325762401 Explicit RHS fn evals = 0 Implicit RHS fn evals = 49 NLS iters = 31 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out index 108c0c5d13..bfb76b8e73 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_0.out @@ -71,7 +71,7 @@ Using GMRES iterative linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 0.2703729285399011 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824623e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.904718983824396e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -100,126 +100,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06050616602604e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06050616332464e-09 1.029860256095084e-04 1.224744870316961e+00 1.732050195224250e+00 7.854161765408207e-12 2.731148640577885e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496675422312682 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496675422557281 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258636313717292 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258636313839591 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366823253987, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 157.5366824746531, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905127158407, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 222.7905129269183, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351659917327 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.1948351662720349 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.539312788374185e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.882531734419718e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.539312788374185e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754497113704 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.882531734419718e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3754498604105 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448156610062e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.082448294422972e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830350341342969 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830350341701177 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497452804125, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 16.02497454209836, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273631423932, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 22.66273633411908, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553135597982 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.01982553138311062 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.071535650853336e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 8.011411444024011e-15 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.071535650853336e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624678638776 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 8.011411444024011e-15 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00624680041969 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395866022775986e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 2.395867358197889e-07, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320720741506377 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320720741659252 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636799879348, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 242.3636802192543, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540032655901, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 342.7540035927252, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964986383052 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2996964990715293 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.948588646235637e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.789668240619014e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.948588646235637e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280762384555 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.789668240619014e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.1280764694615 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896834065384e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.661896653991349e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0052684104176614 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00526841042020523 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935820216669, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 654.0935826533287, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280147562397, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 925.0280156495445, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.80823181193877 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.8082318131156221 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.635179301029465e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 6.120002960573796e-17 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.635179301029465e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692023218828 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 6.120002960573796e-17 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.5692029529639 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.00028701536186056, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002870153813341939, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506974024873633 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506974025118232 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615178930309, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 605.7615184776663, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761541680366, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 856.6761549948359, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726379422214 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.7485726390321624 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 4.08971449261438e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.304767851710737e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 4.08971449261438e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.265941067359 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.304767851710737e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.2659416513743 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.000249564687271857, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002495646797049599, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -227,126 +227,126 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574336054534255 - 5.069740248736325e-03 1.224742248556792e+00 1.730567522072307e+00 3.889519817334985e-10 2.440982971307903e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506974024873633, h = 0.00289494152474525 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506974024873633 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574336055672564 + 5.069740251182322e-03 1.224742248556789e+00 1.730567522070876e+00 3.889517596888936e-10 2.440982971307903e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506974025118232, h = 0.00289494152454546 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506974025118232 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651721101110895 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651721101345505 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291832667672, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 395.3291834028905, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.079892577741, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 559.0798927702483, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.2844296690428963 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.284429669121418 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 7.689625129912962e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.856087007983854e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 7.689625129912962e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681714724712 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.856087007983854e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.1681716085887 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724634024090804e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 5.724633885979543e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549369461946601 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549369462188274 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918432218, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 105.5973918845246, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372636959103, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 149.3372637543213, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702546356424 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.07601702547676896 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 9.743428383750915e-15 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.628034972992036e-14 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 9.743428383750915e-15 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491707937726 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.628034972992036e-14 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5491708350703 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265621792903265e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 4.265628637698205e-06, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00687907870170211 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00687907870402324 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555520155276, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 509.5555521835236, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203724428682, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 720.6203726804505, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.366534529643799 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.3665345296848642 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.506305455047092e-14 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.707140230613715e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.506305455047092e-14 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569019654059 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.707140230613715e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.3569021334169 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.41936993456799e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 9.419373834637885e-05, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808047943447139 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.0080804794367096 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.820797410297, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 932.8207976779007, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207822961327, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1319.207823339776, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810696378324 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6704810697841036 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.043442040705694e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 1.719488409552539e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.043442040705694e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110606696143 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 1.719488409552539e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.5110609372421 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313402503713, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0003155313404565604, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796468177348158 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796468177572779 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870949936611, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 889.0870952520789, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][SUNLinSolSolve_SPGMR][linear-solver] solver = spgmr [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.359027870932, status = continue +[INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] cur-iter = 0, total-iters = 0, res-norm = 1257.35902823639, status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969989650043 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 1, total-iters = 1, res-norm = 0.6390969991067312 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = continue [INFO][rank 0][SUNLinSolSolve_SPGMR][begin-linear-iterate] -[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 3.97124359201826e-13 +[INFO][rank 0][SUNLinSolSolve_SPGMR][linear-iterate] cur-iter = 2, total-iters = 2, res-norm = 2.259213533922895e-13 [INFO][rank 0][SUNLinSolSolve_SPGMR][end-linear-iterate] status = success -[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 3.97124359201826e-13 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869312485084 +[INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 2, p-solves = 0, resnorm = 2.259213533922895e-13 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.7869315069474 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] -[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267402460637, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 +[INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 1, b-norm = 0.0002860267403498561, b-tol = 0.0005000000000000001, res-tol = 0.0007071067811865477 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success small rhs [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success @@ -354,10 +354,10 @@ Using GMRES iterative linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668065908928318 - 7.964681773481579e-03 1.224738397861497e+00 1.728392193104400e+00 8.783298532932804e-10 1.803091009833224e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668065908713057 + 7.964681775727785e-03 1.224738397861493e+00 1.728392193102339e+00 8.783296312486755e-10 1.803088789387175e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00796468177348158 +Current time = 0.00796468177572779 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -366,8 +366,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.000102986025609508 -Last step size = 0.00289494152474525 -Current step size = 0.014875886310186 +Last step size = 0.00289494152454546 +Current step size = 0.0148758863134129 Explicit RHS fn evals = 0 Implicit RHS fn evals = 45 NLS iters = 27 diff --git a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out index 30a5d26ecf..e78ffef2b8 100644 --- a/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out +++ b/test/unit_tests/logging/test_logging_arkode_arkstep_lvl3_1_1_1.out @@ -49,7 +49,7 @@ Using dense direct linear solver [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842759940812e-08 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 2.580842755618676e-08 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success @@ -65,174 +65,174 @@ Using dense direct linear solver [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06054698449686e-09 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 1.06054698179545e-09 1.029860256095084e-04 1.224744870309106e+00 1.732050195224331e+00 2.220446049250313e-16 5.417888360170764e-14 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.00496671726474331 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 2, tn = 0.000102986025609508, h = 0.0049667172671892 [INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.000102986025609508 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258634465798116 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00258634465920411 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401886078219 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 157.3401887567888 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824834014635 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.03298824840356065 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830344928913016 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.000830344929271207 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500371247808 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 16.00500372650739 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799203649459 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.001030799205527649 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320718431607408 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.00320718431760276 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613569759502 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 242.0613572068255 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324507830747 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.06318324520025331 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00526837198094255 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00526837198348627 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775595050387 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 653.2775601354925 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769922509453 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2818769927988289 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00506970329035282 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.0050697032927987 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.0057975967644 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 605.005798180281 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.2511122224022418 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.251112222890202 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574318202038279 - 5.069703290352819e-03 1.224742248195362e+00 1.730567544198885e+00 1.072431032866916e-11 2.655438091636597e-10 -[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.00506970329035282, h = 0.00289494518004573 -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.00506970329035282 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.00574318203167179 + 5.069703292798704e-03 1.224742248195360e+00 1.730567544197454e+00 1.072431032866916e-11 2.655440312082646e-10 +[INFO][rank 0][ARKodeEvolve][begin-step-attempt] step = 3, tn = 0.0050697032927987, h = 0.00289494517985504 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 0, implicit = 0, tcur = 0.0050697032927987 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651717588037568 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 1, implicit = 1, tcur = 0.00651717588272622 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.0430042964744 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 395.043004433908 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599515968683 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1231599516763003 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819638886 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 2, implicit = 1, tcur = 0.00549365819880682 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208731951771 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 105.5208732367982 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.02768906071174051 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.0276890607331008 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0068790440278814 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 3, implicit = 1, tcur = 0.0068790440302081 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868001832096 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 509.1868003529424 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.1676270895079329 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.167627089609758 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808044627760037 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 4, implicit = 1, tcur = 0.00808044627984794 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463592806854 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 932.1463595517242 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066040662974 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3608066042483682 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success -[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796464847039855 +[INFO][rank 0][arkStep_TakeStep_Z][begin-stage] stage = 5, implicit = 1, tcur = 0.00796464847265374 [INFO][rank 0][arkStep_Nls][begin-nonlinear-solve] tol = 0.1 [INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-solver] solver = Newton [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442245792432 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 1, total-iters = 1, update-norm = 888.4442248409132 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = continue [INFO][rank 0][SUNNonlinSolSolve_Newton][begin-nonlinear-iterate] [INFO][rank 0][arkLsSolve][begin-linear-solve] iterative = 0 [INFO][rank 0][arkLsSolve][end-linear-solve] status = success, iters = 0, p-solves = 0, resnorm = 0 -[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383851641306 +[INFO][rank 0][SUNNonlinSolSolve_Newton][nonlinear-iterate] cur-iter = 2, total-iters = 2, update-norm = 0.3389383853383472 [INFO][rank 0][SUNNonlinSolSolve_Newton][end-nonlinear-iterate] status = success [INFO][rank 0][arkStep_Nls][end-nonlinear-solve] status = success, iters = 2 [INFO][rank 0][arkStep_TakeStep_Z][end-stage] status = success [INFO][rank 0][arkStep_TakeStep_Z][begin-compute-solution] mass type = 0 [INFO][rank 0][arkStep_TakeStep_Z][end-compute-solution] status = success -[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668069728036845 - 7.964648470398546e-03 1.224738397026475e+00 1.728392224431184e+00 1.083555467573660e-11 5.830909088899716e-10 +[INFO][rank 0][ARKodeEvolve][end-step-attempt] status = success, dsm = 0.000668069727857512 + 7.964648472653739e-03 1.224738397026471e+00 1.728392224429115e+00 1.083555467573660e-11 5.830909088899716e-10 ------------------------------------------------------------------------------------------------------------------------------ -Current time = 0.00796464847039855 +Current time = 0.00796464847265374 Steps = 3 Step attempts = 3 Stability limited steps = 0 @@ -241,8 +241,8 @@ Error test fails = 0 NLS step fails = 0 Inequality constraint fails = 0 Initial step size = 0.000102986025609508 -Last step size = 0.00289494518004573 -Current step size = 0.0148758371986517 +Last step size = 0.00289494517985504 +Current step size = 0.0148758372017537 Explicit RHS fn evals = 0 Implicit RHS fn evals = 44 NLS iters = 26 From 42e86cbd21f1663ecd7aaf321d2afbc8bfd5ffc0 Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Thu, 30 Jan 2025 00:07:53 -0800 Subject: [PATCH 57/67] update answers submodule --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index f0e48a0c94..666eb54d56 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit f0e48a0c94c4cbf597988fdd1c1d20fad11b2a82 +Subproject commit 666eb54d56d1f6261a70d2b916e8b9203ce741a2 From af5f5e35dd78e81beac61781df4bad3481763b03 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Thu, 30 Jan 2025 11:11:24 -0800 Subject: [PATCH 58/67] Adjust ark_heat1D_omp to be more suitable for single precision. Hopefully fixes inconsistent CI test results --- examples/arkode/C_openmp/ark_heat1D_omp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/arkode/C_openmp/ark_heat1D_omp.c b/examples/arkode/C_openmp/ark_heat1D_omp.c index a709996d98..897f6966a0 100644 --- a/examples/arkode/C_openmp/ark_heat1D_omp.c +++ b/examples/arkode/C_openmp/ark_heat1D_omp.c @@ -85,8 +85,8 @@ int main(int argc, char* argv[]) sunrealtype T0 = SUN_RCONST(0.0); /* initial time */ sunrealtype Tf = SUN_RCONST(1.0); /* final time */ int Nt = 10; /* total number of output times */ - sunrealtype rtol = 1.e-6; /* relative tolerance */ - sunrealtype atol = 1.e-10; /* absolute tolerance */ + sunrealtype rtol = 1.e-4; /* relative tolerance */ + sunrealtype atol = 1.e-6; /* absolute tolerance */ UserData udata = NULL; sunrealtype* data; sunindextype N = 201; /* spatial mesh size */ From 6ed0bfd338f4b5bcd3d864c65ba317fd47543277 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Thu, 30 Jan 2025 13:41:45 -0800 Subject: [PATCH 59/67] Update ark_heat1D_omp out files --- examples/arkode/C_openmp/ark_heat1D_omp.out | 12 ++++++------ test/answers | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/arkode/C_openmp/ark_heat1D_omp.out b/examples/arkode/C_openmp/ark_heat1D_omp.out index 0a45883971..3da0bb6f5e 100644 --- a/examples/arkode/C_openmp/ark_heat1D_omp.out +++ b/examples/arkode/C_openmp/ark_heat1D_omp.out @@ -6,7 +6,7 @@ ------------------------- 0.000000 0.000000 0.100000 0.001165 - 0.200000 0.001826 + 0.200000 0.001827 0.300000 0.002235 0.400000 0.002486 0.500000 0.002639 @@ -18,12 +18,12 @@ ------------------------- Final Solver Statistics: - Internal solver steps = 81 (attempted = 81) - Total RHS evals: Fe = 0, Fi = 813 + Internal solver steps = 18 (attempted = 18) + Total RHS evals: Fe = 0, Fi = 181 Total linear solver setups = 0 - Total linear iterations = 11184 - Total number of Jacobian-vector products = 11184 + Total linear iterations = 7632 + Total number of Jacobian-vector products = 7632 Total number of linear solver convergence failures = 0 - Total number of Newton iterations = 405 + Total number of Newton iterations = 90 Total number of nonlinear solver convergence failures = 0 Total number of error test failures = 0 diff --git a/test/answers b/test/answers index 666eb54d56..e07c8084ad 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit 666eb54d56d1f6261a70d2b916e8b9203ce741a2 +Subproject commit e07c8084ad583f2cd5bcdc69d06822b1f8642f89 From 7f2c64170ebffb8190f15a96644dc7f3ac47f813 Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Fri, 31 Jan 2025 09:59:00 -0800 Subject: [PATCH 60/67] update ark_heat1D_omp output --- examples/arkode/C_openmp/ark_heat1D_omp.out | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/arkode/C_openmp/ark_heat1D_omp.out b/examples/arkode/C_openmp/ark_heat1D_omp.out index 3da0bb6f5e..76e9650c5e 100644 --- a/examples/arkode/C_openmp/ark_heat1D_omp.out +++ b/examples/arkode/C_openmp/ark_heat1D_omp.out @@ -7,23 +7,23 @@ 0.000000 0.000000 0.100000 0.001165 0.200000 0.001827 - 0.300000 0.002235 + 0.300000 0.002236 0.400000 0.002486 0.500000 0.002639 0.600000 0.002733 0.700000 0.002790 - 0.800000 0.002825 + 0.800000 0.002826 0.900000 0.002846 1.000000 0.002859 ------------------------- Final Solver Statistics: - Internal solver steps = 18 (attempted = 18) - Total RHS evals: Fe = 0, Fi = 181 + Internal solver steps = 19 (attempted = 19) + Total RHS evals: Fe = 0, Fi = 193 Total linear solver setups = 0 - Total linear iterations = 7632 - Total number of Jacobian-vector products = 7632 + Total linear iterations = 5287 + Total number of Jacobian-vector products = 5287 Total number of linear solver convergence failures = 0 - Total number of Newton iterations = 90 + Total number of Newton iterations = 95 Total number of nonlinear solver convergence failures = 0 Total number of error test failures = 0 From e586758d946ecd28b38e691c2668bf1a8e2b777e Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 11 Feb 2025 10:34:18 -0800 Subject: [PATCH 61/67] Add back default IMEX tables to constants docs --- doc/arkode/guide/source/Constants.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/doc/arkode/guide/source/Constants.rst b/doc/arkode/guide/source/Constants.rst index b6d3ef3a6b..5d0bc9cfb6 100644 --- a/doc/arkode/guide/source/Constants.rst +++ b/doc/arkode/guide/source/Constants.rst @@ -151,6 +151,25 @@ contains the ARKODE output constants. +-----------------------------------------------+------------------------------------------------------------+ | | | +-----------------------------------------------+------------------------------------------------------------+ + | **Default ImEx Butcher tables** | | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_2` & | Use ARKStep's default second-order ARK method | + | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_2` | (ARKODE_ARK2_ERK_3_1_2 and ARKODE_ARK2_DIRK_3_1_2). | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_3` & | Use ARKStep's default third-order ARK method | + | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_3` | (ARKODE_ARK324L2SA_ERK_4_2_3 and | + | | ARKODE_ARK324L2SA_DIRK_4_2_3). | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_4` & | Use ARKStep's default fourth-order ARK method | + | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_4` | (ARKODE_ARK436L2SA_ERK_6_3_4 and | + | | ARKODE_ARK436L2SA_DIRK_6_3_4). | + +-----------------------------------------------+------------------------------------------------------------+ + | :index:`ARKSTEP_DEFAULT_ARK_ETABLE_5` & | Use ARKStep's default fifth-order ARK method | + | :index:`ARKSTEP_DEFAULT_ARK_ITABLE_5` | (ARKODE_ARK548L2SA_ERK_8_4_5 and | + | | ARKODE_ARK548L2SA_DIRK_8_4_5). | + +-----------------------------------------------+------------------------------------------------------------+ + | | | + +-----------------------------------------------+------------------------------------------------------------+ | **LSRK method types** | | +-----------------------------------------------+------------------------------------------------------------+ | :index:`ARKODE_LSRK_RKC_2` | 2nd order Runge-Kutta-Chebyshev (RKC) method | From 686f169cf290801fd7d1f52cf2eddccd99c37967 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 11 Feb 2025 11:11:50 -0800 Subject: [PATCH 62/67] Use 2nd order for relaxation tests so there's enough steps to output --- examples/arkode/C_serial/ark_conserved_exp_entropy_ark.c | 9 ++++----- examples/arkode/C_serial/ark_conserved_exp_entropy_erk.c | 4 ++++ examples/arkode/C_serial/ark_dissipated_exp_entropy.c | 9 ++++----- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/examples/arkode/C_serial/ark_conserved_exp_entropy_ark.c b/examples/arkode/C_serial/ark_conserved_exp_entropy_ark.c index 0fefdab58d..ed0d3a8428 100644 --- a/examples/arkode/C_serial/ark_conserved_exp_entropy_ark.c +++ b/examples/arkode/C_serial/ark_conserved_exp_entropy_ark.c @@ -210,6 +210,10 @@ int main(int argc, char* argv[]) else { arkode_mem = ARKStepCreate(f, NULL, t0, y, ctx); } if (check_ptr(arkode_mem, "ARKStepCreate")) { return 1; } + /* Set order */ + flag = ARKodeSetOrder(arkode_mem, 2); + if (check_flag(flag, "ARKodeSetOrder")) { return 1; } + /* Specify tolerances */ flag = ARKodeSStolerances(arkode_mem, reltol, abstol); if (check_flag(flag, "ARKodeSStolerances")) { return 1; } @@ -238,11 +242,6 @@ int main(int argc, char* argv[]) flag = ARKodeSetJacFn(arkode_mem, Jac); if (check_flag(flag, "ARKodeSetJacFn")) { return 1; } - /* Select a Butcher table with non-negative b values */ - flag = ARKStepSetTableName(arkode_mem, "ARKODE_ARK2_DIRK_3_1_2", - "ARKODE_ERK_NONE"); - if (check_flag(flag, "ARKStepSetTableName")) { return 1; } - /* Tighten nonlinear solver tolerance */ flag = ARKodeSetNonlinConvCoef(arkode_mem, SUN_RCONST(0.01)); if (check_flag(flag, "ARKodeSetNonlinConvCoef")) { return 1; } diff --git a/examples/arkode/C_serial/ark_conserved_exp_entropy_erk.c b/examples/arkode/C_serial/ark_conserved_exp_entropy_erk.c index c85ee1551a..bce89e820c 100644 --- a/examples/arkode/C_serial/ark_conserved_exp_entropy_erk.c +++ b/examples/arkode/C_serial/ark_conserved_exp_entropy_erk.c @@ -197,6 +197,10 @@ int main(int argc, char* argv[]) arkode_mem = ERKStepCreate(f, t0, y, ctx); if (check_ptr(arkode_mem, "ERKStepCreate")) { return 1; } + /* Set order */ + flag = ARKodeSetOrder(arkode_mem, 2); + if (check_flag(flag, "ARKodeSetOrder")) { return 1; } + /* Specify tolerances */ flag = ARKodeSStolerances(arkode_mem, reltol, abstol); if (check_flag(flag, "ARKodeSStolerances")) { return 1; } diff --git a/examples/arkode/C_serial/ark_dissipated_exp_entropy.c b/examples/arkode/C_serial/ark_dissipated_exp_entropy.c index 8e5869a600..efb7aaef7b 100644 --- a/examples/arkode/C_serial/ark_dissipated_exp_entropy.c +++ b/examples/arkode/C_serial/ark_dissipated_exp_entropy.c @@ -186,6 +186,10 @@ int main(int argc, char* argv[]) else { arkode_mem = ARKStepCreate(f, NULL, t0, y, ctx); } if (check_ptr(arkode_mem, "ARKStepCreate")) { return 1; } + /* Set order */ + flag = ARKodeSetOrder(arkode_mem, 2); + if (check_flag(flag, "ARKodeSetOrder")) { return 1; } + /* Specify tolerances */ flag = ARKodeSStolerances(arkode_mem, reltol, abstol); if (check_flag(flag, "ARKodeSStolerances")) { return 1; } @@ -214,11 +218,6 @@ int main(int argc, char* argv[]) flag = ARKodeSetJacFn(arkode_mem, Jac); if (check_flag(flag, "ARKodeSetJacFn")) { return 1; } - /* Select a Butcher table with non-negative b values */ - flag = ARKStepSetTableName(arkode_mem, "ARKODE_ARK2_DIRK_3_1_2", - "ARKODE_ERK_NONE"); - if (check_flag(flag, "ARKStepSetTableName")) { return 1; } - /* Tighten nonlinear solver tolerance */ flag = ARKodeSetNonlinConvCoef(arkode_mem, SUN_RCONST(0.01)); if (check_flag(flag, "ARKodeSetNonlinConvCoef")) { return 1; } From 96bdf0ddbd5e0470de0c94e46218896cbccb9aa0 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 11 Feb 2025 12:42:35 -0800 Subject: [PATCH 63/67] Update out files for relaxation examples --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index e07c8084ad..bf81de4dd4 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit e07c8084ad583f2cd5bcdc69d06822b1f8642f89 +Subproject commit bf81de4dd4208ac89c70ae5f08bc18371effc7c0 From 8eeb08edc4f4197820e5d9d1d48117d870d94569 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 11 Feb 2025 13:24:35 -0800 Subject: [PATCH 64/67] Apply formatter to external --- external/CMakeLists.txt | 26 ++++++++++++++------------ external/sundials-addon-example | 2 +- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 590ec02f03..5c4aa00613 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -11,21 +11,23 @@ # --------------------------------------------------------------- # Steps to add an external addon to SUNDIALS: -# WARNING: external addons are not maintained by the SUNDIALS team -# and may come with their own license with different rules. # -# 1. Clone/copy the addon into /external/ -# (the same directory as this file you are reading). -# 2. Copy the sundials-addon-example block for your own external project. -# 3. When building SUNDIALS, set the CMake option SUNDIALS_ENABLE_EXTERNAL_ADDONS to ON -# 4. Build SUNDIALS as usual. +# WARNING: external addons are not maintained by the SUNDIALS team and may come +# with their own license with different rules. +# +# 1. Clone/copy the addon into /external/ (the same directory as +# this file you are reading). +# 2. Copy the sundials-addon-example block for your own external project. +# 3. When building SUNDIALS, set the CMake option SUNDIALS_ENABLE_EXTERNAL_ADDONS +# to ON +# 4. Build SUNDIALS as usual. include(FetchContent) -# COPY THE FetchContent BLOCK BELOW FOR YOUR OWN EXTERNAL ADDON -# COMMENT THESE LINES OUT TO DISABLE THE EXAMPLE ADDON -FetchContent_Declare(sundials-addon-example - SOURCE_DIR ${PROJECT_SOURCE_DIR}/external/sundials-addon-example -) +# COPY THE FetchContent BLOCK BELOW FOR YOUR OWN EXTERNAL ADDON COMMENT THESE +# LINES OUT TO DISABLE THE EXAMPLE ADDON +FetchContent_Declare( + sundials-addon-example SOURCE_DIR + ${PROJECT_SOURCE_DIR}/external/sundials-addon-example) FetchContent_MakeAvailable(sundials-addon-example) # COPY THE BLOCK ABOVE FOR YOUR OWN EXTERNAL ADDON diff --git a/external/sundials-addon-example b/external/sundials-addon-example index ff9a45d82c..16f35555c3 160000 --- a/external/sundials-addon-example +++ b/external/sundials-addon-example @@ -1 +1 @@ -Subproject commit ff9a45d82c12f24c9363185e4149a9ca97906ed1 +Subproject commit 16f35555c3cae9d40a00aa65648e2242c58f1d31 From 72a165da6d9a6062c3fb17610e2a337d7edbde68 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 11 Feb 2025 14:17:20 -0800 Subject: [PATCH 65/67] Update sundials-addon-example submodule --- external/sundials-addon-example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/sundials-addon-example b/external/sundials-addon-example index 16f35555c3..682c80f501 160000 --- a/external/sundials-addon-example +++ b/external/sundials-addon-example @@ -1 +1 @@ -Subproject commit 16f35555c3cae9d40a00aa65648e2242c58f1d31 +Subproject commit 682c80f501c6dda9435a976e53165dec506a726f From 870e85c0484fbaa26396fd479e8621d91733912c Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Tue, 11 Feb 2025 14:45:47 -0800 Subject: [PATCH 66/67] update output files --- .../ark_conserved_exp_entropy_ark_1_0.out | 55 +++++++++++--- .../ark_conserved_exp_entropy_erk_1.out | 50 ++++++++++--- .../ark_dissipated_exp_entropy_1_0.out | 71 +++++++++++++++++-- 3 files changed, 152 insertions(+), 24 deletions(-) diff --git a/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out b/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out index 17ece79919..73cc914f01 100644 --- a/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out +++ b/examples/arkode/C_serial/ark_conserved_exp_entropy_ark_1_0.out @@ -8,17 +8,54 @@ Conserved Exponential Entropy problem: step t u v e delta e ------------------------------------------------------------------------------- 0 0.000000e+00 1.000000e+00 5.000000e-01 4.367003e+00 0.000000e+00 - 40 1.524191e+00 -4.684189e+00 1.471959e+00 4.367003e+00 3.552714e-15 + 40 2.300786e-02 9.608709e-01 5.613463e-01 4.367003e+00 3.286260e-14 + 80 4.607034e-02 9.192154e-01 6.204048e-01 4.367003e+00 6.306067e-14 + 120 6.913268e-02 8.750811e-01 6.769838e-01 4.367003e+00 8.526513e-14 + 160 9.219489e-02 8.284371e-01 7.310525e-01 4.367003e+00 9.503509e-14 + 200 1.152570e-01 7.792646e-01 7.825922e-01 4.367003e+00 1.207923e-13 + 240 1.383189e-01 7.275578e-01 8.315970e-01 4.367003e+00 1.456613e-13 + 280 1.613807e-01 6.733235e-01 8.780737e-01 4.367003e+00 1.065814e-13 + 320 1.844424e-01 6.165813e-01 9.220419e-01 4.367003e+00 9.059420e-14 + 360 2.075039e-01 5.573630e-01 9.635334e-01 4.367003e+00 6.306067e-14 + 400 2.305653e-01 4.957121e-01 1.002592e+00 4.367003e+00 3.375078e-14 + 440 2.536266e-01 4.316830e-01 1.039271e+00 4.367003e+00 1.332268e-14 + 480 2.766877e-01 3.653397e-01 1.073636e+00 4.367003e+00 -3.552714e-15 + 520 2.997487e-01 2.967551e-01 1.105759e+00 4.367003e+00 -1.953993e-14 + 560 3.228096e-01 2.260094e-01 1.135720e+00 4.367003e+00 -4.796163e-14 + 600 3.447246e-01 1.568546e-01 1.162268e+00 4.367003e+00 -7.727152e-14 + 640 3.630597e-01 9.761324e-02 1.183096e+00 4.367003e+00 -1.012523e-13 + 680 3.773053e-01 5.074736e-02 1.198441e+00 4.367003e+00 -1.278977e-13 + 720 3.870668e-01 1.822370e-02 1.208546e+00 4.367003e+00 -1.625367e-13 + 760 3.920150e-01 1.612572e-03 1.213544e+00 4.367003e+00 -1.652012e-13 + 800 3.934673e-01 -3.278671e-03 1.214995e+00 4.367003e+00 -1.652012e-13 + 840 3.971499e-01 -1.571268e-02 1.218643e+00 4.367003e+00 -1.758593e-13 + 880 4.040063e-01 -3.898298e-02 1.225314e+00 4.367003e+00 -1.634248e-13 + 920 4.136505e-01 -7.197473e-02 1.234439e+00 4.367003e+00 -1.492140e-13 + 960 4.261419e-01 -1.151476e-01 1.245816e+00 4.367003e+00 -1.465494e-13 + 1000 4.433106e-01 -1.752718e-01 1.260667e+00 4.367003e+00 -1.518785e-13 + 1040 4.626597e-01 -2.440758e-01 1.276361e+00 4.367003e+00 -1.385558e-13 + 1080 4.876582e-01 -3.345166e-01 1.295089e+00 4.367003e+00 -1.625367e-13 + 1120 5.158012e-01 -4.382825e-01 1.314223e+00 4.367003e+00 -1.909584e-13 + 1160 5.510960e-01 -5.710870e-01 1.335551e+00 4.367003e+00 -2.167155e-13 + 1200 5.897649e-01 -7.196500e-01 1.355856e+00 4.367003e+00 -2.344791e-13 + 1240 6.397047e-01 -9.156469e-01 1.377946e+00 4.367003e+00 -2.389200e-13 + 1280 6.944125e-01 -1.134886e+00 1.397616e+00 4.367003e+00 -2.389200e-13 + 1320 7.650537e-01 -1.423644e+00 1.417349e+00 4.367003e+00 -2.371436e-13 + 1360 8.498142e-01 -1.776585e+00 1.434558e+00 4.367003e+00 -2.327027e-13 + 1400 9.532143e-01 -2.213954e+00 1.448737e+00 4.367003e+00 -2.327027e-13 + 1440 1.097006e+00 -2.830156e+00 1.460474e+00 4.367003e+00 -2.264855e-13 + 1480 1.321184e+00 -3.800671e+00 1.468945e+00 4.367003e+00 -2.300382e-13 + 1520 1.756585e+00 -5.697706e+00 1.473309e+00 4.367003e+00 -2.318146e-13 ------------------------------------------------------------------------------- Final Solver Statistics: - Internal solver steps = 49 (attempted = 51) - Total number of error test failures = 2 - Total RHS evals: Fe = 255, Fi = 0 - Total Relaxation Fn evals = 183 - Total Relaxation Jac evals = 336 - Total Relaxation fails = 0 - Total Relaxation bound fails = 0 + Internal solver steps = 1549 (attempted = 1556) + Total number of error test failures = 1 + Total RHS evals: Fe = 4663, Fi = 0 + Total Relaxation Fn evals = 3627 + Total Relaxation Jac evals = 5183 + Total Relaxation fails = 6 + Total Relaxation bound fails = 6 Total Relaxation NLS fails = 0 - Total Relaxation NLS iters = 81 + Total Relaxation NLS iters = 515 diff --git a/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out b/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out index d62c1791c6..69294ae521 100644 --- a/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out +++ b/examples/arkode/C_serial/ark_conserved_exp_entropy_erk_1.out @@ -8,17 +8,49 @@ Conserved Exponential Entropy problem: step t u v e delta e ------------------------------------------------------------------------------- 0 0.000000e+00 1.000000e+00 5.000000e-01 4.367003e+00 0.000000e+00 - 40 1.735025e+00 -5.603629e+00 1.473233e+00 4.367003e+00 5.329071e-15 + 40 2.623783e-02 9.551847e-01 5.697655e-01 4.367003e+00 1.509903e-14 + 80 5.432883e-02 9.036980e-01 6.409522e-01 4.367003e+00 4.263256e-14 + 120 8.241960e-02 8.485159e-01 7.084426e-01 4.367003e+00 7.105427e-14 + 160 1.105101e-01 7.895928e-01 7.721911e-01 4.367003e+00 1.083578e-13 + 200 1.386004e-01 7.269110e-01 8.321795e-01 4.367003e+00 7.815970e-14 + 240 1.666904e-01 6.604804e-01 8.884183e-01 4.367003e+00 5.506706e-14 + 280 1.947802e-01 5.903392e-01 9.409453e-01 4.367003e+00 2.753353e-14 + 320 2.228698e-01 5.165522e-01 9.898255e-01 4.367003e+00 1.776357e-15 + 360 2.509591e-01 4.392088e-01 1.035148e+00 4.367003e+00 -2.753353e-14 + 400 2.790482e-01 3.584213e-01 1.077026e+00 4.367003e+00 -5.329071e-14 + 440 3.071370e-01 2.743207e-01 1.115589e+00 4.367003e+00 -7.993606e-14 + 480 3.343857e-01 1.897085e-01 1.149972e+00 4.367003e+00 -8.348877e-14 + 520 3.573743e-01 1.161146e-01 1.176770e+00 4.367003e+00 -9.059420e-14 + 560 3.750961e-01 5.806207e-02 1.196109e+00 4.367003e+00 -9.769963e-14 + 600 3.869142e-01 1.873470e-02 1.208391e+00 4.367003e+00 -1.216804e-13 + 640 3.922925e-01 6.784070e-04 1.213821e+00 4.367003e+00 -1.323386e-13 + 680 3.941927e-01 -5.724469e-03 1.215717e+00 4.367003e+00 -1.332268e-13 + 720 3.994765e-01 -2.359182e-02 1.220924e+00 4.367003e+00 -1.465494e-13 + 760 4.083075e-01 -5.365991e-02 1.229421e+00 4.367003e+00 -1.314504e-13 + 800 4.210574e-01 -9.751546e-02 1.241244e+00 4.367003e+00 -1.385558e-13 + 840 4.375432e-01 -1.549756e-01 1.255778e+00 4.367003e+00 -1.509903e-13 + 880 4.583140e-01 -2.285295e-01 1.272930e+00 4.367003e+00 -1.687539e-13 + 920 4.841718e-01 -3.218028e-01 1.292577e+00 4.367003e+00 -1.909584e-13 + 960 5.153953e-01 -4.367719e-01 1.313961e+00 4.367003e+00 -2.211564e-13 + 1000 5.527869e-01 -5.775194e-01 1.336504e+00 4.367003e+00 -2.495781e-13 + 1040 5.975902e-01 -7.500701e-01 1.359609e+00 4.367003e+00 -2.637890e-13 + 1080 6.514586e-01 -9.623804e-01 1.382542e+00 4.367003e+00 -2.637890e-13 + 1120 7.162905e-01 -1.223698e+00 1.404346e+00 4.367003e+00 -2.611245e-13 + 1160 7.973926e-01 -1.557578e+00 1.424639e+00 4.367003e+00 -2.646772e-13 + 1200 9.011623e-01 -1.993009e+00 1.442372e+00 4.367003e+00 -2.593481e-13 + 1240 1.039713e+00 -2.583791e+00 1.456640e+00 4.367003e+00 -2.540190e-13 + 1280 1.246068e+00 -3.474626e+00 1.466959e+00 4.367003e+00 -2.486900e-13 + 1320 1.677062e+00 -5.350750e+00 1.472990e+00 4.367003e+00 -2.433609e-13 ------------------------------------------------------------------------------- Final Solver Statistics: - Internal solver steps = 47 (attempted = 51) - Total number of error test failures = 3 - Total RHS evals = 253 - Total Relaxation Fn evals = 187 - Total Relaxation Jac evals = 340 - Total Relaxation fails = 1 - Total Relaxation bound fails = 1 + Internal solver steps = 1347 (attempted = 1378) + Total number of error test failures = 28 + Total RHS evals = 4105 + Total Relaxation Fn evals = 3349 + Total Relaxation Jac evals = 4727 + Total Relaxation fails = 3 + Total Relaxation bound fails = 3 Total Relaxation NLS fails = 0 - Total Relaxation NLS iters = 85 + Total Relaxation NLS iters = 593 diff --git a/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out b/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out index 8155c8a983..498ad75dbd 100644 --- a/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out +++ b/examples/arkode/C_serial/ark_dissipated_exp_entropy_1_0.out @@ -8,16 +8,75 @@ Dissipated Exponential Entropy problem: step t u e u_err delta e ------------------------------------------------------------------------------- 0 0.000000e+00 5.000000e-01 1.648721e+00 0.000000e+00 0.000000e+00 + 40 2.644475e-02 4.573237e-01 1.579840e+00 3.170741e-12 -6.888106e-02 + 80 5.332507e-02 4.157341e-01 1.515483e+00 5.587142e-12 -1.332385e-01 + 120 8.057524e-02 3.752668e-01 1.455380e+00 7.649548e-12 -1.933415e-01 + 160 1.081903e-01 3.358631e-01 1.399147e+00 9.408474e-12 -2.495739e-01 + 200 1.361655e-01 2.974682e-01 1.346446e+00 1.090605e-11 -3.022757e-01 + 240 1.644963e-01 2.600320e-01 1.296972e+00 1.218065e-11 -3.517497e-01 + 280 1.931782e-01 2.235076e-01 1.250455e+00 1.326114e-11 -3.982662e-01 + 320 2.222070e-01 1.878517e-01 1.206655e+00 1.417574e-11 -4.420668e-01 + 360 2.510287e-01 1.536648e-01 1.166100e+00 1.486891e-11 -4.826213e-01 + 400 2.779129e-01 1.227965e-01 1.130654e+00 1.519768e-11 -5.180669e-01 + 440 3.025080e-01 9.536760e-02 1.100063e+00 1.527549e-11 -5.486581e-01 + 480 3.245767e-01 7.138072e-02 1.073990e+00 1.520092e-11 -5.747312e-01 + 520 3.439008e-01 5.083923e-02 1.052154e+00 1.504699e-11 -5.965675e-01 + 560 3.602849e-01 3.374751e-02 1.034323e+00 1.486707e-11 -6.143978e-01 + 600 3.735584e-01 2.011180e-02 1.020315e+00 1.469598e-11 -6.284059e-01 + 640 3.835768e-01 9.941777e-03 1.009991e+00 1.455675e-11 -6.387299e-01 + 680 3.902192e-01 3.255480e-03 1.003261e+00 1.446190e-11 -6.454605e-01 + 720 3.933657e-01 1.036450e-04 1.000104e+00 1.440013e-11 -6.486176e-01 + 760 3.948915e-01 -1.421187e-03 9.985798e-01 1.434064e-11 -6.501414e-01 + 800 3.983165e-01 -4.835422e-03 9.951762e-01 1.429075e-11 -6.535450e-01 + 840 4.037099e-01 -1.018853e-02 9.898632e-01 1.419079e-11 -6.588581e-01 + 880 4.114452e-01 -1.781620e-02 9.823416e-01 1.404575e-11 -6.663797e-01 + 920 4.212720e-01 -2.742315e-02 9.729495e-01 1.388062e-11 -6.757718e-01 + 960 4.326153e-01 -3.839914e-02 9.623288e-01 1.370437e-11 -6.863925e-01 + 1000 4.474286e-01 -5.255379e-02 9.488033e-01 1.352828e-11 -6.999180e-01 + 1040 4.635837e-01 -6.776551e-02 9.344796e-01 1.333463e-11 -7.142417e-01 + 1080 4.817034e-01 -8.455626e-02 9.189200e-01 1.315999e-11 -7.298013e-01 + 1120 5.047848e-01 -1.055444e-01 8.998345e-01 1.305354e-11 -7.488867e-01 + 1160 5.280270e-01 -1.262428e-01 8.814008e-01 1.294440e-11 -7.673205e-01 + 1200 5.529295e-01 -1.479545e-01 8.624703e-01 1.288278e-11 -7.862509e-01 + 1240 5.862249e-01 -1.762663e-01 8.383947e-01 1.307313e-11 -8.103265e-01 + 1280 6.198330e-01 -2.040534e-01 8.154188e-01 1.322489e-11 -8.333024e-01 + 1320 6.537507e-01 -2.313350e-01 7.934736e-01 1.334474e-11 -8.552477e-01 + 1360 6.933373e-01 -2.622627e-01 7.693089e-01 1.386713e-11 -8.794124e-01 + 1400 7.421596e-01 -2.991340e-01 7.414601e-01 1.494133e-11 -9.072612e-01 + 1440 7.915780e-01 -3.351203e-01 7.152520e-01 1.584449e-11 -9.334693e-01 + 1480 8.415853e-01 -3.702633e-01 6.905525e-01 1.659978e-11 -9.581688e-01 + 1520 8.943706e-01 -4.060657e-01 6.662664e-01 1.757255e-11 -9.824549e-01 + 1560 9.666353e-01 -4.530901e-01 6.356608e-01 2.091533e-11 -1.013060e+00 + 1600 1.040023e+00 -4.986845e-01 6.073291e-01 2.365386e-11 -1.041392e+00 + 1640 1.114517e+00 -5.429333e-01 5.810414e-01 2.588785e-11 -1.067680e+00 + 1680 1.190101e+00 -5.859138e-01 5.565970e-01 2.770006e-11 -1.092124e+00 + 1720 1.283527e+00 -6.366071e-01 5.290845e-01 3.283496e-11 -1.119637e+00 + 1760 1.393632e+00 -6.932287e-01 4.999592e-01 3.971268e-11 -1.148762e+00 + 1800 1.505795e+00 -7.477896e-01 4.734118e-01 4.509870e-11 -1.175309e+00 + 1840 1.619978e+00 -8.004347e-01 4.491337e-01 4.928813e-11 -1.199588e+00 + 1880 1.736145e+00 -8.512939e-01 4.268623e-01 5.251266e-11 -1.221859e+00 + 1920 1.896082e+00 -9.173353e-01 3.995824e-01 6.609691e-11 -1.249139e+00 + 1960 2.066727e+00 -9.832979e-01 3.740754e-01 7.780276e-11 -1.274646e+00 + 2000 2.241080e+00 -1.046480e+00 3.511716e-01 8.646084e-11 -1.297550e+00 + 2040 2.419063e+00 -1.107107e+00 3.305136e-01 9.276802e-11 -1.318208e+00 + 2080 2.617922e+00 -1.170763e+00 3.101301e-01 1.031335e-10 -1.338591e+00 + 2120 2.880133e+00 -1.248945e+00 2.868071e-01 1.266278e-10 -1.361914e+00 + 2160 3.149082e+00 -1.323252e+00 2.662681e-01 1.431046e-10 -1.382453e+00 + 2200 3.424604e+00 -1.394048e+00 2.480691e-01 1.544063e-10 -1.400652e+00 + 2240 3.706545e+00 -1.461651e+00 2.318531e-01 1.618701e-10 -1.416868e+00 + 2280 4.082227e+00 -1.545168e+00 2.132761e-01 1.936096e-10 -1.435445e+00 + 2320 4.501459e+00 -1.630806e+00 1.957717e-01 2.225524e-10 -1.452950e+00 + 2360 4.932476e+00 -1.711815e+00 1.805378e-01 2.412093e-10 -1.468183e+00 ------------------------------------------------------------------------------- Final Solver Statistics: - Internal solver steps = 39 (attempted = 41) - Total number of error test failures = 2 - Total RHS evals: Fe = 205, Fi = 0 - Total Relaxation Fn evals = 153 - Total Relaxation Jac evals = 276 + Internal solver steps = 2367 (attempted = 2368) + Total number of error test failures = 1 + Total RHS evals: Fe = 7105, Fi = 0 + Total Relaxation Fn evals = 6847 + Total Relaxation Jac evals = 9215 Total Relaxation fails = 0 Total Relaxation bound fails = 0 Total Relaxation NLS fails = 0 - Total Relaxation NLS iters = 71 + Total Relaxation NLS iters = 2111 From 1c7c18b34c385e34b351daca2956e00e836dd507 Mon Sep 17 00:00:00 2001 From: "David J. Gardner" Date: Tue, 11 Feb 2025 18:30:28 -0800 Subject: [PATCH 67/67] update answer submodule --- test/answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/answers b/test/answers index bf81de4dd4..4a5ce66286 160000 --- a/test/answers +++ b/test/answers @@ -1 +1 @@ -Subproject commit bf81de4dd4208ac89c70ae5f08bc18371effc7c0 +Subproject commit 4a5ce662864db597e23fe4a9909196f95f3c3b40